/**
* Theme Name: Six2Eight FSE
* Description: Six2Eight FSE Theme
* Author: Six2Eight
* Author URI: https://six2eight.com
* Version: 1.0.0
* Text Domain: six2eight-fse
* Domain Path: /languages
*/

.custom-footer-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.custom-footer-popup[hidden] {
	display: none;
}
.popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 24, 30, 0.85);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.popup-box {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: calc(95vh - 40px);
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
}
/* Close icon */
.popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e5e7eb;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}
/* Header */
.popup-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	border-bottom: 1px solid #eef1f4;
	justify-content: center;
	flex-shrink: 0;
}
.popup-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.popup-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #0f172a;
}
/* Body */
.popup-body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
}

/* Custom scrollbar styling (optional) */
.popup-body::-webkit-scrollbar {
	width: 8px;
}
.popup-body::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}
.popup-body::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}
.popup-body::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* ==============================
   Gravity Forms – Base UI
============================== */

body .gform_wrapper {
	font-family: inherit;
  }
  
  /* Labels */
  body .gform_wrapper label.gfield_label {
	font-size: 14px;
	font-weight: 600;
	color: #1f2a44;
	margin-bottom: 6px;
  }
  
  /* Inputs */
  body .gform_wrapper input[type="text"],
  body .gform_wrapper input[type="email"],
  body .gform_wrapper input[type="tel"],
  body .gform_wrapper input[type="url"],
  body .gform_wrapper input[type="number"],
  body .gform_wrapper textarea,
  body .gform_wrapper select {
	background: #ffffff;
	border: 1px solid #e3e8f0;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 15px;
	color: #1f2a44;
	box-shadow: none;
  }
  
  /* Placeholder */
  body .gform_wrapper input::placeholder,
  body .gform_wrapper textarea::placeholder {
	color: rgba(75, 77, 83, 0.6) !important;
  }
  
  /* Focus state */
  body .gform_wrapper input:focus,
  body .gform_wrapper textarea:focus,
  body .gform_wrapper select:focus {
	border-color: #244a8f;
	outline: none;
  }
  
  /* Textarea */
  body .gform_wrapper textarea {
	min-height: 130px;
	resize: vertical;
  }
  
  /* Checkbox & radio labels */
  body .gform_wrapper .gfield_checkbox label,
  body .gform_wrapper .gfield_radio label {
	font-size: 14px;
	color: #2a3b5f;
  }
  
  /* Field spacing */
  body .gform_wrapper .gfield {
	margin-bottom: 0px;
  }
  
  /* Footer */
  body .gform_wrapper .gform_footer {
	margin-top: 24px;
  }
  
  /* Submit button */
  body .gform_wrapper .gform_footer input[type="submit"],
  body .gform_wrapper .gform_footer button {
	background: #244a8f;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
  }
  
  /* Hover */
  body .gform_wrapper .gform_footer input[type="submit"]:hover,
  body .gform_wrapper .gform_footer button:hover {
	background: #1d3f78;
  }
  
  /* Validation messages (subtle) */
  body .gform_wrapper .validation_message {
	font-size: 13px;
	color: #e5533d;
  }
  


/* ==============================
   Gravity Form ID 3 – contact us
============================== */

body .gform_wrapper#gform_wrapper_3 {
	font-family: inherit !important;
  }
  
  /* Labels */
  body .gform_wrapper#gform_wrapper_3 label.gfield_label, body .gform_wrapper#gform_wrapper_3 .gform-field-label--type-sub {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #132C5A !important;
	margin-bottom: 6px !important;
  }
  
  /* Required text */
  body .gform_wrapper#gform_wrapper_3 .gfield_required {
	color: #132C5A !important;
	font-weight: 500 !important;
	display: none !important;
  }
  
  /* Inputs & textarea */
  body .gform_wrapper#gform_wrapper_3 input[type="text"],
  body .gform_wrapper#gform_wrapper_3 input[type="email"],
  body .gform_wrapper#gform_wrapper_3 input[type="tel"],
  body .gform_wrapper#gform_wrapper_3 textarea {
	background: #ffffff !important;
	border: 1px solid #E3E4E8 !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	font-size: 15px !important;
	color: #132C5A !important;
	box-shadow: none !important;
  }
  
  /* Placeholder */
  body .gform_wrapper#gform_wrapper_3 input::placeholder,
  body .gform_wrapper#gform_wrapper_3 textarea::placeholder {
		color: rgba(75, 77, 83, 0.6) !important;
  }
  
  /* Focus */
  body .gform_wrapper#gform_wrapper_3 input:focus,
  body .gform_wrapper#gform_wrapper_3 textarea:focus {
	border-color: #244a8f !important;
	outline: none !important;
  }
  
  /* First + Last name layout */
  body .gform_wrapper#gform_wrapper_3 .gfield--width-half {
	padding-right: 12px !important;
  }
  
  body .gform_wrapper#gform_wrapper_3 .gfield--width-half + .gfield--width-half {
	padding-left: 12px !important;
  }
  
  /* Phone field */
  body .gform_wrapper#gform_wrapper_3 .ginput_container_phone input {
	padding-left: 48px !important;
  }
  
  /* Message box */
  body .gform_wrapper#gform_wrapper_3 textarea {
	min-height: 140px !important;
	resize: vertical !important;
  }
  
  /* Checkbox */
  body .gform_wrapper#gform_wrapper_3 .gfield_checkbox label {
	font-size: 14px !important;
	color: #4a5568 !important;
  }
  
  body .gform_wrapper#gform_wrapper_3 input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
  }
  
  /* Privacy policy link */
  body .gform_wrapper#gform_wrapper_3 .gfield_checkbox a {
	color: #244a8f !important;
	text-decoration: underline !important;
  }
  
  /* Submit area */
  body .gform_wrapper#gform_wrapper_3 .gform_footer {
	margin-top: 0px !important;
  }
  
  /* Submit button */
  body .gform_wrapper#gform_wrapper_3 .gform_footer input[type="submit"] {
	width: 100% !important;
	background: #244a8f !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 18px 20px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
  }
  
  /* Submit hover */
  body .gform_wrapper#gform_wrapper_3 .gform_footer input[type="submit"]:hover {
	background: #1d3f78 !important;
  }
  
  /* Field spacing */
  body .gform_wrapper#gform_wrapper_3 .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 20px !important;
  }

  /* Submit button base */
body .gform_wrapper#gform_wrapper_3 .gform_footer input[type="submit"] {
	position: relative !important;
	padding-right: 60px !important; /* space for arrow */
  }
  
  /* SVG arrow */
  body .gform_wrapper#gform_wrapper_3 .gform_footer input[type="submit"]::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M13.0267 16L11.6187 14.5858L15.1882 11.0006L2 11.0006L2 9.00065L15.1886 9.00059L11.6186 5.41422L13.0266 4L19 10.0003L13.0267 16Z' fill='white'/%3E%3C/svg%3E");
	transition: transform 0.25s ease;
  }
  
  /* Hover animation */
  body .gform_wrapper#gform_wrapper_3 .gform_footer input[type="submit"]:hover::after {
	transform: translate(6px, -50%);
  }
  
  
  /* ==============================
   Gravity Form ID 2 – Booking UI
============================== */

body .gform_wrapper#gform_wrapper_2 {
	font-family: inherit !important;
}

/* ---------- Headings ---------- */
body .gform_wrapper#gform_wrapper_2 .gform_title,
body .gform_wrapper#gform_wrapper_2 h3 {
	font-size: 18px !important;
	font-weight: 500 !important;
	color: #0f1f3d !important;
	margin-bottom: 16px !important;
}

/* ---------- Labels ---------- */
body .gform_wrapper#gform_wrapper_2 label.gfield_label, 
body .gform_wrapper#gform_wrapper_2 label.gform-field-label--type-sub {
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	color: #132C5A !important;
	margin-bottom: 6px !important;
	font-family: 'Outfit', sans-serif !important;
}

/* Required text */
body .gform_wrapper#gform_wrapper_2 .gfield_required {
	color: #132C5A !important;
	font-weight: 500 !important;
	display: none !important;
}

/* ---------- Inputs & textarea ---------- */
body .gform_wrapper#gform_wrapper_2 input[type="text"],
body .gform_wrapper#gform_wrapper_2 input[type="email"],
body .gform_wrapper#gform_wrapper_2 input[type="tel"],
body .gform_wrapper#gform_wrapper_2 input[type="url"],
body .gform_wrapper#gform_wrapper_2 textarea {
	background: #ffffff !important;
	border: 1px solid #E3E4E8 !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	font-family: 'Outfit', sans-serif !important;
	color: #132C5A !important;
	box-shadow: none !important;
}

/* Phone field */
body .gform_wrapper#gform_wrapper_2 .ginput_container_phone input {
	padding-left: 48px !important;
}

/* Placeholder */
body .gform_wrapper#gform_wrapper_2 input::placeholder,
body .gform_wrapper#gform_wrapper_2 textarea::placeholder {
	color: rgba(75, 77, 83, 0.6) !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	font-family: 'Outfit', sans-serif !important;
	opacity: 0.6 !important;
}

/* Focus */
body .gform_wrapper#gform_wrapper_2 input:focus,
body .gform_wrapper#gform_wrapper_2 textarea:focus {
	border-color: #244a8f !important;
	outline: none !important;
}

/* ---------- Two column layout ---------- */
body .gform_wrapper#gform_wrapper_2 .gfield--width-half {
	padding-right: 12px !important;
}

body .gform_wrapper#gform_wrapper_2 .gfield--width-half + .gfield--width-half {
	padding-left: 12px !important;
}

/* ---------- Message box ---------- */
body .gform_wrapper#gform_wrapper_2 textarea {
	min-height: 140px !important;
	resize: vertical !important;
}

/* ---------- Checkbox (services + policy) ---------- */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox label {
	font-size: 14px !important;
	color: #132C5A !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px;
}

body .gform_wrapper#gform_wrapper_2 input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
}

/* Privacy policy link */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox a {
	color: #244a8f !important;
	text-decoration: underline !important;
}

/* ---------- Buttons wrapper ---------- */
body .gform_wrapper#gform_wrapper_2 .gform_footer {
	display: flex !important;
	gap: 12px;
	margin-top: 24px !important;
}

/* Previous button */
body .gform_wrapper#gform_wrapper_2 .gform_previous_button {
	flex: 1;
	background: #ffffff !important;
	border: 1px solid #cfd8ea !important;
	color: #132C5A !important;
	border-radius: 10px !important;
	padding: 18px 20px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	font-family: 'Outfit', sans-serif !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
}

/* Submit / Next button */
body .gform_wrapper#gform_wrapper_2 input[type="submit"],
body .gform_wrapper#gform_wrapper_2 .gform_next_button {
	flex: 1;
	background: #244a8f !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 18px 20px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	font-family: 'Outfit', sans-serif !important;
	line-height: 1.5 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
}

/* Single button takes full width */
body .gform_wrapper#gform_wrapper_2 .gform_footer input[type="submit"]:only-child,
body .gform_wrapper#gform_wrapper_2 .gform_footer .gform_next_button:only-child {
	width: 100% !important;
}

/* Hover */
body .gform_wrapper#gform_wrapper_2 input[type="submit"]:hover,
body .gform_wrapper#gform_wrapper_2 .gform_next_button:hover {
	background: #1d3f78 !important;
}

/* ---------- Field spacing ---------- */
body .gform_wrapper#gform_wrapper_2 .gfield {
/* 	margin-bottom: 20px !important; */
}

body .gform_wrapper#gform_wrapper_2 .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 20px !important;
}

body .gform_wrapper#gform_wrapper_2 #gform_fields_2 {
	border: 1px solid #E3E4E8;
	padding: 20px;
	border-radius: 12px;
}

/* ==============================
   GF Form 2 – Rounded Service Checkboxes
============================== */

body .gform_wrapper#gform_wrapper_2 .gfield_checkbox {
	display: flex !important;
	flex-direction: column;
	gap: 14px;
}

/* Hide default checkbox */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox input[type="checkbox"] {
	display: none !important;
}

/* Checkbox label as rounded card */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox label {
	display: flex !important;
	align-items: center;
	gap: 14px;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #5b6475 !important;
	cursor: pointer !important;
	transition: all 0.25s ease;
}

/* Custom circle */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox label::before {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #d5dbea;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

/* Checked state */
body .gform_wrapper#gform_wrapper_2 
.gfield_checkbox input[type="checkbox"]:checked + label {
	border-color: #1e3a6d !important;
	color: #1e3a6d !important;
	font-weight: 500 !important;
}

/* Checked circle */
body .gform_wrapper#gform_wrapper_2 
.gfield_checkbox input[type="checkbox"]:checked + label::before {
	background: #1e3a6d;
	border-color: #1e3a6d;
	content: "✓";
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
}

/* Hover */
body .gform_wrapper#gform_wrapper_2 .gfield_checkbox label:hover {
	border-color: #1e3a6d !important;
}

 
  
	/* ==============================
   GF Form 1 – Newsletter (Fixed)
============================== */

div#gform_fields_1 {
    width: 520px !important;
}


body .gform_wrapper#gform_wrapper_1 {
	width: 100% !important;
  }
  
  /* Make form inline */
  body .gform_wrapper#gform_wrapper_1 form {
	display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
	gap: 16px !important;
  }

  body .gform_wrapper#gform_wrapper_1 .gform_body {
	background: rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px !important;
	padding: 0px !important;
  } 
  
  /* Hide labels */
  body .gform_wrapper#gform_wrapper_1 label.gfield_label {
	display: none !important;
  }
  
  /* Field wrapper */
  body .gform_wrapper#gform_wrapper_1 .gfield {
	margin: 0 !important;
	flex: 1;
  }
  
  /* Email input */
  body .gform_wrapper#gform_wrapper_1 input[type="email"] {
	height: 64px !important;
	width: 100% !important;
	background: transparent !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 0 0 0 16px  !important;
	font-size: 18px !important;
	color: #ffffff !important;
	box-sizing: border-box !important;
  }
  
  /* Placeholder */
  body .gform_wrapper#gform_wrapper_1 input::placeholder {
		color: rgba(75, 77, 83, 0.9) !important;
  }
  
  /* Focus */
  body .gform_wrapper#gform_wrapper_1 input:focus {
	outline: none !important;
	background: transparent !important;
  }
  
  /* Footer wrapper */
  body .gform_wrapper#gform_wrapper_1 .gform_footer {
	margin: 0 !important;
  }

  body .gform_wrapper#gform_wrapper_1 .gfield--type-submit {
	justify-content: end !important;
  }
  
  /* Submit button */
  body .gform_wrapper#gform_wrapper_1 input[type="submit"] {
	height: 64px !important;
	background: #ffffff !important;
	color: #0f1f3d !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 0 36px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 4px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	white-space: nowrap;
  }
  
  /* Hover */
  body .gform_wrapper#gform_wrapper_1 input[type="submit"]:hover {
	opacity: 0.92;
  }
  
  /* Remove validation spacing */
  body .gform_wrapper#gform_wrapper_1 .validation_message,
  body .gform_wrapper#gform_wrapper_1 .gfield_error {
	display: none !important;
  }
  
  .ecom-author-name .wp-block-post-author-name__link {
    text-decoration: none;
}
.ecom-triage-tags a {
    border: 1px solid #E3E4E8;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #245AC7;
}

@media (max-width: 767px) {
	
	body #gform_wrapper_1.gform_wrapper.gravity-theme .gform_fields .gform_fields {
    display: flex !important;
    grid-template-columns: unset !important;
    grid-row-gap: unset !important;
    grid-column-gap: unset !important;
}

    

    /* Force each field to behave as flex item */
    body .gform_wrapper#gform_wrapper_1 .gfield {
        width: auto !important;
        min-width: 0 !important;
        flex: 1 1 0 !important;
        margin: 0 !important;
    }

    /* Button should not stretch too wide */
    body .gform_wrapper#gform_wrapper_1 .gfield--type-submit {
        flex: 0 0 auto !important;
    }

    /* Ensure parent containers stretch */
    body .gform_wrapper#gform_wrapper_1 form,
    body .gform_wrapper#gform_wrapper_1 .gform_body,
    body .gform_wrapper#gform_wrapper_1 #gform_fields_1 {
        width: 100% !important;
        max-width: 100% !important;
		display: flex;
    }
    div#gform_fields_1 {
        width: 100% !important;
    }

    /* Stack spacing correction */
    body .gform_wrapper#gform_wrapper_1 form {
        gap: 12px !important;
        padding: 12px !important;
    }

    /* Body container sizing */
    body .gform_wrapper#gform_wrapper_1 .gform_body {
        width: 100% !important;
        padding: 8px !important;
        border-radius: 16px !important;
    }

    /* Input height + text size */
    body .gform_wrapper#gform_wrapper_1 input[type="email"] {
        height: 52px !important;
        font-size: 16px !important;
        padding-left: 14px !important;
    }

    /* Button sizing */
    body .gform_wrapper#gform_wrapper_1 input[type="submit"] {
        height: 52px !important;
        font-size: 16px !important;
        padding: 0 24px !important;
        letter-spacing: 1px !important;
    }

    /* Prevent overflow clipping */
    body .gform_wrapper#gform_wrapper_1 {
        overflow: hidden !important;
    }
}


/* Muhib bhai css */


.ecom-triage-partner-body {
    padding: 0;
}

.ecom-author-name .wp-block-post-author-name__link {
    text-decoration: none;
}

.ecom-triage-tags a {
    border: 1px solid #E3E4E8;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #245AC7;
}

.ecom-triage-date {
	position: relative;
padding-left: 14px;
}

.ecom-triage-date::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-image: url("http://localhost:10053/wp-content/uploads/2025/12/ellipse.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.ecom-triage-tags {}

.ecom-triage-latest-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ecom-triage-latest-posts .wp-block-latest-posts__featured-image img {
    height: 180px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.ecom-triage-latest-posts li {
    border: 1px solid #E3E4E8;
    padding: 12px;
    border-radius: 16px;
}

.ecom-triage-latest-posts li a {
    color: #132C5A;
    font-family: 'Outfit';
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-decoration: none;
}

.ecom-triage-latest-posts li time {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #4B4D53;
    font-family: 'Outfit';
}

.ecom-triage-prev a, .ecom-triage-next a {
    color: #132C5A;
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.ecom-triage-about-head{
    margin-bottom: 20px;
}


.ecom-triage-blue-bullet {
	position: relative;
    padding-left: 14px;
    margin-bottom: 12px;
}

.ecom-triage-blue-bullet::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-image: url("http://localhost:10053/wp-content/uploads/2026/01/ellipse-blue.png");
	background-size: contain;
	background-repeat: no-repeat;
}



.ecom-triage-blue-bullet-center {
    display:flex;
    align-items: center;
    gap: 15px;            /* space between bullet and text */
    justify-content: center;
}

.ecom-triage-blue-bullet-center::before {
    content: "";
    width: 6px;
    height: 6px;
    background-image: url("http://localhost:10053/wp-content/uploads/2026/01/ellipse-blue.png");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.ecom-triage-paragraph {
    margin-bottom: 34px;
    font-size: 20px;
}

.ecom-triage-meta-row-gap{
    gap: 16px;
}

.wp-block-post-featured-image :where(img) {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.wp-block-post-content img {
    max-width: 100%;
    height: auto;
}

/* Content Style */
.ecom-triage-content h1,
.ecom-triage-content h2,
.ecom-triage-content h3,
.ecom-triage-content h4,
.ecom-triage-content h5,
.ecom-triage-content h6 {
	color:  #000;

	/* Heading 5/Medium */
	font-family: "Lexend Deca";
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}
.ecom-triage-content h1 {
    font-size: 36px;
}

.ecom-triage-content h2 {
    font-size: 28px;

}

.ecom-triage-content h3 {
    font-size: 20px;

}

.ecom-triage-content h4 {
    font-size: 18px;

}

.ecom-triage-content h5 {
    font-size: 16px;
    color: #1E448D;
}

.ecom-triage-content h6 {
    font-size: 14px;

}

.ecom-triage-content p {
    font-size: 18px;

}

.eb-breadcrumb-wrapper .eb-breadcrumb a{
	color: #1E448D !important;
}

.ecom-triage-content a:where(:not(.wp-element-button)){
	font-weight:400;
}

@media (max-width: 767px) {
    .ecom-triage-partner-body {
        padding: 16px;
    }

    .ecom-triage-about-column {
        display: flex;
        flex-direction: column-reverse;
    }

    .ecom-triage-about-column img {
        width: 200px;
        height: 200px;
    }
    figure.wp-block-image.size-large.ecom-triage-about-column-image {
        display: flex;
        justify-content: center;
    }
    .ecom-triage-about-head {
        margin-bottom: 12px;
        font-size: 28px!important;
        text-align: center;
    }

    .ecom-triage-paragraph {
        margin-bottom: 24px;
        font-size: 16px!important;
        font-weight: 400!important;
    }

    .ecom-triage-partner-content {
        padding: 40px 0px !important;
    }

    .ecom-triage-blue-bullet-center {
        font-size: 14px!important;
        letter-spacing: 0.7px!important;
        margin-bottom: 14px;
    }

    .ecom-triage-testimonial {
        font-size: 16px!important;
        margin-bottom: 24px;
    }

    .ecom-triage-partner-body-spacing {
        padding: 40px 0px!important;
    }

    .ecom-triage-partner-visit-628 {
        font-size: 28px!important;
    }

    .ecom-triage-partner-visit-desc {
        font-size: 14px!important;
        font-weight: 400;
        font-style: normal;
        margin-bottom: 32px;
    }

    /* Single Post */
    .ecom-triage-single-body{
        padding: 16px;
    }

    .ecom-author-name .wp-block-post-author-name__link {
        font-size: 14px;
    }

    .ecom-triage-post-details p, .ecom-triage-post-details time {
        font-size: 12px!important;
    }

    .ecom-triage-date {
        padding-left: 10px!important;
    }

    .ecom-triage-meta-row-gap{
        gap: 8px;
    }

    .ecom-triage-post-meta-row{
        gap: 4px;
    }

    .ecom-triage-tags a {
        font-size: 12px!important;
    }

    .wp-block-tag-cloud a {
        margin-right: 0px!important;
    }

    .ecom-triage-latest-posts {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }


}

.six2eight-btn-primary {
    position: relative;
}

.six2eight-btn-primary:after {
    position: absolute;
    right: 15px;
    content: '';
    left: auto;
    bottom: auto;
    top: 50%;
    height: 20px;
    width: 20px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTMuMDI2NyAxNkwxMS42MTg3IDE0LjU4NThMMTUuMTg4MiAxMS4wMDA2TDIgMTEuMDAwNkwyIDkuMDAwNjVMMTUuMTg4NiA5LjAwMDU5TDExLjYxODYgNS40MTQyMkwxMy4wMjY2IDRMMTkgMTAuMDAwM0wxMy4wMjY3IDE2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

body.wp-singular span.eb-breadcrumb-item.current {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    width: 288px;
}