diff --git a/blocks/header/header.js b/blocks/header/header.js index b33418c..35d6500 100644 --- a/blocks/header/header.js +++ b/blocks/header/header.js @@ -125,94 +125,232 @@ function createSearchResultsBlock(results) { export default async function decorate(block) { console.log(block); // fetch nav content - const navMeta = getMetadata('nav'); - const navPath = navMeta ? new URL(navMeta).pathname : '/nav'; + const navMeta = getMetadata("nav"); + const navPath = navMeta ? new URL(navMeta).pathname : "/nav"; const resp = await fetch(`${navPath}.plain.html`); if (resp.ok) { const html = await resp.text(); // decorate nav DOM - const nav = document.createElement('nav'); - nav.id = 'nav'; + const nav = document.createElement("nav"); + nav.id = "nav"; nav.innerHTML = html; - const classes = ['brand', 'sections', 'tools']; + const classes = ["brand", "sections", "tools"]; classes.forEach((c, i) => { const section = nav.children[i]; if (section) section.classList.add(`nav-${c}`); }); - const navSections = nav.querySelector('.nav-sections'); + const navSections = nav.querySelector(".nav-sections"); if (navSections) { - navSections.querySelectorAll(':scope > ul > li').forEach((navSection) => { - if (navSection.querySelector('ul')) navSection.classList.add('nav-drop'); - navSection.addEventListener('click', () => { + navSections.querySelectorAll(":scope > ul > li").forEach((navSection) => { + if (navSection.querySelector("ul")) + navSection.classList.add("nav-drop"); + navSection.addEventListener("click", () => { if (isDesktop.matches) { - const expanded = navSection.getAttribute('aria-expanded') === 'true'; + const expanded = + navSection.getAttribute("aria-expanded") === "true"; toggleAllNavSections(navSections); - navSection.setAttribute('aria-expanded', expanded ? 'false' : 'true'); + navSection.setAttribute( + "aria-expanded", + expanded ? "false" : "true" + ); } }); }); } - // // hamburger for mobile - const hamburger = document.createElement('div'); - hamburger.classList.add('nav-hamburger'); - hamburger.innerHTML = ``; - hamburger.addEventListener('click', () => toggleMenu(nav, navSections)); - nav.prepend(hamburger); - nav.setAttribute('aria-expanded', 'false'); - // prevent mobile nav behavior on window resize - toggleMenu(nav, navSections, isDesktop.matches); - isDesktop.addEventListener('change', () => toggleMenu(nav, navSections, isDesktop.matches)); - - decorateIcons(nav); - const navWrapper = document.createElement('div'); - navWrapper.className = 'nav-wrapper'; - navWrapper.append(nav); - block.append(navWrapper); - const inputElement = document.createElement('input'); - inputElement.setAttribute('type', 'text'); - inputElement.setAttribute('placeholder', 'Search'); - - inputElement.addEventListener('change', function () { - const searchTerm = this.value.toLowerCase(); // Get the lowercase search term - - // Fetch the JSON data from the URL - fetch('http://localhost:3000/query-index.json') - .then(response => response.json()) - .then(jsonData => { - // Perform a search based on the fetched JSON data - const results = jsonData.data.filter(item => { - // Customize this condition to match your search criteria - return item.description.toLowerCase().includes(searchTerm); + hamburger.addEventListener("click", () => toggleMenu(nav, navSections)); + nav.prepend(hamburger); + nav.setAttribute("aria-expanded", "false"); + // prevent mobile nav behavior on window resize + toggleMenu(nav, navSections, isDesktop.matches); + isDesktop.addEventListener("change", () => + toggleMenu(nav, navSections, isDesktop.matches) + ); + + decorateIcons(nav); + const navWrapper = document.createElement("div"); + navWrapper.className = "nav-wrapper"; + navWrapper.append(nav); + block.append(navWrapper); + const inputElement = document.createElement("input"); + inputElement.setAttribute("type", "text"); + inputElement.setAttribute("placeholder", "Search"); + + inputElement.addEventListener("change", function () { + const searchTerm = this.value.toLowerCase(); // Get the lowercase search term + + // Fetch the JSON data from the URL + fetch("http://localhost:3000/query-index.json") + .then((response) => response.json()) + .then((jsonData) => { + // Perform a search based on the fetched JSON data + const results = jsonData.data.filter((item) => { + // Customize this condition to match your search criteria + return item.description.toLowerCase().includes(searchTerm); + }); + console.log(results); + const resultBlock = document.querySelector(".search-results"); // Use .search-results for class selector + resultBlock ? resultBlock.remove() : null; + if (results.length > 0 && searchTerm != "") { + // Create a block based on the search results + const searchResultsBlock = createSearchResultsBlock(results); + + // Use a more specific selector for your header + const header = document.querySelector(".header"); // Adjust this selector as needed + header.appendChild(searchResultsBlock); + } + + // Get the header element and append the search results block to it + }) + .catch((error) => { + console.error("Error fetching JSON data:", error); }); - console.log(results); - const resultBlock = document.querySelector('.search-results'); // Use .search-results for class selector - resultBlock ? resultBlock.remove() : null; - if (results.length > 0 && searchTerm != '') { - // Create a block based on the search results - const searchResultsBlock = createSearchResultsBlock(results); - - // Use a more specific selector for your header - const header = document.querySelector('.header'); // Adjust this selector as needed - header.appendChild(searchResultsBlock); - } - - // Get the header element and append the search results block to it - }) - .catch(error => { - console.error("Error fetching JSON data:", error); - }); - }); + }); + + // Append the input element to the .nav-tools container + const navToolsContainer = document.querySelector(".nav-tools"); + navToolsContainer.appendChild(inputElement); + + // // header-wrapper + // // Get the original header element + // const originalHeader = document.querySelector(".header-wrapper"); + + // // Create a new header element + // const newHeader = document.createElement("header"); + // newHeader.id = "header"; + + // // Create the outer div element + // const outerDiv = document.createElement("div"); + // outerDiv.classList.add("outer"); + + // // Create the logo anchor element + // const logoAnchor = document.createElement("a"); + // logoAnchor.id = "logo"; + // logoAnchor.href = "/"; + // const logoImg = document.createElement("img"); + // logoImg.src = "//www.aldevron.com/hubfs/aldevron_template/logo.png"; + // logoImg.alt = "Aldevron Logo"; + // logoAnchor.appendChild(logoImg); + // outerDiv.appendChild(logoAnchor); + + // // Create the cart div element + // const cartDiv = document.createElement("div"); + // cartDiv.id = "cart"; + // const cartLink = document.createElement("a"); + // cartLink.href = + // "https://606687.secure.netsuite.com/app/site/query/cartredirect.nl?c=606687&n=1&ext=T"; + // const cartIcon = document.createElement("span"); + // cartIcon.classList.add("icon-cart"); + // const cartNum = document.createElement("span"); + // cartNum.classList.add("cart-num"); + // cartNum.innerHTML = + // '0'; + // const cartSum = document.createElement("span"); + // cartSum.classList.add("cart-sum"); + // cartSum.innerHTML = + // '/ $0.00'; + // cartLink.appendChild(cartIcon); + // cartLink.appendChild(cartNum); + // cartLink.appendChild(cartSum); + // cartDiv.appendChild(cartLink); + // outerDiv.appendChild(cartDiv); + + // // Create the header-nav div element + // const headerNavDiv = document.createElement("div"); + // headerNavDiv.id = "header-nav"; + + // // Create the mobile-nav div element + // const mobileNavDiv = document.createElement("div"); + // mobileNavDiv.id = "mobile-nav"; + // const mobileNavIcon = document.createElement("span"); + // mobileNavIcon.classList.add("icon-menu"); + // mobileNavDiv.appendChild(mobileNavIcon); + // headerNavDiv.appendChild(mobileNavDiv); + + // // Create the header-nav-in div element + // const headerNavInDiv = document.createElement("div"); + // headerNavInDiv.id = "header-nav-in"; + + // // Create the header-info div element + // const headerInfoDiv = document.createElement("div"); + // headerInfoDiv.id = "header-info"; + + // // Create the custom search form + // const customSearchForm = document.createElement("form"); + // customSearchForm.setAttribute("data-hs-cf-bound", "true"); + // const customSearchInput = document.createElement("input"); + // customSearchInput.name = "q"; + // customSearchInput.id = "customsearch-q"; + // customSearchInput.placeholder = "Enter text..."; + // const searchIcon = document.createElement("span"); + // searchIcon.classList.add("icon-search"); + // customSearchForm.appendChild(customSearchInput); + // customSearchForm.appendChild(searchIcon); + // headerInfoDiv.appendChild(customSearchForm); + + // // Create links for Contact Us, Status, News, Blog, and Careers + // const contactLink = document.createElement("a"); + // contactLink.classList.add("contact"); + // contactLink.href = "/about-us/contact-us"; + // contactLink.textContent = "Contact Us"; + + // const statusLink = document.createElement("a"); + // statusLink.classList.add("status"); + // statusLink.href = "/status"; + // statusLink.textContent = "Status"; + + // const newsLink = document.createElement("a"); + // newsLink.classList.add("news"); + // newsLink.href = "/about-us/news"; + // newsLink.textContent = "News"; + + // const blogLink = document.createElement("a"); + // blogLink.classList.add("blog"); + // blogLink.href = "/blog"; + // blogLink.textContent = "Blog"; + + // const eventsLink = document.createElement("a"); + // eventsLink.classList.add("events"); + // eventsLink.href = "/events-calendar"; + // eventsLink.textContent = "Events"; + + // const careersLink = document.createElement("a"); + // careersLink.classList.add("careers"); + // careersLink.href = "https://jobs.danaher.com/global/en/aldevron"; + // careersLink.target = "_blank"; + // careersLink.textContent = "Careers"; + + // headerInfoDiv.appendChild(contactLink); + // headerInfoDiv.appendChild(statusLink); + // headerInfoDiv.appendChild(newsLink); + // headerInfoDiv.appendChild(blogLink); + // headerInfoDiv.appendChild(eventsLink); + // headerInfoDiv.appendChild(careersLink); + + // // Create the menu navigation + // const menuNav = originalHeader + // .querySelector(".nav-tools ul") + // .cloneNode(true); + + // headerNavInDiv.appendChild(headerInfoDiv); + // headerNavInDiv.appendChild(menuNav); + // headerNavDiv.appendChild(headerNavInDiv); - // Append the input element to the .nav-tools container - const navToolsContainer = document.querySelector('.nav-tools'); - navToolsContainer.appendChild(inputElement); + // outerDiv.appendChild(headerNavDiv); + // newHeader.appendChild(outerDiv); + // // Replace the original header with the new header + // originalHeader.parentNode.replaceChild(newHeader, originalHeader); + // } } } diff --git a/fonts/hubfs/1769030/aldevron_template/about-pattern.png b/fonts/hubfs/1769030/aldevron_template/about-pattern.png new file mode 100644 index 0000000..e93d10f Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/about-pattern.png differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.ttf b/fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.ttf new file mode 100644 index 0000000..008cfa9 Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.ttf differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.woff b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.woff new file mode 100644 index 0000000..17ed1ba Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.woff differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.woff b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.woff new file mode 100644 index 0000000..b9f3a60 Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.woff differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.woff b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.woff new file mode 100644 index 0000000..91ca58b Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.woff differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/8666e3e0-713e-463a-8bb9-2d3c6b8050b1.woff2 b/fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/8666e3e0-713e-463a-8bb9-2d3c6b8050b1.woff2 new file mode 100644 index 0000000..e31a30f Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/8666e3e0-713e-463a-8bb9-2d3c6b8050b1.woff2 differ diff --git a/fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/a7333c48-140e-4bcb-a574-a2dcfcd4a621.woff2 b/fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/a7333c48-140e-4bcb-a574-a2dcfcd4a621.woff2 new file mode 100644 index 0000000..c7aa69d Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/a7333c48-140e-4bcb-a574-a2dcfcd4a621.woff2 differ diff --git a/fonts/hubfs/1769030/aldevron_template/orange-pattern-2.png b/fonts/hubfs/1769030/aldevron_template/orange-pattern-2.png new file mode 100644 index 0000000..925668b Binary files /dev/null and b/fonts/hubfs/1769030/aldevron_template/orange-pattern-2.png differ diff --git a/fonts/hubfs/1769030/aldevron_template/white-arrow-bg.svg b/fonts/hubfs/1769030/aldevron_template/white-arrow-bg.svg new file mode 100644 index 0000000..51e1111 --- /dev/null +++ b/fonts/hubfs/1769030/aldevron_template/white-arrow-bg.svg @@ -0,0 +1 @@ +white \ No newline at end of file diff --git a/fonts/roboto-bold.woff2 b/fonts/roboto-bold.woff2 deleted file mode 100644 index 4aeda71..0000000 Binary files a/fonts/roboto-bold.woff2 and /dev/null differ diff --git a/fonts/roboto-regular.woff2 b/fonts/roboto-regular.woff2 deleted file mode 100644 index b65a361..0000000 Binary files a/fonts/roboto-regular.woff2 and /dev/null differ diff --git a/head.html b/head.html index 290a57f..ee5a613 100644 --- a/head.html +++ b/head.html @@ -1,4 +1,28 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scripts/Scripts.min.js b/scripts/main-scripts.min.js similarity index 100% rename from scripts/Scripts.min.js rename to scripts/main-scripts.min.js diff --git a/styles/Standard-modules.min.css b/styles/Standard-modules.min.css index c5afc8a..079d31f 100644 --- a/styles/Standard-modules.min.css +++ b/styles/Standard-modules.min.css @@ -206,7 +206,7 @@ html[xmlns] .hs_cos_flex-slides { margin-right: 5px; } .hs_cos_flex-direction-nav { - *height: 0; + height: 0; } .hs_cos_flex-direction-nav a { width: 30px; @@ -253,7 +253,7 @@ html[xmlns] .hs_cos_flex-slides { list-style: none; } .hs_cos_flex_thumbnavs-direction-nav { - *height: 0; + height: 0; } .hs_cos_flex_thumbnavs-direction-nav a { width: 30px; @@ -296,7 +296,7 @@ html[xmlns] .hs_cos_flex-slides { margin: 0 6px; display: inline-block; zoom: 1; - *display: inline; + display: inline; } .hs_cos_flex-control-paging li a { width: 11px; diff --git a/styles/Typo.min.css b/styles/Typo.min.css index 53337dd..bc2982f 100644 --- a/styles/Typo.min.css +++ b/styles/Typo.min.css @@ -2,137 +2,137 @@ font-family: Helvetica; font-style: normal; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/b109e194-c563-4a1e-aa7b-0ab12434b83e.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/b109e194-c563-4a1e-aa7b-0ab12434b83e.eot#iefix); src: local("Helvetica Regular"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/b109e194-c563-4a1e-aa7b-0ab12434b83e.eot#iefix) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/b109e194-c563-4a1e-aa7b-0ab12434b83e.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/3515325d-15bc-419d-968e-43418f451aaa.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/3515325d-15bc-419d-968e-43418f451aaa.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/bc088f61-8899-441a-ab5e-3ac46628a6c2.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/bc088f61-8899-441a-ab5e-3ac46628a6c2.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/1cdae131-41b6-42fc-9a56-3906eace46c4.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459830/1cdae131-41b6-42fc-9a56-3906eace46c4.ttf) format("truetype"); } @font-face { font-family: Helvetica; font-style: italic; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/2f5c8674-96c6-4e6f-af67-8154b447387b.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/2f5c8674-96c6-4e6f-af67-8154b447387b.eot#iefix); src: local("Helvetica Oblique"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/2f5c8674-96c6-4e6f-af67-8154b447387b.eot#iefix) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/2f5c8674-96c6-4e6f-af67-8154b447387b.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/9a88e029-5825-47fc-978e-7a43e7e95419.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/9a88e029-5825-47fc-978e-7a43e7e95419.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/7439e4f8-ae0d-4a6d-a5f7-3e23128b930f.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/7439e4f8-ae0d-4a6d-a5f7-3e23128b930f.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/19d99cc2-023c-4dee-a8af-5e33496d725c.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459832/19d99cc2-023c-4dee-a8af-5e33496d725c.ttf) format("truetype"); } @font-face { font-family: Helvetica; font-style: normal; font-weight: 700; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0d0cf487-b97e-4a3b-811b-a5ff4d2f3a8f.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0d0cf487-b97e-4a3b-811b-a5ff4d2f3a8f.eot#iefix); src: local("Helvetica Bold"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0d0cf487-b97e-4a3b-811b-a5ff4d2f3a8f.eot#iefix) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0d0cf487-b97e-4a3b-811b-a5ff4d2f3a8f.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/2044ee80-fba8-4c91-87df-4995217f48fa.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/2044ee80-fba8-4c91-87df-4995217f48fa.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/441c2010-55ff-472f-b9d7-5469164a8430.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/441c2010-55ff-472f-b9d7-5469164a8430.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0eb195a7-b0e3-4a07-99da-9f08b2ec9864.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/helvetica/1459834/0eb195a7-b0e3-4a07-99da-9f08b2ec9864.ttf) format("truetype"); } @font-face { font-family: Proxima Nova A; font-style: normal; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/reg/96676c88-bae1-468a-acf5-fa74fdb2b736.eot#iefix); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/reg/96676c88-bae1-468a-acf5-fa74fdb2b736.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/96676c88-bae1-468a-acf5-fa74fdb2b736.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/96676c88-bae1-468a-acf5-fa74fdb2b736.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/reg/a7333c48-140e-4bcb-a574-a2dcfcd4a621.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/a7333c48-140e-4bcb-a574-a2dcfcd4a621.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/reg/dba0fe51-98c1-4045-b289-c0e6afb10f73.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/dba0fe51-98c1-4045-b289-c0e6afb10f73.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/reg/14c284c3-7a50-4ef0-becf-c01232631f59.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/reg/14c284c3-7a50-4ef0-becf-c01232631f59.ttf) format("truetype"); } @font-face { font-family: Proxima Nova A; font-style: italic; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/italic/926e8ba2-1161-42b7-a850-c56765e872fd.eot#iefix); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/italic/926e8ba2-1161-42b7-a850-c56765e872fd.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/italic/926e8ba2-1161-42b7-a850-c56765e872fd.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/italic/926e8ba2-1161-42b7-a850-c56765e872fd.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/italic/09a1d106-4ddc-4781-bbaa-ca99d410f96c.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/italic/09a1d106-4ddc-4781-bbaa-ca99d410f96c.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/italic/cf7ea09d-4129-4178-be10-46690a910bc6.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/italic/cf7ea09d-4129-4178-be10-46690a910bc6.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/italic/155079dd-36cb-4995-8ced-3fc104e75028.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/italic/155079dd-36cb-4995-8ced-3fc104e75028.ttf) format("truetype"); } @font-face { font-family: Proxima Nova A; font-style: normal; font-weight: 700; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/bold/cb0a2948-31e1-4f3e-8df8-f8fed5125537.eot#iefix); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/bold/cb0a2948-31e1-4f3e-8df8-f8fed5125537.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/cb0a2948-31e1-4f3e-8df8-f8fed5125537.eot#iefix); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/cb0a2948-31e1-4f3e-8df8-f8fed5125537.eot#iefix) format("eot"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/bold/8666e3e0-713e-463a-8bb9-2d3c6b8050b1.woff2) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/8666e3e0-713e-463a-8bb9-2d3c6b8050b1.woff2) format("woff2"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/bold/b28633d8-c94c-4a40-8eb1-1e0b32ea0e06.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/b28633d8-c94c-4a40-8eb1-1e0b32ea0e06.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/proxima/bold/0ec7744d-038f-46bd-a3a8-f3e0020ab4b8.ttf) + url(../fonts/hubfs/1769030/aldevron_template/fonts/proxima/bold/0ec7744d-038f-46bd-a3a8-f3e0020ab4b8.ttf) format("truetype"); } @font-face { font-family: Brown-Ald; font-style: normal; font-weight: 300; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.eot); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.eot); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.eot#iefix) format("embedded-opentype"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.svg#lineto-brown-light) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-light.svg#lineto-brown-light) format("svg"); } @font-face { font-family: Brown-Ald; font-style: normal; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.eot); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.eot); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.eot#iefix) format("embedded-opentype"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.svg#lineto-brown-regular) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-regular.svg#lineto-brown-regular) format("svg"); } @font-face { font-family: Brown-Ald; font-style: normal; font-weight: 700; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.eot); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.eot#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.eot); + src: url(../fonts/hubfs/1769030/aldevron_template/../fonts/brown/lineto-brown-bold.eot#iefix) format("embedded-opentype"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.woff) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.woff) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.svg#lineto-brown-bold) + url(../fonts/hubfs/1769030/aldevron_template/fonts/brown/lineto-brown-bold.svg#lineto-brown-bold) format("svg"); } @font-face { font-family: ald-icons; font-style: normal; font-weight: 400; - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/ald-icons.eot?dgljk); - src: url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/ald-icons.eot?dgljk#iefix) + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.eot?dgljk); + src: url(../fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.eot?dgljk#iefix) format("embedded-opentype"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/ald-icons.ttf?dgljk) + url(../fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.ttf?dgljk) format("truetype"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/ald-icons.woff?dgljk) + url(../fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.woff?dgljk) format("woff"), - url(//1769030.fs1.hubspotusercontent-na1.net/hubfs/1769030/aldevron_template/fonts/ald-icons.svg?dgljk#ald-icons) + url(../fonts/hubfs/1769030/aldevron_template/fonts/ald-icons.svg?dgljk#ald-icons) format("svg"); } .img-colorbox-popup:after,