
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="UTF-8" /><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>class RocketLazyLoadScripts{constructor(){this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",e=>{this.persisted=e.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(e){if(document.hidden){e._triggerListener();return}this.triggerEvents.forEach(t=>window.addEventListener(t,e.userEventHandler,{passive:!0})),window.addEventListener("touchstart",e.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",e.touchStartHandler),document.addEventListener("visibilitychange",e.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(e=>window.removeEventListener(e,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(e){"HTML"!==e.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),e.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(e.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(e){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),e.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(e.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(e){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(e){e.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(e.target,"rocket-onclick","onclick"),this.interceptedClicks.push(e),e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(e=>{e.target.dispatchEvent(new MouseEvent("click",{view:e.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(e=>{this._isClickPending?this._pendingClickFinished=e:e()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(e,t,i){e.hasAttribute&&e.hasAttribute(t)&&(event.target.setAttribute(i,event.target.getAttribute(t)),event.target.removeAttribute(t))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let e=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(t=>{if(t.hasAttribute("src")){let i=new URL(t.src).origin;i!==location.origin&&e.push({src:i,crossOrigin:t.crossOrigin||"module"===t.getAttribute("data-rocket-type")})}}),e=[...new Map(e.map(e=>[JSON.stringify(e),e])).values()],this._batchInjectResourceHints(e,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(e){console.error(e)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{e.hasAttribute("data-rocket-src")?e.hasAttribute("async")&&!1!==e.async?this.delayedScripts.async.push(e):e.hasAttribute("defer")&&!1!==e.defer||"module"===e.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(e):this.delayedScripts.normal.push(e):this.delayedScripts.normal.push(e)})}async _transformScript(e){return await this._littleBreath(),new Promise(t=>{function i(){e.setAttribute("data-rocket-status","executed"),t()}function r(){e.setAttribute("data-rocket-status","failed"),t()}try{let n=e.getAttribute("data-rocket-type"),s=e.getAttribute("data-rocket-src");if(n?(e.type=n,e.removeAttribute("data-rocket-type")):e.removeAttribute("type"),e.addEventListener("load",i),e.addEventListener("error",r),s)e.src=s,e.removeAttribute("data-rocket-src");else if(navigator.userAgent.indexOf("Firefox/")>0){var a=document.createElement("script");[...e.attributes].forEach(e=>{"type"!==e.nodeName&&a.setAttribute("data-rocket-type"===e.nodeName?"type":e.nodeName,e.nodeValue)}),a.text=e.text,e.parentNode.replaceChild(a,e),i()}else e.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(e.text)))}catch(o){r()}})}async _loadScriptsFromList(e){let t=e.shift();return t&&t.isConnected?(await this._transformScript(t),this._loadScriptsFromList(e)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(e,t){var i=document.createDocumentFragment();e.forEach(e=>{let r=e.getAttribute&&e.getAttribute("data-rocket-src")||e.src;if(r){let n=document.createElement("link");n.href=r,n.rel=t,"preconnect"!==t&&(n.as="script"),e.getAttribute&&"module"===e.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),e.crossOrigin&&(n.crossOrigin=e.crossOrigin),e.integrity&&(n.integrity=e.integrity),i.appendChild(n),this.trash.push(n)}}),document.head.appendChild(i)}_delayEventListeners(e){let t={};function i(e,i){!function e(i){!t[i]&&(t[i]={originalFunctions:{add:i.addEventListener,remove:i.removeEventListener},eventsToRewrite:[]},i.addEventListener=function(){arguments[0]=r(arguments[0]),t[i].originalFunctions.add.apply(i,arguments)},i.removeEventListener=function(){arguments[0]=r(arguments[0]),t[i].originalFunctions.remove.apply(i,arguments)});function r(e){return t[i].eventsToRewrite.indexOf(e)>=0?"rocket-"+e:e}}(e),t[e].eventsToRewrite.push(i)}function r(e,t){let i=e[t];Object.defineProperty(e,t,{get:()=>i||function(){},set(r){e["rocket"+t]=i=r}})}i(document,"DOMContentLoaded"),i(window,"DOMContentLoaded"),i(window,"load"),i(window,"pageshow"),i(document,"readystatechange"),r(document,"onreadystatechange"),r(window,"onload"),r(window,"onpageshow")}_delayJQueryReady(e){let t;function i(i){if(i&&i.fn&&!e.allJQueries.includes(i)){i.fn.ready=i.fn.init.prototype.ready=function(t){return e.domReadyFired?t.bind(document)(i):document.addEventListener("rocket-DOMContentLoaded",()=>t.bind(document)(i)),i([])};let r=i.fn.on;i.fn.on=i.fn.init.prototype.on=function(){if(this[0]===window){function e(e){return e.split(" ").map(e=>"load"===e||0===e.indexOf("load.")?"rocket-jquery-load":e).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=e(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(t=>{delete Object.assign(arguments[0],{[e(t)]:arguments[0][t]})[t]})}return r.apply(this,arguments),this},e.allJQueries.push(i)}t=i}i(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>t,set(e){i(e)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(e=>e(window).trigger("rocket-jquery-load")),await this._littleBreath();let e=new Event("rocket-pageshow");e.persisted=this.persisted,window.dispatchEvent(e),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let e=new Map;document.write=document.writeln=function(t){let i=document.currentScript;i||console.error("WPRocket unable to document.write this: "+t);let r=document.createRange(),n=i.parentElement,s=e.get(i);void 0===s&&(s=i.nextSibling,e.set(i,s));let a=document.createDocumentFragment();r.setStart(a,0),a.appendChild(r.createContextualFragment(t)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(e=>setTimeout(e)):new Promise(e=>requestAnimationFrame(e))}_emptyTrash(){this.trash.forEach(e=>e.remove())}static run(){let e=new RocketLazyLoadScripts;e._addUserInteractionListener(e)}}RocketLazyLoadScripts.run();</script>

<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YouTube Thumbnail Downloader - Views4You</title><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800italic.woff2" crossorigin><link rel="preload" as="font" href="https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900italic.woff2" crossorigin><style id="wpr-usedcss">body{--wp--preset--color--black:#000000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#ffffff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6, 147, 227, 1) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252, 185, 0, 1) 0%,rgba(255, 105, 0, 1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255, 105, 0, 1) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--duotone--dark-grayscale:url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale:url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow:url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red:url('#wp-duotone-blue-red');--wp--preset--duotone--midnight:url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow:url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green:url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange:url('#wp-duotone-blue-orange');--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}:where(.is-layout-flex){gap:.5em}:where(.wp-block-columns.is-layout-flex){gap:2em}:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box;outline:0}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}.h2,.h3,.h4,h1,h2,h3,h4,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ul{padding-left:2rem;margin-top:0;margin-bottom:1rem;list-style:none;margin:0;padding:0}ul ul{margin-bottom:0}b,strong{font-weight:bolder}a:hover{color:#0a58ca;color:#ed2024}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,th,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button],[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit}progress{vertical-align:baseline}[hidden]{display:none!important}.container{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){legend{font-size:1.5rem}.container{max-width:1140px}}@media (min-width:1400px){.container{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}@media (min-width:576px){.col-sm{flex:1 0 0%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}}@media (min-width:768px){.col-md{flex:1 0 0%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, .05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, .1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, .075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>:not(:first-child){border-top:2px solid currentColor}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing,.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid;vertical-align:0}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent;vertical-align:0}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button,.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;padding:.375rem .75rem}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog,.page-link{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target],.carousel-item{transition:none}}.carousel-indicators .active{opacity:1}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.d-none{display:none!important}.position-static{position:static!important}.border{border:1px solid #dee2e6!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.visible{visibility:visible!important}.choices{position:relative;overflow:hidden;margin-bottom:24px;font-size:16px}.choices:focus{outline:0}.choices:last-child{margin-bottom:0}.choices.is-open{overflow:visible}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#00bcd4;border:1px solid #00a5bb;color:#fff;word-break:break-all;box-sizing:border-box}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown,.choices__list[aria-expanded]{visibility:hidden;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all;will-change:visibility}.is-active.choices__list--dropdown,.is-active.choices__list[aria-expanded]{visibility:visible}.is-open .choices__list--dropdown,.is-open .choices__list[aria-expanded]{border-color:#b7b7b7}.is-flipped .choices__list--dropdown,.is-flipped .choices__list[aria-expanded]{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list,.choices__list[aria-expanded] .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item,.choices__list[aria-expanded] .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item,[dir=rtl] .choices__list[aria-expanded] .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable,.choices__list[aria-expanded] .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable::after,.choices__list[aria-expanded] .choices__item--selectable::after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable,[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable::after,[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted,.choices__list[aria-expanded] .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted::after,.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;-webkit-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus,.choices__input:focus{outline:0}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input::-webkit-search-cancel-button,.choices__input::-webkit-search-decoration,.choices__input::-webkit-search-results-button,.choices__input::-webkit-search-results-decoration{display:none}.choices__input::-ms-clear,.choices__input::-ms-reveal{display:none;width:0;height:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}html{font-size:1rem;scroll-behavior:smooth}body{color:#050708;font:400 1.125rem/2rem Montserrat,sans-serif;-webkit-font-smoothing:antialiased;letter-spacing:0}body.overflow{overflow:hidden}.page-wrap{overflow:hidden;position:relative}.page-wrap::after{content:'';background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA5NiIgaGVpZ2h0PSI4NjUiIHZpZXdCb3g9IjAgMCAxMDk2IDg2NSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPHBhdGggZD0iTTEwOTYgMFY4NjQuNUwzMi4xODAzIDI1NC45MDZDMTIuMjc3MSAyNDMuNTAxIDAgMjIyLjMxNiAwIDE5OS4zNzZWMEgxMDk2WiIgZmlsbD0iI0Y0RjZGOCIvPiA8L3N2Zz4=);background-repeat:no-repeat;background-size:contain;background-position-x:right;background-position-y:top;position:absolute;top:0;right:0;width:57.1%;height:54rem;z-index:-1}img{height:auto;max-width:100%;width:auto;object-fit:cover}a{color:#0d6efd;text-decoration:underline;text-decoration:none;transition:.4s}.col{padding:0 1rem}.container{padding-left:1rem;padding-right:1rem}.row{margin-left:-1rem;margin-right:-1rem}.title{text-align:center;margin:0 auto 3.4rem;max-width:49rem;text-transform:capitalize}.title p{text-transform:initial}.copy-click{position:relative;padding-bottom:2px;text-decoration:none;cursor:copy;color:#484848;transition:background-color calc(var(--duration) * 2) var(--ease)}.copy-click:before{content:attr(data-tooltip-text);position:absolute;bottom:calc(100% + 6px);left:50%;padding:8px 16px;font-size:.9rem;white-space:nowrap;background-color:#fff;border-radius:4px;box-shadow:0 0 0 -12px transparent;pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:translate(-50%,12px);transition:box-shadow calc(var(--duration)/1.5) var(--bounce),opacity calc(var(--duration)/1.5) var(--bounce),transform calc(var(--duration)/1.5) var(--bounce)}.copy-click.is-hovered:before{box-shadow:0 4px 8px rgba(0,0,0,.1);opacity:1;transform:translate(-50%,0);transition-timing-function:var(--ease)}.copy-click.is-copied{background-color:#ff0}.copy-click.is-copied:before{content:attr(data-tooltip-text-copied)}h1,h2,h3,h4,h6{font-family:montserrat,sans-serif;font-weight:700;color:#050708;letter-spacing:0}h1{font-size:4rem;line-height:4.625rem;margin-bottom:1.5rem;font-weight:700}.h2,h2{font-size:3rem;line-height:4.0625rem;margin-bottom:2.6rem;font-weight:700}.h3,h3{font-size:2rem;line-height:3rem;font-weight:600}.h4,h4{font-size:1.5rem;line-height:2.25rem}h6{font-size:1.125rem;line-height:2rem;font-weight:700}.btn{-moz-border-radius:6.25rem;-webkit-border-radius:6.25rem;border-radius:6.25rem;font-size:1.125rem;font-family:montserrat,sans-serif;font-weight:700;padding:0 3.7rem;height:4rem;position:relative;overflow:hidden;border:2px solid transparent;display:inline-flex;justify-content:center;align-items:center;-webkit-transition-duration:.4s;-moz-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;transition-timing-function:ease-out;-webkit-transition-property:color,border,background-color;-moz-transition-property:color,border,background-color;transition-property:color,border,background-color;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn .btn-circle{position:absolute;width:33.3334%;padding-bottom:33.3334%;background-color:#fff;-webkit-transform:translateY(150%);-moz-transform:translateY(150%);transform:translateY(150%);-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;pointer-events:none;left:-moz-calc((var(--n) - 1)*33.3334%);left:calc((var(--n) - 1)*33.3334%);-webkit-transition:.5s;-moz-transition:.5s;transition:.5s;-webkit-transition-delay:calc((var(--n) - 1)*.1s);-moz-transition-delay:-moz-calc((var(--n) - 1)*.1s);transition-delay:calc((var(--n) - 1)*.1s);z-index:1}.btn.disabled,.btn:disabled{opacity:.3}.btn .btn-circle:first-child{--n:1}.btn .btn-circle:nth-child(2){--n:2}.btn .btn-circle:nth-child(3){--n:3}.btn:hover .btn-circle{-webkit-transform:translateY(0) scale(2);-moz-transform:translateY(0) scale(2);transform:translateY(0) scale(2)}.btn strong{font-weight:700;position:relative;z-index:3}.btn:focus,.btn:hover{box-shadow:none;outline:0}.btn-black{background-color:#050708;border-color:#050708;color:#fff}.btn-black:hover{border-color:#050708;background-color:transparent;color:#050708}.btn-red{background-color:#ed2024;border-color:#ed2024;color:#fff}.btn-red:hover{background-color:transparent;color:#ed2024;border-color:#ed2024}.btn-red svg path{transition:.4s}.btn-red:hover svg path{fill:#ed2024}.header{padding:4.7rem 0;position:absolute;top:0;right:0;left:0;z-index:1000}.header .header-nav{margin-left:auto}.header .menu{display:flex;flex-wrap:wrap;align-items:center}.header .menu li{font-size:.9375rem;line-height:1.625rem;font-weight:700;margin-left:5rem}.header .menu>li:first-child{margin-left:0}.header .menu li.active>a,.header .menu li:hover>a{color:#ed2024}.header .menu a{color:#050708;display:flex;-webkit-transition:color .4s;-moz-transition:color .4s;transition:color .4s}.header .container{display:flex;flex-wrap:wrap;align-items:center}.header .menu a span{display:inline-block}.header .menu li:hover a span{-webkit-animation:.3s linear moveChar;-moz-animation:.3s linear moveChar;animation:.3s linear moveChar}.header .menu-inner,.header .menu-outer{display:flex;flex-wrap:wrap;margin-left:5rem;position:relative;--posX:0;--width:100%;-moz-border-radius:2rem;-webkit-border-radius:2rem;border-radius:2rem;overflow:hidden}.header .menu-outer>span{position:absolute;display:block;top:0;z-index:-1;-moz-border-radius:2rem;-webkit-border-radius:2rem;border-radius:2rem;height:100%;background-color:rgba(237,32,36,.2);-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;transition:all .3s ease-in-out;width:100%}.header .menu-outer span.active{background:#ed2024}.header .menu-inner li{padding:.6rem 1.7rem;-moz-border-radius:2rem;-webkit-border-radius:2rem;border-radius:2rem;transition:.4s}.header .menu-inner li:first-child{margin-left:0}.header .menu-inner li:hover a{color:#fff}@-webkit-keyframes moveChar{50%{-webkit-transform:translateY(-3px);transform:translateY(-3px)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes moveChar{50%{-moz-transform:translateY(-3px);transform:translateY(-3px)}to{-moz-transform:translateY(0);transform:translateY(0)}}@keyframes moveChar{50%{-webkit-transform:translateY(-3px);-moz-transform:translateY(-3px);transform:translateY(-3px)}to{-webkit-transform:translateY(0);-moz-transform:translateY(0);transform:translateY(0)}}.section-banner{padding-top:11.9rem;padding-bottom:5.5rem;position:relative}.section-banner .button-wrap{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;margin-top:2.5rem}.section-banner .button-wrap .btn{margin-right:2.4rem;padding:0 3.1rem}.section-banner .image-wrap{position:absolute;width:39.4rem;height:42.9rem;right:-1rem;top:1.5rem}.section-banner .image-wrap .line{position:absolute}.section-banner .image-wrap .line span{width:100%;height:100%;background:#ed2024;transform:matrix(1,.58,0,.89,0,0);-moz-border-radius:.125rem;-webkit-border-radius:.125rem;border-radius:.125rem;z-index:1;display:block;position:absolute}.section-banner .image-wrap .buttons .button-wrap{position:absolute;z-index:4;margin-top:0}.section-banner .image-wrap .buttons .button{background:#ed2024;border-radius:.5rem;transform:matrix(1,.58,0,.89,0,0);color:#fff;font-size:.875rem;line-height:.875rem;font-weight:700;display:flex;align-items:center;justify-content:center;width:100%;height:100%;-webkit-animation:40s linear infinite message-floating;-moz-animation:40s linear infinite message-floating;animation:40s linear infinite message-floating}.section-banner .image-wrap .buttons .button-wrap:first-child img{object-fit:contain;margin-right:.5rem;width:1.45rem;height:1.45rem}.section-banner .image-wrap .buttons .button-wrap:first-child{width:7.2125rem;height:4.15rem;top:8rem;left:6.2rem}.section-banner .image-wrap .buttons .button-wrap:first-child .button{-webkit-animation-delay:5s;-moz-animation-delay:5s;animation-delay:5s}.section-banner .image-wrap .buttons .button-wrap .button::after,.section-banner .image-wrap .buttons .button-wrap .button::before{content:'';background:#ed2024;position:absolute;-moz-border-radius:.5rem;-webkit-border-radius:.5rem;border-radius:.5rem;z-index:-1}.section-banner .image-wrap .buttons .button-wrap .button::before{opacity:.2}.section-banner .image-wrap .buttons .button-wrap .button::after{opacity:.1}.section-banner .image-wrap .buttons .button-wrap:first-child .button::after,.section-banner .image-wrap .buttons .button-wrap:first-child .button::before{width:7.2125rem;height:4.15rem}.section-banner .image-wrap .buttons .button-wrap:first-child .button::before{top:-.6rem;left:.4rem}.section-banner .image-wrap .buttons .button-wrap:first-child .button::after{top:-1.1rem;left:.9rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2){width:9.5625rem;height:5.125rem;top:10.4rem;right:1.1rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button{animation-direction:reverse}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) img{transform:rotate(-18.2deg);width:1.8875rem;height:1.8875rem;object-fit:contain;margin-right:.5rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::after,.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::before{width:9.5625rem;height:5.125rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::before{top:-.8rem;left:.5rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::after{top:-1.4rem;left:.9rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3){bottom:11rem;right:9.7rem;width:7.2rem;height:4.1rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button{animation-direction:reverse;-webkit-animation-delay:3s;-moz-animation-delay:3s;animation-delay:3s}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) img{object-fit:contain;width:1.75rem;height:1.75rem;transform:matrix(1,-.52,0,1,0,0);margin-right:.4rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::after,.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::before{width:7.2rem;height:4.1rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::before{top:-.5rem;left:.5rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::after{top:-1.1rem;left:.9rem}@-webkit-keyframes message-floating{0%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg)}25%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(30px);transform:matrix(1,.58,0,.89,0,0) translateX(30px)}75%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(-30px);transform:matrix(1,.58,0,.89,0,0) translateX(-30px)}to{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg)}}@-moz-keyframes message-floating{0%{-moz-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg)}25%{-moz-transform:matrix(1,.58,0,.89,0,0) translateX(30px);transform:matrix(1,.58,0,.89,0,0) translateX(30px)}75%{-moz-transform:matrix(1,.58,0,.89,0,0) translateX(-30px);transform:matrix(1,.58,0,.89,0,0) translateX(-30px)}to{-moz-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg)}}@keyframes message-floating{0%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg);-moz-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(-.07deg)}25%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(30px);-moz-transform:matrix(1,.58,0,.89,0,0) translateX(30px);transform:matrix(1,.58,0,.89,0,0) translateX(30px)}75%{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(-30px);-moz-transform:matrix(1,.58,0,.89,0,0) translateX(-30px);transform:matrix(1,.58,0,.89,0,0) translateX(-30px)}to{-webkit-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg);-moz-transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg);transform:matrix(1,.58,0,.89,0,0) translateX(0) rotate(.07deg)}}.section-buy-campaign{padding-top:2.7rem;padding-bottom:5.2rem}.counter{text-align:center}.counter .number{font-size:4rem;line-height:4.5625rem;font-weight:700;color:#ed2024;margin-bottom:.5rem}.section-reviews{padding-top:3.5rem;padding-bottom:5rem}.section-reviews .title{margin-bottom:3.9rem;text-align:left;display:flex;justify-content:space-between;max-width:100%}.section-reviews .title h2{margin-bottom:0}.section-reviews .owl-dots{display:flex;align-items:center;justify-content:center;margin-top:5.45rem}.section-reviews .owl-dots .owl-dot{border:2px solid transparent;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;margin:0 .5rem;display:flex;justify-content:center;align-items:center;width:2rem;height:2rem;transition:.4s;background:0 0}.section-reviews .owl-dots .owl-dot::before{content:'';width:.875rem;height:.875rem;background-color:rgba(5,7,8,.1);-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;transition:.3s}.section-reviews .owl-dots .owl-dot:hover::before{background-color:#ed2024}.section-reviews .owl-dots .owl-dot.active{border:2px solid #ed2024;background-color:transparent}.section-reviews .owl-dots .owl-dot.active::before{opacity:0}.section-reviews .owl-carousel{width:auto;margin:0 -3rem}.footer{padding:12.6rem 0 2.5rem}.footer p{margin-bottom:0}.footer .footer-menu{display:flex;flex-wrap:wrap}.footer .footer-menu a{color:#050708;display:flex;font-weight:700}.footer .footer-menu a span{display:inline-block}.footer .footer-menu li:hover a{-webkit-transition:color .4s;-moz-transition:color .4s;transition:color .4s;color:#ed2024}.footer .footer-menu li:hover a span{-webkit-animation:.3s linear moveChar;-moz-animation:.3s linear moveChar;animation:.3s linear moveChar}.footer .footer-buttons{display:flex;flex-wrap:wrap}.footer .footer-buttons .button-wrap{text-align:center;flex:0 0 33.33%;max-width:33.33%;padding:0 1.046875rem}.footer .footer-buttons .button-wrap .btn{width:100%;padding:0 .5rem;margin-bottom:1rem}.footer .footer-buttons .button-wrap p b{font-weight:700}.footer .footer-buttons .button-wrap .rating span{color:#ed2024;font-weight:700}.footer .buttons-col{padding:0;padding-left:5.4rem}.footer .footer-nav{border-top:1px solid rgba(5,7,8,.1);margin:2.9rem 0 0;padding-top:2.55rem}.footer .footer-nav .col{padding:0}.footer .footer-social{display:flex;align-items:center;justify-content:flex-end}.footer .footer-menu li{margin-right:4rem}.footer .footer-social a{display:flex;align-items:center;margin-left:1.5rem;flex:0 0 1.5rem;width:1.5rem;height:1.8rem}.footer .footer-social a svg path{transition:.4s}.footer .footer-social a:hover svg path{fill:#050708}.banner-box{background-color:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;margin-left:auto;padding:1.7rem 0 0}.banner-box form{display:flex;flex-wrap:wrap;padding:4.1rem 3.5rem 2rem;min-height:420px}.banner-box form .col-12{flex:0 0 100%;max-width:100%;margin-bottom:0}.banner-box form label{font-size:.9375rem;line-height:1.625rem;display:block;margin-bottom:.5rem}.banner-box form .btn-black{width:100%;margin-top:1.1rem}.tooltip{transition:.4s;background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;font-size:.9375rem;line-height:1.625rem;color:#4b4b4b;bottom:2.7rem;left:0;padding:1.526rem 1.5rem .3rem;max-width:13.5rem;font-family:montserrat,sans-serif;visibility:hidden}.tooltip.show{opacity:1;visibility:visible}.tooltip h6{margin-bottom:.3rem}.section-faqs{padding-top:7.2rem;padding-bottom:5.5rem;position:relative}.section-faqs::before{content:'';position:absolute;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzM3IiBoZWlnaHQ9IjExNjQiIHZpZXdCb3g9IjAgMCA3MzcgMTE2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPHBhdGggZD0iTTAgMTE2My41VjAuMDAwMTIyMDdMNzA0Ljg0NyA0MDQuMzYxQzcyNC43MzUgNDE1Ljc3IDczNyA0MzYuOTQ2IDczNyA0NTkuODc0VjExNjMuNUgwWiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzE5MF8yMDcpIi8+IDxkZWZzPiA8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTkwXzIwNyIgeDE9IjUyNCIgeTE9IjExMDMiIHgyPSI5LjgwMzc5ZS0wNSIgeTI9Ii0wLjAwMDEwNTgxMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPiA8c3RvcCBzdG9wLWNvbG9yPSIjRjRGNkY4IiBzdG9wLW9wYWNpdHk9IjAiLz4gPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjRGNkY4Ii8+IDwvbGluZWFyR3JhZGllbnQ+IDwvZGVmcz4gPC9zdmc+IA==);background-repeat:no-repeat;top:-7.7rem;left:0;background-size:contain;width:38.4%;height:48.13%;z-index:-1}.section-faqs h2{margin-bottom:.9rem}.section-faqs .title-col{padding-right:8rem}.accordion-item,.accordion-item:first-of-type,.accordion-item:last-of-type{margin-bottom:1rem;background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;padding:2rem 2.5rem;border:0;cursor:pointer}.accordion-button{font-size:1.5rem;font-weight:700;color:#050708;line-height:2.25rem;padding:0;padding-right:2.8rem;position:relative;transition:.4s}.accordion-item:hover .accordion-button{color:#ed2024}.accordion-button:not(.collapsed){color:#050708;box-shadow:none;background-color:transparent}.accordion-button::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjQnIGhlaWdodD0nMjQnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAuMjg1NyAxMC4yODU3VjBIMTMuNzE0M1YxMC4yODU3SDI0VjEzLjcxNDNIMTMuNzE0M1YyNEgxMC4yODU3VjEzLjcxNDNIMFYxMC4yODU3SDEwLjI4NTdaJyBmaWxsPScjRUQyMDI0Jy8+PC9zdmc+Cg==);background-repeat:no-repeat;width:1.5rem;height:1.5rem;background-size:contain;background-position:center;position:absolute;top:0;bottom:0;margin:auto 0;right:0}.accordion-button:not(.collapsed)::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjQnIGhlaWdodD0nNCcgdmlld0JveD0nMCAwIDI0IDQnIGZpbGw9J25vbmUnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTI0IDAuMjg1NjQ1SDEwLjI4NTdIMFYzLjcxNDIySDEzLjcxNDNIMjRWMC4yODU2NDVaJyBmaWxsPScjRUQyMDI0Jy8+PC9zdmc+Cg==)}.accordion-body{padding:1.4rem 0 0}.accordion-body p:last-child{margin-bottom:0}.accordion-button:focus{box-shadow:none}.section-blog-single{padding-top:16.7rem;position:relative}.section-blog-single .title{max-width:60rem;position:relative;padding-bottom:3.5rem;margin:0 auto 3.6rem}.section-blog-single .title::after{content:'';border-bottom:1px solid rgba(5,7,8,.1);position:absolute;left:0;right:0;bottom:0;max-width:42.8rem;margin:0 auto}.section-blog-single .title h1{margin-bottom:2rem}.section-blog-single .title p{max-width:41.2rem;margin:0 auto}.section-blog-single .content-wrap p{margin-bottom:2rem}.section-blog-single h4{margin-top:3.6rem;margin-bottom:1.4rem}.checkout-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;padding:2.5rem 4rem 3.9rem;position:relative}.checkout-box h3{text-align:center;margin-bottom:2rem}.checkout-box .box-title{display:flex;align-items:center;margin-bottom:2rem}.checkout-box .box-title>div{display:flex;align-items:center;margin-left:2.5rem}.checkout-box .box-title h3{margin-bottom:0}.form-control{background:#f4f6f8;-moz-border-radius:31.25rem;-webkit-border-radius:31.25rem;border-radius:31.25rem;border:0;font-size:1.125rem;font-weight:400;font-family:montserrat,sans-serif;color:#050708;padding:1.175rem 1.95rem}.form-control:focus{background-color:#f4f6f8;box-shadow:none}.form-control::placeholder{color:#4b4b4b}.checkout-box .form-group{margin-bottom:1rem}.checkout-box form>.btn{margin-top:2rem;width:100%;font-size:1.125rem}.checkout-box form label{font-weight:700;display:block;font-size:.9375rem;line-height:1.625rem}.checkout-box form .row{margin:0 -.5rem}.checkout-box form .col{padding:0 .5rem}textarea.form-control{-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem}.section-free{padding-top:11rem;padding-bottom:5rem}.section-free .title-col{padding-right:5rem}.section-free .title-col h6{margin-bottom:1.9rem}.section-free .title-col p{margin-bottom:1.5rem}.banner-box h3{text-align:center;max-width:30rem;margin:0 auto}.banner-box h3 span{color:#ed2024}.section-free .banner-box{padding-top:2.6rem}.section-free .banner-box .form-group{flex:0 0 100%;max-width:100%;margin-bottom:.9rem}.section-free .banner-box form{padding-top:2rem;min-height:auto}.section-free .banner-box form .btn{margin-top:.1rem}.section-analytics{padding-top:13.25rem}.section-analytics .title{max-width:57.7rem;margin-bottom:4rem}.section-analytics h1{margin-bottom:2rem}.search-form{position:relative}.search-form .form-control{border:1px solid #050708;background:#fff;padding:1.075rem 8.15rem 1.075rem 1.95rem}.search-form .btn:not(.dropdown-toggle){position:absolute;inset:4px;left:auto;padding:0;width:7.1rem;height:auto}.search-form .form-control::placeholder{color:#4b4b4b}.badge{font-weight:700;font-size:1.125rem;border:2px solid transparent;-moz-border-radius:3.125rem;-webkit-border-radius:3.125rem;border-radius:3.125rem;padding:.25rem .35rem .25rem .25rem;display:flex;align-items:center;justify-content:center}.badge-yellow{border-color:#fbb829;color:#fbb829}.badge img{width:1rem;height:1rem;object-fit:contain;flex:0 0 1rem;margin-right:.5rem}.video-cards-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;padding:1.5rem 1.5rem 1.8rem}.badge-outline-red{border-color:#ed2024;color:#ed2024;font-size:.9375rem;padding:.5rem .4rem;-moz-border-radius:.5rem;-webkit-border-radius:.5rem;border-radius:.5rem;border-width:1px}.video-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;padding:2.5rem 2.5rem 1.5rem;margin-bottom:2rem}.video-box .video-poster{width:100%;-moz-border-radius:.75rem;-webkit-border-radius:.75rem;border-radius:.75rem;overflow:hidden;height:50rem;margin-bottom:1.5rem}.video-box .video-poster img{width:100%;height:100%;object-fit:cover}.video-box .box-title{display:flex;flex-wrap:wrap;align-items:center;row-gap:1rem}.video-box .box-title h3{flex-grow:1;margin-bottom:0}.wcl-subtitles-wrapper .box-col:first-child{padding:0!important}.wcl-subtitles-wrapper .row.search{padding-top:3.5rem;padding-right:2.5rem;padding-left:2.5rem}.wcl-subtitles-wrapper .row.results{padding-top:0;padding-right:2.5rem;padding-left:2.5rem;height:1165px;max-height:1165px;overflow-y:auto;-ms-overflow-style:none;scrollbar-width:none}.wcl-subtitles-wrapper input[type=search]{margin-bottom:2rem}.wcl-subtitles-wrapper .video-box{padding:1rem 2rem}.wcl-subtitles-wrapper .video-box img{width:16px;margin-right:10px}.wcl-subtitles-wrapper .video-box .box-title h3{font-size:1.2rem}.wcl-subtitles-wrapper .video-box .btn{font-size:.9rem;padding:0 2.5rem;height:3rem}.wcl-subtitles-wrapper .dropdown-menu{margin:10px 0}.wcl-subtitles-wrapper .dropdown ul{width:100px;display:none;padding:50px;background:#000;z-index:2000;position:absolute}.section-rank-tracker .chart{padding:3.5rem 2.5rem 0}.section-rank-tracker .results .result{display:flex;flex-direction:row;align-content:center;margin-bottom:2rem}.section-rank-tracker .results .result .content{display:flex;flex-grow:1;flex-direction:column;background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);border-radius:1rem;padding:1rem 2rem;line-height:1.25rem;color:#050708;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.section-rank-tracker .results .result .content span:first-child{font-size:.9rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.section-rank-tracker .results .result .content span:last-child{font-size:.8rem;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.section-rank-tracker .pagination{margin-bottom:2rem}.page-link{font-size:1rem;color:#050708!important;padding:.1rem .75rem}.page-item.active .page-link{background-color:#ed2024;border-color:#ed2024;color:#fff!important}.page-link:focus{box-shadow:none}.section-calculator .search-form .btn{width:9rem}.section-calculator .channel-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;margin-top:8rem;position:relative;padding-top:9.5rem;margin-bottom:4rem}.channel-avatar{width:7.5rem;height:7.5rem;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;overflow:hidden;margin:0 auto 1.1rem}.channel-avatar img{width:100%;height:100%;object-fit:cover}.section-calculator .video-views-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;display:flex;flex-wrap:wrap;overflow:hidden}.section-calculator .video-views-box .box-col:last-child{background:#f4f6f8}.section-calculator .video-views-box .box-col:first-child{flex:0 0 68.8%;max-width:68.8%;padding:3.5rem 4.5rem 0}.section-calculator .video-views-box .box-title{text-align:center;margin-bottom:1.8rem}.section-calculator .video-views-box .box-title h2{font-size:2.5rem;line-height:3.375rem;margin-bottom:0}.section-calculator .video-views-box .box-col{flex:1}.section-calculator .video-views-box .estimate-item .number{color:#050708;font-weight:600;font-size:2rem;line-height:3rem}.section-calculator .video-views-box .box-col:nth-child(2){padding:3.5rem 4.6rem 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.section-calculator .video-views-box .estimate-item{margin-bottom:2.5rem;color:#4b4b4b}.section-calculator .video-views-box .top-list{position:relative;margin:0 -4.6rem;margin-top:auto;padding:4.6rem 1.8rem 2.8rem 4.6rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;border-top:1px solid #050708}.section-calculator .video-views-box .top-list .black-label{position:absolute;color:#fff;background-color:#050708;text-transform:uppercase;font-weight:700;display:block;font-size:1.125rem;line-height:2rem;top:0;left:0;padding:.3rem 1.1rem}.section-calculator .video-views-box .top-list .link-underline:last-child{margin-bottom:0}@media(min-width:1400px){.container{max-width:81.25rem}}@media(min-width:1600px){.container{max-width:89.5rem}}@media(max-width:1599px){.header .menu li,.header .menu-inner{margin-left:3rem}.section-calculator .video-views-box .box-col:nth-child(2){padding:3.5rem 3.6rem 0}.section-calculator .video-views-box .top-list{margin:0 -3.6rem;padding:4.6rem 1.8rem 2.8rem 3.6rem}}@media(max-width:1439px){.header .menu li{margin-left:1.5rem}.header .menu-inner li{padding:.6rem 1.2rem}.header .menu-inner{margin-left:1.5rem}.section-banner .image-wrap{width:36.1rem;height:46.9rem;right:0}.section-banner .image-wrap .buttons .button-wrap:nth-child(2){top:6.2rem;right:.1rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3){bottom:7rem;right:7.7rem}.banner-box form{padding:3rem 2.5rem 1.5rem}.footer .footer-buttons .button-wrap{padding:0 1rem}.footer .footer-buttons .button-wrap .btn{padding:0 .2rem}.footer .buttons-col{padding-left:3rem}.video-cards-box{padding:1.5rem 1rem 1.8rem}.video-box .video-poster{height:40rem}.section-calculator .video-views-box .box-col:first-child{padding:2.7rem 2.5rem 0}.section-calculator .video-views-box .box-col:nth-child(2){padding:2.7rem 2rem 0}.section-calculator .video-views-box .top-list{margin:0 -2rem;padding:4.6rem 1rem 2.8rem 2rem}.link-underline::after{display:none}.link-underline{text-decoration:underline;margin-bottom:1rem}}@media(max-width:1199px){.header .menu li{margin-left:.7rem}.header .logo{max-width:11rem}.header .menu-inner li{padding:.6rem .7rem}.header .menu-inner{margin-left:.7rem}.section-banner .image-wrap{width:25.1rem;height:30.9rem}.section-banner .image-wrap .buttons .button-wrap:first-child{width:5.7125rem;height:3.45rem;top:11rem;left:2.6rem}.section-banner .image-wrap .buttons .button-wrap:first-child .button::after,.section-banner .image-wrap .buttons .button-wrap:first-child .button::before{width:5.7125rem;height:3.45rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3){width:6.2rem;height:3.5rem;bottom:-2rem;right:4.7rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::after,.section-banner .image-wrap .buttons .button-wrap:nth-child(3) .button::before{width:6.2rem;height:3.5rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3) img{width:1.5rem;height:1.5rem}.section-banner .image-wrap .buttons .button-wrap:first-child img{width:1.25rem;height:1.25rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2){width:8.6625rem;height:4.225rem;top:8rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) img{width:1.5rem;height:1.5rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::after,.section-banner .image-wrap .buttons .button-wrap:nth-child(2) .button::before{width:8.6625rem;height:4.225rem}.section-buy-campaign .col{margin-bottom:3rem}.counter{margin-bottom:1.5rem}.section-faqs{padding-top:3rem}.section-faqs::before{top:-4.7rem}.section-faqs .title-col{margin-bottom:2rem}.checkout-box{padding:2.5rem 2.5rem 3.9rem}.checkout-box .box-title>div{margin-left:1.5rem;margin-right:-1.4rem}.section-free .banner-box{margin-top:3rem}.section-free .title-col{text-align:center;padding-right:1rem}.footer .buttons-col{padding-left:1rem}.footer .footer-buttons .button-wrap{padding:0 .5rem}.footer .footer-menu li{margin-right:2rem}.video-box .video-poster{height:28rem}.video-box .box-title h3{margin-right:1rem}.video-box .box-title .btn{padding:0 2.6rem}.section-calculator .video-views-box .estimate-item .number{font-size:1.5rem;line-height:2rem}.section-calculator .video-views-box .estimate-item{margin-bottom:1.5rem}.section-calculator .video-views-box .box-col:nth-child(2){padding:2.7rem 1.5rem 0}.section-calculator .video-views-box .top-list{margin:0 -1.5rem;padding:4.6rem 1rem 2.8rem 1.5rem}}@media(max-width:1023px){.header .logo{z-index:1001}.header .header-nav{max-height:0;height:auto;transition:.4s;background-color:#fff;position:fixed;inset:0;visibility:hidden;overflow:hidden;display:flex;justify-content:center;text-align:center;opacity:0;z-index:1000;padding:11rem 2rem 2rem}.header .menu{display:block}.header .menu li{margin-left:0;margin-bottom:2rem}.header.menu-open .header-nav{max-height:1500px;visibility:visible;opacity:1}.header .menu-btn{width:2rem;height:1.7rem;position:relative;margin-left:auto;z-index:1001}.header .menu-btn span{width:100%;height:.25rem;-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;background-color:#ed2024;margin-bottom:.5rem;display:block;transition:.4s}.header .menu-btn span:last-child{margin-bottom:0}.header .menu-btn.active span{position:absolute;top:.7rem;transform:rotate(45deg)}.header .menu-btn.active span:last-child{transform:rotate(-45deg)}.header .menu-btn.active span:nth-child(2){display:none}.header .menu-inner{margin:0 auto;display:block}.header .menu a{justify-content:center}.header .menu-inner>span{display:none}.header .menu-inner .active a,.header .menu-inner li:hover a{color:#ed2024}.section-reviews .owl-dots{margin-top:2.5rem}.footer{padding:3rem 0}.section-free{padding-top:13rem}.section-analytics{padding-bottom:5rem}}@media(max-width:991px){.section-banner .image-wrap{width:19.1rem;height:34.9rem;margin:1rem auto 0;position:relative}.section-banner .image-wrap .buttons .button-wrap:nth-child(2){top:9.4rem;right:-6rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3){bottom:3rem;right:.7rem}.section-buy-campaign .col{margin-bottom:3rem}.section-faqs::before{width:100%}.section-blog-single{padding-top:11.7rem}.checkout-box{padding:2.5rem 4rem 3.9rem;margin-bottom:3rem}.section-free{padding-top:12rem}.footer .footer-logo{margin:0 auto 2rem;display:block;text-align:center}.footer .buttons-col{padding:0 1rem}.footer .footer-menu{justify-content:center;margin-bottom:1rem}.footer .footer-menu li{margin:0 1rem}.footer .footer-social{justify-content:center;margin-top:1.5rem}.footer .footer-social a{margin:0 .75rem}.section-analytics{padding-bottom:5rem}.video-cards-box{display:flex;flex-wrap:wrap;justify-content:space-between;padding:1.5rem 1.5rem 1.8rem}.video-box .video-poster{height:20rem}.section-calculator .video-views-box .box-col:first-child{flex:0 0 100%;max-width:100%}.section-calculator .video-views-box .estimate-item{text-align:center}}@media(max-width:767px){body{font-size:1rem;line-height:1.5rem}h1{font-size:2rem;line-height:2.5rem}.h2,h2{font-size:1.5rem;line-height:2rem;margin-bottom:1rem}.h3,h3{font-size:1.5rem;line-height:2rem}.h4,h4{font-size:1.25rem;line-height:1.75rem}h6{font-size:1rem;line-height:1.5rem}.page-wrap::after{width:100%}.header{padding:2rem 0}.header .logo{max-width:10rem}.header .header-nav{padding:9rem 2rem 2rem}.section-banner{padding-top:7rem;padding-bottom:2.5rem}.section-banner .button-wrap .btn{margin-right:1rem;padding:1.235rem 2.6rem}.section-banner .image-wrap{width:21.1rem;height:32.9rem;margin-bottom:2rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(3){bottom:5rem;right:2.2rem}.section-banner .image-wrap .buttons .button-wrap:nth-child(2){top:3.4rem;right:.3rem}.section-banner .image-wrap .buttons .button-wrap:first-child{left:1.6rem;top:12rem}.section-buy-campaign{padding-bottom:2rem}.counter .number{font-size:3rem;line-height:3.5rem}.section-reviews .title{text-align:center;justify-content:center;margin-bottom:2rem}.section-reviews .owl-dots .owl-dot{margin:0 .15rem;width:1.5rem;height:1.5rem}.section-reviews .owl-dots .owl-dot::before{width:.625rem;height:.625rem;flex:0 0 .625rem}.section-reviews .owl-dots{margin-top:1rem}.section-reviews .owl-carousel{margin:0}.footer{padding:1.5rem}.footer .footer-menu{justify-content:center}.footer .footer-menu li{margin:0 1.1rem}.footer .footer-buttons .button-wrap{flex:0 0 100%;max-width:100%;margin-bottom:1.5rem}.footer .footer-buttons .button-wrap:last-child{margin-bottom:0}.footer .footer-social{margin-top:1rem}.footer .footer-nav{margin-top:2rem;padding-top:2rem}.section-faqs .title-col{padding-right:1rem}.accordion-button{font-size:1rem;line-height:1.5rem}.accordion-item,.accordion-item:first-of-type,.accordion-item:last-of-type{padding:1rem}.accordion-button::after{width:1rem;height:1rem}.section-blog-single{padding-top:7.7rem}.section-blog-single .title{padding-bottom:2rem;margin-bottom:2rem}.section-blog-single .content-wrap p{margin-bottom:1.5rem}.section-blog-single h4{margin-top:2rem}.checkout-box{padding:2rem 1.5rem 3.2rem}.form-control{font-size:1rem;padding:.875rem 1.25rem}.checkout-box .box-title{flex-direction:column}.checkout-box .box-title>div{margin:1rem auto 0}.section-free{padding-top:9rem}.section-free .title{padding:0 1rem;margin-bottom:2rem}.section-analytics{padding-top:10rem}.search-form .form-control{padding:1.075rem 1.5rem}.search-form .btn{position:relative;width:100%;height:3.75rem;margin-top:1rem;inset:0}.section-analytics .title{margin-bottom:2rem}.video-box{padding:1rem}.video-box .box-title h3{flex:0 0 100%;text-align:center;margin-right:0;margin-bottom:1rem}.video-box .box-title .btn{width:100%}.video-box .video-poster{height:15rem}.section-calculator .search-form .btn{width:100%}.section-calculator .video-views-box .box-title h2{font-size:1.5rem;line-height:2rem;margin-bottom:1rem}.section-calculator .video-views-box .box-col:first-child{padding:1.5rem 1rem 0}}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}h1{font-size:3.563rem;line-height:4rem}.h2,h2{font-size:2rem;line-height:2.5rem}.h3,h3{font-size:1.5rem;line-height:2rem}.h4,h4{font-size:1.375rem;line-height:1.875rem}h6{font-size:1.125rem;line-height:2rem}@media(max-width:767px){h1{font-size:2rem;line-height:2.5rem}.h2,h2{font-size:1.5rem;line-height:2rem;margin-bottom:1rem}.h3,h3{font-size:1.5rem;line-height:2rem}.h4,h4{font-size:1.25rem;line-height:1.75rem}h6{font-size:1rem;line-height:1.5rem}}a{font-weight:700;color:#ed2024}input[type=text]::-ms-clear{display:none;width:0;height:0}input[type=text]::-ms-reveal{display:none;width:0;height:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}.footer-logo,.logo{display:inline-block;width:100%;max-width:207px}.header .menu-inner{margin-left:0}.h2,.h3,.h4{font-weight:700;color:#050708}.header .logo{max-width:180px}.header .menu li{margin-left:2rem}.header .menu a{display:inline-block}.header .menu li.menu-item-has-children{position:relative}.header .menu li.menu-item-has-children>a{position:relative;margin-right:20px}.header .menu li.menu-item-has-children>a::after{content:'';position:absolute;top:calc(50% - 2px);right:-15px;display:block;transform:translateY(-50%) rotate(45deg);border-width:0 2px 2px 0;border-style:solid;border-color:#050708;padding:2px;transition:border-color .4s}.header .menu li.menu-item-has-children:hover>a::after{border-color:#ed2024}.header .menu-list{display:flex}.header .menu-list.menu-before li:first-child{margin-left:0}.header .menu-list .sub-menu-wrapper{position:absolute;top:0;left:0;display:none;padding-top:40px;transition:all .25s ease-in-out}.header .menu-list .sub-menu{list-style:none;margin-bottom:0;padding-left:0;display:flex;flex-direction:column;align-items:flex-start;background-color:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);border-radius:1rem;padding:20px 18px;min-width:300px}.header .menu-list .sub-menu .menu-item:not(:last-child){margin-bottom:.85rem}.header .menu-list .menu-item-has-children.show-sub-menu>a{color:#ed2024}.header .menu-list .menu-item-has-children.show-sub-menu>a:after{border-color:#ed2024}.header .menu-list .menu-item-has-children.show-sub-menu .sub-menu-wrapper{display:block}.header .menu-list .menu-item-has-children .sub-menu li{margin-left:0}.header .menu-outer{margin-left:3rem}@media only screen and (max-width:1680px){.header .menu-list .sub-menu-wrapper{left:auto;right:50%;transform:translateX(50%)}}@media only screen and (max-width:1440px){.header .menu li,.header .menu-outer{margin-left:1.5rem}}@media only screen and (max-width:1200px){.header .menu li{font-size:.8rem}.header .logo{max-width:150px}.header .menu-list .sub-menu{min-width:260px}}@media only screen and (max-width:1023px){.header .header-nav{align-items:center}.header .menu{overflow:auto;width:100%;height:100%}.header .menu-inner{margin-left:auto}.header .menu li{font-size:.9375rem;margin-left:0;margin-bottom:0}.header .menu li:not(:last-child){margin-bottom:2rem}.header .logo{max-width:11rem}.header .menu-outer{margin-left:0;margin-top:2rem;margin-bottom:2rem}.header .menu-outer>span{display:none}.header .menu-list{display:block}.header .menu-list .sub-menu-wrapper{position:static;padding-top:0;margin-top:2rem;transform:translateX(0)}.header .menu-list .sub-menu{background:0 0;box-shadow:none;align-items:center;padding:0;min-width:auto}.header .menu-list .sub-menu .menu-item:not(:last-child){margin-bottom:2rem}}@media only screen and (max-width:767px){.header .logo{max-width:10rem}}.section-blog-single a{font-weight:700;color:#ed2024}.section-free{padding-top:0;padding-bottom:0}.banner-box .h3{text-align:center;max-width:30rem;margin:0 auto;font-weight:600}.banner-box .h3 span{color:#ed2024}.banner-box .wcl-response-text{display:none;width:100%;margin-top:10px;color:red;font-weight:500;font-size:15px;text-align:center}.section-faqs .accordion-button{margin-bottom:0}.wcl-development-message{display:block;background-color:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;position:absolute;z-index:100;left:50%;top:50%;transform:translate(-50%,-50%)}.wcl-development-message .wcl-content-wrapper{position:relative;padding:2.1rem 2.6rem 1.5rem}.wcl-development-message .wcl-content-wrapper .close-btn{position:absolute;top:5px;right:9px;font-size:30px;cursor:pointer}@media screen and (max-width:991px){.wcl-development-message{transform:translate(0,-50%);left:40px;right:40px}}.footer .footer-nav{align-items:center}.footer .footer-social a:hover{color:#050708}.section-calculator .channel-box{display:none;padding-top:8rem}@media only screen and (max-width:425px){.section-calculator .channel-box{padding-top:9rem}}.section-calculator .wcl-response-text{display:none;margin-top:10px;color:red;font-weight:500;font-size:15px}.section-calculator+.section-blog-single{padding-top:8rem}.section-downloader .estimate-items,.section-downloader .wcl-video-wrapper{display:none}.section-downloader .wcl-response-text{display:none;margin-top:10px;color:red;font-weight:500;font-size:15px}.section-downloader+.section-blog-single{padding-top:8rem}@media only screen and (max-width:991px){.section-downloader+.section-blog-single{padding-top:0}}.section-downloader .wcl-channel-avatar{margin:0 auto 1rem}.section-downloader .wcl-video-name{text-align:center}.section-downloader .wcl-video-banner .wcl-calculator-preloader-wrapper.banner-preloader{margin:0}.js-content-wrapper .col-xl-3{position:relative}.js-content-wrapper .social-sidebar-wrapper{display:flex;justify-content:flex-end}.js-content-wrapper .wcl-share-block{width:100%;max-width:200px}.js-content-wrapper .wcl-toc-block{width:100%;max-width:250px}.wcl-toc-block .data-title{margin-bottom:2rem;padding-left:15px}.wcl-toc-block .toc-list li{margin-bottom:15px;line-height:1.5}.wcl-toc-block .toc-list a{font-weight:400;font-size:16px;color:#000;display:inline-block;padding:10px 15px;border-radius:10px;font-weight:500}.wcl-toc-block .toc-list a.active,.wcl-toc-block .toc-list a:hover{background-color:rgba(237,32,36,.2)}.js-sidebar-content.sidebar-fixed{position:fixed;top:40px}.js-sidebar-content.sidebar-absolute{position:absolute!important}.wcl-share-block .data-title{margin-bottom:2rem}.wcl-share-block .data-link{display:inline-flex;align-items:center;column-gap:.5rem;font-size:1rem;font-weight:500;color:#212529;transition:all .25s ease-in-out}.wcl-share-block .data-link:active{opacity:.6}.wcl-share-block .data-link:not(:last-child){margin-bottom:1rem}.wcl-share-block #wcl-copy-link-btn{position:relative}.wcl-share-block #wcl-copy-link-btn::before{content:'Copied';position:absolute;top:-65%;right:-15%;background:#43474b;padding:6px 10px;font-size:.6rem;line-height:1;border-radius:20px;color:#fff;display:none}.wcl-share-block #wcl-copy-link-btn::after{content:'';position:absolute;top:-10%;right:0;width:8px;height:8px;background:#43474b;transform:rotate(45deg);display:none}.wcl-share-block #wcl-copy-link-btn.active::after,.wcl-share-block #wcl-copy-link-btn.active::before{display:block}.wcl-share-block .data-link svg{width:25px;height:25px}@media only screen and (max-width:1200px){.js-content-wrapper .wcl-toc-block{max-width:200px}}@media only screen and (max-width:1024px){.section-calculator+.section-blog-single{padding-top:2rem}}@media only screen and (max-width:991px){.js-content-wrapper .js-sidebar-content{max-width:none;position:relative!important;top:0!important}.wcl-toc-block .data-wrapper{margin-bottom:3rem}.wcl-share-block .data-wrapper{display:flex;align-items:center;column-gap:2rem;margin-top:3rem;margin-bottom:2rem}.wcl-toc-block .data-title,.wcl-toc-block .toc-list a{padding:0}.wcl-toc-block .toc-list a.active,.wcl-toc-block .toc-list a:hover{background-color:transparent}.wcl-share-block .data-link:not(:last-child),.wcl-share-block .data-title{margin-bottom:0}}@media only screen and (max-width:768px){.wcl-share-block .data-wrapper{flex-wrap:wrap;justify-content:center;row-gap:1rem}.wcl-share-block .data-title{width:100%;text-align:center}.wcl-share-block #wcl-copy-link-btn.active::after{top:-15%;right:5%}}.wcl-calculator-preloader-wrapper{display:none;margin-top:-30px;margin-bottom:50px;align-items:center;justify-content:center;text-align:center}.wcl-calculator-preloader-wrapper .wcl-calculator-preloader-text{display:block}.wcl-calculator-preloader{text-align:center;display:block}.wcl-calculator-preloader img,.wcl-calculator-preloader svg{width:100px}@media only screen and (max-width:768px){.wcl-calculator-preloader-wrapper{flex-direction:column}.footer .footer-social i{font-size:20px}}.wcl-button-wrapper{display:flex;align-items:center}@media only screen and (max-width:767px){.wcl-share-block #wcl-copy-link-btn.active::before{top:-80%}.wcl-button-wrapper{margin-right:auto;margin-left:auto}}.wcl-button-wrapper.error a,.wcl-button-wrapper.loading a{display:none}.wcl-button-wrapper .wcl-response-text{margin-top:0;margin-left:24px;width:100%;max-width:200px;line-height:1.2}.subtitle-notification{text-align:center;padding-left:20px;padding-right:20px}.section-downloader .video-views-box{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;flex-wrap:wrap;overflow:hidden}.section-downloader .wcl-box-row{display:none;flex-wrap:wrap}.section-downloader .wcl-video-banner{display:none}.section-downloader .video-views-box .box-col:last-child{background:#f4f6f8}.section-downloader .video-views-box .box-col:first-child{flex:0 0 68.8%;max-width:68.8%;padding:3.5rem 2.5rem 0}.video-box{padding:2rem 2rem 1.5rem}@media only screen and (max-width:1024px){.video-box .box-title{justify-content:space-between}}.video-box .video-poster{height:auto}.section-downloader .video-views-box .box-col{flex:1}.section-downloader .video-views-box .estimate-item .number{color:#050708;font-weight:600;font-size:2rem;line-height:3rem}.section-downloader .video-views-box .box-col:nth-child(2){padding:3.5rem 4.6rem 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.section-downloader .video-views-box .estimate-item{margin-bottom:2.5rem;color:#4b4b4b}.section-downloader .video-views-box .top-list{position:relative;margin:0 -4.6rem;margin-top:auto;padding:4.6rem 1.8rem 2.8rem 4.6rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;border-top:1px solid #050708}.link-underline{font-weight:700;color:#050708;font-size:1.125rem;margin-bottom:2.3rem}.link-underline:hover{color:#ed2024}.link-underline:hover::after{border-color:#ed2024}.section-downloader .video-views-box .top-list .black-label{position:absolute;color:#fff;background-color:#050708;text-transform:uppercase;font-weight:700;display:block;font-size:1.125rem;line-height:2rem;top:0;left:0;padding:.3rem 1.1rem}.link-underline::after{content:'';border-bottom:1px solid #050708;display:block;margin-top:-.4rem}.section-downloader .video-views-box .top-list .link-underline:last-child{margin-bottom:0}@media(max-width:1599px){.section-downloader .video-views-box .box-col:nth-child(2){padding:3.5rem 3.6rem 0}.section-downloader .video-views-box .top-list{margin:0 -3.6rem;padding:4.6rem 1.8rem 2.8rem 3.6rem}}@media(max-width:1439px){.section-downloader .video-views-box .box-col:first-child{padding:2.7rem 2.5rem 0}.section-downloader .video-views-box .box-col:nth-child(2){padding:2.7rem 2rem 0}.section-downloader .video-views-box .top-list{margin:0 -2rem;padding:4.6rem 1rem 2.8rem 2rem}.link-underline::after{display:none}.link-underline{text-decoration:underline;margin-bottom:1rem}}@media(max-width:1199px){.section-downloader .video-views-box .estimate-item .number{font-size:1.5rem;line-height:2rem}.section-downloader .video-views-box .estimate-item{margin-bottom:1.5rem}.section-downloader .video-views-box .box-col:nth-child(2){padding:2.7rem 1.5rem 0}.section-downloader .video-views-box .top-list{margin:0 -1.5rem;padding:4.6rem 1rem 2.8rem 1.5rem}}@media(max-width:991px){.section-downloader .video-views-box .box-col:first-child{flex:0 0 100%;max-width:100%}.section-downloader .video-views-box .estimate-item{text-align:center}}@media(max-width:767px){.section-downloader .video-views-box .box-col:first-child{padding:1.5rem 1rem 0}}.section-calculator .buttons,.section-downloader .buttons{display:flex;justify-content:center;column-gap:1rem;margin-bottom:2.5rem}.section-calculator .buttons{width:100%;margin-bottom:0}@media only screen and (max-width:991px){.section-calculator .buttons,.section-downloader .buttons{flex-direction:column;row-gap:1rem}}.wcl-channel-share{display:flex;justify-content:center;margin-bottom:2rem}.wcl-channel-share .data-link svg{width:25px;height:25px;width:20px;height:20px;transition:all .25s ease-in-out;opacity:.3}.wcl-channel-share .data-wrapper{display:flex;justify-content:center;align-items:center;column-gap:7px;padding:1px;width:fit-content;border:2px solid #ddd;border-radius:100px}.wcl-channel-share .data-link:first-child{margin-left:3px}.wcl-channel-share .data-link:last-child{margin-right:12px}.wcl-channel-share .data-link svg:hover{opacity:1}.section-free .wcl-calculator-preloader-wrapper{margin-right:auto;margin-bottom:0;margin-left:auto}.section-free .wcl-response-text{display:none;width:100%;margin-top:10px;color:red;font-weight:500;font-size:15px;text-align:center}.section-free .wcl-email-subscribers-input{border:1px solid transparent}.wcl-section-analytics .video-views-box{display:none}.wcl-section-analytics .video-views-box .video-tags .tags>*{transition:all .25s ease-in-out}.wcl-section-analytics.section-calculator .video-views-box .box-col{padding:2rem}.wcl-section-analytics.section-calculator .video-views-box .top-list{margin:0 -2rem}.wcl-section-analytics.section-calculator .video-cards-box{margin-bottom:2rem}.wcl-section-analytics .channel-avatar{margin-left:unset}.badge-red{border-color:#ed2024;color:#ed2024}.badge-green{border-color:#3c9b37;color:#3c9b37}.wcl-section-analytics .wcl-video-description.hidden{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}.wcl-section-analytics .wcl-sidebar .wcl-response-text{margin-top:0;margin-bottom:2rem}.wcl-section-analytics .wcl-channel-share{display:block;margin-bottom:1rem}.wcl-section-analytics .wcl-channel-share .data-wrapper{justify-content:start}.wcl-section-analytics .buttons{display:none;padding-top:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(5,7,8,.1)}.wcl-section-analytics .wcl-sidebar-video-card>*{pointer-events:none}.wcl-section-analytics .badge-outline-red{flex:0 0 100%;max-width:100%;margin-bottom:.3rem}.wcl-section-check-region .wcl-country-wrapper{background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);border-radius:1rem;padding:1rem;margin-bottom:2rem}.wcl-section-check-region .wcl-country-wrapper input{margin-bottom:1rem}.wcl-section-check-region .wcl-country-wrapper ul{height:420px;max-height:420px;overflow:auto;padding:0 1rem}.wcl-section-check-region .wcl-country-wrapper ul li{font-weight:500;font-size:1rem}.wcl-section-check-region.section-calculator .video-views-box{display:none}.wcl-section-check-region.section-calculator .video-views-box .box-col{padding:2rem}.wcl-section-check-region.section-calculator .video-views-box .top-list{margin:0 -2rem}.wcl-section-check-region.section-calculator .video-cards-box{margin-bottom:2rem}.wcl-section-check-region .wcl-video-name{text-align:center}.wcl-title-creator .search-form .btn{position:relative;inset:unset;padding:0 3.7rem;height:4rem;width:unset;margin-bottom:1rem}.wcl-title-creator .video-views-box{padding:2rem;background:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);-moz-border-radius:1rem;-webkit-border-radius:1rem;border-radius:1rem;display:none;flex-wrap:wrap;overflow:hidden}.section-analytics .wcl-response-text{display:none;margin-top:10px;color:red;font-weight:500;font-size:15px}.wcl-title-creator .wcl-create-title-response{width:100%;white-space:pre}.footer .footer-menu{display:block}.footer .footer-menu li{margin-right:0;margin-left:0}.footer .footer-menu .menu-item.empty-link-item>a{margin-bottom:0;height:0}.footer .footer-menu li:hover a{color:inherit}.footer .footer-social{justify-content:space-between;column-gap:1.5rem;margin-top:1.5rem}@media only screen and (max-width:1366px){.footer .footer-social{column-gap:1rem}}@media only screen and (max-width:1200px){.footer .footer-social{flex-wrap:wrap}}@media only screen and (max-width:991px){.footer .footer-menu{margin-bottom:0}.footer .footer-logo{margin-bottom:1.5rem}.footer .footer-social{justify-content:center;margin-bottom:1.5rem;flex-wrap:nowrap}}.footer .footer-social a{margin-right:0;margin-left:0;flex:auto;justify-content:center}@media only screen and (max-width:991px){.footer .footer-social a{flex:0 0 1.5rem}}.footer-menu .menu-list .menu-item-has-children>a{pointer-events:none}.footer-menu .menu-list{display:flex;justify-content:space-between;column-gap:20px;row-gap:20px}@media only screen and (max-width:991px){.footer-menu .menu-list{flex-wrap:wrap}}.footer-menu .menu-list>.menu-item{width:100%;max-width:fit-content}.footer-menu .menu-list>.menu-item>a{margin-bottom:25px;color:#050708;font-size:18px;font-weight:700;line-height:1.5}@media only screen and (max-width:576px){.footer-menu .menu-list{row-gap:40px}.footer-menu .menu-list>.menu-item{max-width:100%;display:flex;flex-direction:column;align-items:center}.footer-menu .menu-list .sub-menu{width:100%;display:flex;flex-direction:column;align-items:center}}.footer-menu .menu-list .sub-menu>.menu-item{transition:all .25s ease-in-out}.footer-menu .menu-list .sub-menu>.menu-item a:hover{color:#ed2024}.footer-menu .menu-list .sub-menu>.menu-item:not(:last-child){margin-bottom:18px}.footer-menu .menu-list a{width:fit-content;font-family:montserrat,sans-serif;font-weight:400;font-size:16px;line-height:1.5;color:#050708}.wcl-roas-calculator{margin-bottom:2rem}.wcl-roas-calculator .roas-submit{margin-left:auto}.wcl-roas-calculator .roas-submit .btn{color:#fff;border-radius:.5rem;letter-spacing:1px;padding:11px 23px;line-height:16px;font-size:13px;height:3rem}.wcl-roas-calculator .roas-submit .btn:hover{color:#ed2024}.wcl-roas-calculator .roas-response-text{margin-top:10px;margin-right:auto;margin-left:auto;display:none;color:red;font-weight:500;font-size:15px;text-align:center}.wcl-best-time-post-video:not(:last-child){margin-bottom:2rem}.wcl-best-time-post-video .data-wrapper{margin-bottom:25px;background-color:#fff;box-shadow:0 20px 40px rgba(0,0,0,.1);border-radius:1.3rem;padding:2.7rem;text-align:center}.wcl-best-time-post-video .data-title{margin-bottom:2rem}.wcl-best-time-post-video .data-submit .btn{color:#fff;border-radius:.5rem;letter-spacing:1px;padding:11px 23px;line-height:16px;font-size:13px;height:3rem}.wcl-best-time-post-video .data-submit .btn:hover{color:#ed2024}.wcl-best-time-post-video .data-time-plan{display:block;position:relative;width:100%;height:100%;border-radius:1.3rem;background-color:#fff;box-shadow:0 0 18px 0 rgba(0,0,0,.12);overflow:hidden;text-align:center;opacity:0;height:0;visibility:hidden;transition:all .25s ease-in-out}.wcl-best-time-post-video .data-time-plan.show{height:fit-content;opacity:1;visibility:visible;margin-bottom:25px}@media only screen and (max-width:1440px){.wcl-best-time-post-video .data-wrapper{padding:1.5rem}}.wcl-preloader{display:none;margin:50px auto;align-items:center;justify-content:center;text-align:center;width:100px}.wcl-best-time-video-pblish-error{display:none;margin-top:20px;color:#ed2024}.wcl-best-time-video-pblish-error.active{display:block}.section-login .owl-carousel{margin-top:5rem}.section-login .owl-dots{display:flex;align-items:center;justify-content:center;margin-top:5.45rem}.section-login .owl-dots .owl-dot{border:2px solid transparent;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;margin:0 .5rem;display:flex;justify-content:center;align-items:center;width:2rem;height:2rem;transition:.4s;background:0 0}.section-login .owl-dots .owl-dot::before{content:'';width:.875rem;height:.875rem;background-color:rgba(5,7,8,.1);-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;transition:.3s}.section-login .owl-dots .owl-dot:hover::before{background-color:#ed2024}.section-login .owl-dots .owl-dot.active{border:2px solid #ed2024;background-color:transparent}.section-login .owl-dots .owl-dot.active::before{opacity:0}@media only screen and (max-width:1023px){.section-login .owl-dots{margin-top:2.5rem}}@media only screen and (max-width:767px){.section-login .owl-dots .owl-dot{margin:0 .15rem;width:1.5rem;height:1.5rem}.section-login .owl-dots .owl-dot::before{width:.625rem;height:.625rem;flex:0 0 .625rem}.section-login .owl-dots{margin-top:1rem}}.wcl-payment-page .wcl-upsale-offer .btn strong{pointer-events:none}.wcl-payment-page .wcl-form-response{margin-top:0;margin-bottom:4rem}@media only screen and (max-width:991px){.wcl-payment-page .container>.row{flex-direction:column-reverse}.wcl-payment-page .checkout-box{margin-top:3rem;margin-bottom:0}}@media only screen and (max-width:767px){.wcl-payment-page .wcl-form-response{margin-bottom:3rem}}.wcl-checking-payment{opacity:.5;position:relative;pointer-events:none}.wcl-checking-payment .wcl-preloader{position:absolute;top:50%;left:50%;display:block;transform:translate(-50%,-50%);z-index:10}.wcl-order-track .wcl-error-message{display:none;width:100%;margin-top:1rem;color:#ed2024;font:400 1.125rem/1.5rem Montserrat,sans-serif;text-align:center}.wcl-order-track .form-control{border:1px solid transparent}.wcl-order-steps{display:none;padding-bottom:0}.wcl-order-steps .wcl-order-info p{margin-bottom:0}@media(max-width:767px){.section-rank-tracker .search-form .btn,.section-subtitles-downloader .search-form .btn,.section-thumbnail-downloader .search-form .btn,.wcl-section-analytics .search-form .btn,.wcl-section-calculator .search-form .btn,.wcl-section-check-region .search-form .btn{position:relative;width:100%;height:3.75rem;margin-top:1rem;inset:0;left:0}}@font-face{font-family:montserrat;font-style:normal;font-weight:100;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:200;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200.woff) format('woff')}@font-face{font-display:swap;font-family:montserrat;font-style:normal;font-weight:300;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:400;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:500;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:600;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:700;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:800;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800.woff) format('woff')}@font-face{font-family:montserrat;font-style:normal;font-weight:900;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:100;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-100italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:200;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-200italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:300;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:400;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:500;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:600;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:700;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:800;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-800italic.woff) format('woff')}@font-face{font-family:montserrat;font-style:italic;font-weight:900;font-display:swap;src:local(''),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900italic.woff2) format('woff2'),url(https://views4you.com/wp-content/themes/views4you_theme/fonts/montserrat/montserrat-v25-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-900italic.woff) format('woff')}</style>
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="pingback" href="https://views4you.com/xmlrpc.php" />
<meta name="msvalidate.01" content="9CAA5F77E4828E93B327B2D824344FF6" />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

<meta name="description" content="The YouTube thumbnail downloader allows you to grab the YouTube videos&#039; thumbnails and YouTube banners you want for free." />
<link rel="canonical" href="https://views4you.com/youtube-thumbnail-downloader/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="YouTube Thumbnail Downloader" />
<meta property="og:description" content="The YouTube thumbnail downloader allows you to grab the YouTube videos&#039; thumbnails and YouTube banners you want for free." />
<meta property="og:url" content="https://views4you.com/youtube-thumbnail-downloader/" />
<meta property="og:site_name" content="Views4You" />
<meta property="article:publisher" content="https://www.facebook.com/views4youofficial/" />
<meta property="article:modified_time" content="2023-01-06T10:17:24+00:00" />
<meta property="og:image" content="https://views4you.com/wp-content/uploads/2023/01/views4yousearch.png" />
<meta property="og:image:width" content="1391" />
<meta property="og:image:height" content="478" />
<meta property="og:image:type" content="image/png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@views4_you" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://views4you.com/youtube-thumbnail-downloader/","url":"https://views4you.com/youtube-thumbnail-downloader/","name":"YouTube Thumbnail Downloader - Views4You","isPartOf":{"@id":"https://views4you.com/#website"},"datePublished":"2022-09-01T13:43:28+00:00","dateModified":"2023-01-06T10:17:24+00:00","description":"The YouTube thumbnail downloader allows you to grab the YouTube videos' thumbnails and YouTube banners you want for free.","breadcrumb":{"@id":"https://views4you.com/youtube-thumbnail-downloader/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://views4you.com/youtube-thumbnail-downloader/"]}]},{"@type":"BreadcrumbList","@id":"https://views4you.com/youtube-thumbnail-downloader/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://views4you.com/"},{"@type":"ListItem","position":2,"name":"YouTube Thumbnail Downloader"}]},{"@type":"WebSite","@id":"https://views4you.com/#website","url":"https://views4you.com/","name":"Views4You","description":"Organic YouTube Growth Service","publisher":{"@id":"https://views4you.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://views4you.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://views4you.com/#organization","name":"Views4You","url":"https://views4you.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://views4you.com/#/schema/logo/image/","url":"https://views4you.com/wp-content/uploads/2022/11/ogmeta.png","contentUrl":"https://views4you.com/wp-content/uploads/2022/11/ogmeta.png","width":350,"height":350,"caption":"Views4You"},"image":{"@id":"https://views4you.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/views4youofficial/","https://twitter.com/views4_you","https://www.youtube.com/channel/UCu5bLPaLL9Ihad_1nNOxKjw","https://www.linkedin.com/company/views4you/","https://www.pinterest.com/views4youofficial/"]}]}</script>

<link rel='dns-prefetch' href='//static.cloudflareinsights.com' />
<link rel='dns-prefetch' href='//cdn.livechatinc.com' />
<link rel='dns-prefetch' href='//api.livechatinc.com' />
<link rel='dns-prefetch' href='//secure.livechatinc.com' />
<style></style>
<style id='global-styles-inline-css'></style>
<style id='rocket-lazyload-inline-css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://views4you.com/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}
</style>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js' defer></script>
<script id='jquery-cookie-js-extra'>
var affwp_scripts = {"ajaxurl":"https:\/\/views4you.com\/wp-admin\/admin-ajax.php"};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/plugins/affiliate-wp/assets/js/jquery.cookie.min.js?ver=1.4.0' id='jquery-cookie-js' defer></script>
<script id='affwp-tracking-js-extra'>
var affwp_debug_vars = {"integrations":[],"version":"2.12.0","currency":"USD","ref_cookie":"affwp_ref","visit_cookie":"affwp_ref_visit_id","campaign_cookie":"affwp_campaign"};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/plugins/affiliate-wp/assets/js/tracking.min.js?ver=2.12.0' id='affwp-tracking-js' defer></script>
<link rel="alternate" type="application/json+oembed" href="https://views4you.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fviews4you.com%2Fyoutube-thumbnail-downloader%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://views4you.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fviews4you.com%2Fyoutube-thumbnail-downloader%2F&#038;format=xml" />
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@graph":[{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Tools","url":"#"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Money Calculator","url":"https:\/\/views4you.com\/youtube-money-calculator\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Rank Tracker","url":"https:\/\/views4you.com\/youtube-rank-tracker\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Thumbnail Downloader","url":"https:\/\/views4you.com\/youtube-thumbnail-downloader\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Video Analytics","url":"https:\/\/views4you.com\/youtube-video-analytics\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Title Generator","url":"https:\/\/views4you.com\/youtube-title-generator\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Restrictions Checker","url":"https:\/\/views4you.com\/youtube-restrictions-checker\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Subtitles Downloader","url":"https:\/\/views4you.com\/youtube-subtitles-downloader\/"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","id":"site-navigation","name":"Contact","url":"https:\/\/views4you.com\/contact-us\/"}]}</script> <script type="rocketlazyloadscript" data-rocket-type="text/javascript">
		var AFFWP = AFFWP || {};
		AFFWP.referral_var = 'ref';
		AFFWP.expiration = 90;
		AFFWP.debug = 0;


		AFFWP.referral_credit_last = 0;
		</script>
<style id="wpsp-style-frontend"></style>
<link rel="icon" href="https://views4you.com/wp-content/uploads/2022/08/views4you.png" sizes="32x32" />
<link rel="icon" href="https://views4you.com/wp-content/uploads/2022/08/views4you.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://views4you.com/wp-content/uploads/2022/08/views4you.png" />
<meta name="msapplication-TileImage" content="https://views4you.com/wp-content/uploads/2022/08/views4you.png" />
<style id="wp-custom-css"></style>
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript>
</head>
<body data-rsssl=1 class="page-template-default page page-id-1261 wcl-test wp-schema-pro-2.7.4">

<div class="page-wrap">

<header class="header">
<div class="container">
<a href="/" class="logo">
<img width="414" height="80" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20414%2080'%3E%3C/svg%3E" alt="logo" data-lazy-src="https://views4you.com/wp-content/uploads/2022/08/logo@2x.png"><noscript><img width="414" height="80" src="https://views4you.com/wp-content/uploads/2022/08/logo@2x.png" alt="logo"></noscript>
</a>
<a href="#" class="menu-btn" title="Menu">
<span></span>
<span></span>
<span></span>
</a>
<div class="header-nav">
<nav class="menu">
<div>
<ul id="menu-header-menu-before" class="menu-list menu-before"><li id="menu-item-8180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-8180"><a href="https://views4you.com/"><span style="animation-delay:25ms">H</span><span style="animation-delay:50ms">o</span><span style="animation-delay:75ms">m</span><span style="animation-delay:100ms">e</span></a></li>
</ul> </div>

<div class="menu-outer">
<ul id="menu-header-menu-center" class="menu-inner"><li id="menu-item-8181" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8181"><a href="https://views4you.com/buy-youtube-views/">Buy YouTube Views</a></li>
<li id="menu-item-8183" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8183"><a href="https://views4you.com/buy-youtube-likes/">Buy YouTube Likes</a></li>
<li id="menu-item-8182" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8182"><a href="https://views4you.com/buy-youtube-subscribers/">Buy YouTube Subscribers</a></li>
</ul>
<span></span>
</div>

<div>
<ul id="menu-header-menu-after" class="menu-list menu-after"><li id="menu-item-8189" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-8189"><a href="#"><span style="animation-delay:25ms">T</span><span style="animation-delay:50ms">o</span><span style="animation-delay:75ms">o</span><span style="animation-delay:100ms">l</span><span style="animation-delay:125ms">s</span></a>
<div class='sub-menu-wrapper'><ul class="sub-menu">
<li id="menu-item-8190" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8190"><a href="https://views4you.com/youtube-money-calculator/">Money Calculator</a></li>
<li id="menu-item-9115" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9115"><a href="https://views4you.com/youtube-rank-tracker/">Rank Tracker</a></li>
<li id="menu-item-8192" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1261 current_page_item menu-item-8192"><a href="https://views4you.com/youtube-thumbnail-downloader/" aria-current="page">Thumbnail Downloader</a></li>
<li id="menu-item-8194" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8194"><a href="https://views4you.com/youtube-video-analytics/">Video Analytics</a></li>
<li id="menu-item-8193" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8193"><a href="https://views4you.com/youtube-title-generator/">Title Generator</a></li>
<li id="menu-item-8195" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8195"><a href="https://views4you.com/youtube-restrictions-checker/">Restrictions Checker</a></li>
<li id="menu-item-8191" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8191"><a href="https://views4you.com/youtube-subtitles-downloader/">Subtitles Downloader</a></li>
</ul></div>
</li>
<li id="menu-item-8173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8173"><a href="https://views4you.com/contact-us/"><span style="animation-delay:25ms">C</span><span style="animation-delay:50ms">o</span><span style="animation-delay:75ms">n</span><span style="animation-delay:100ms">t</span><span style="animation-delay:125ms">a</span><span style="animation-delay:150ms">c</span><span style="animation-delay:175ms">t</span></a></li>
</ul> </div>

</nav>
</div>
</div>
</header>

<main class="main-content">
<section class="section-analytics section-downloader section-thumbnail-downloader">
<div class="container">
<div class="title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.25s">
<h1 class="h2">YouTube Thumbnail Downloader</h1>
<div>
<p data-pm-slice="1 1 []">The free online tool, <strong><span data-color="var(--green-10)">YouTube Thumbnail Downloader,</span></strong> is the easiest way to grab YouTube video thumbnails in HD quality. Also, you can use this tool to <strong>Download YouTube Banners</strong> for free. To download the video thumbnail, enter the video URL; to download the channel banner enter the channel URL.</p>
</div>
<form action="#" class="search-form">
<input type="search" placeholder="Enter YouTube URL here" name="channel-url" class="form-control" value="">

<input type="hidden" id="wcl_youtube_thumbnail_downloader_wpnonce" name="wcl_youtube_thumbnail_downloader_wpnonce" value="a98e437a21" /><input type="hidden" name="_wp_http_referer" value="/youtube-thumbnail-downloader/" />
<button type="submit" class="btn btn-red">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Search</strong>
</button>
</form>
<div class="wcl-response-text"></div>
</div>
<div class="wcl-calculator-preloader-wrapper">
<div class="wcl-calculator-preloader">
<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
<path fill="#666" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>

</div>
<div class="video-views-box wcl-video-wrapper">
<div class="wcl-box-row wcl-box-row-video">
<div class="box-col">
<div class="row">
<div class="col col-12">
<div class="video-box wcl-video-fullhd">
<div class="video-poster wow fadeIn" data-wow-duration="1s" data-wow-delay="0.25s">
<a href="#!" class="js-thumbnail-link" data-quality="fullhd"><img src="" alt="video-poster"></a>
</div>
<div class="box-title">
<h3>Video Thumbnail</h3>
<div class="wcl-button-wrapper">
<a href="#" class="btn btn-black js-thumbnail-link" data-quality="fullhd">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Download</strong>
</a>
</div>
</div>
</div>
<div class="video-box wcl-video-banner">
<div class="wcl-calculator-preloader-wrapper banner-preloader">
<div class="wcl-calculator-preloader">
<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
<path fill="#666" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>

</div>
<div class="data-wrapper">
<div class="video-poster wow fadeIn" data-wow-duration="1s" data-wow-delay="0.25s">
<a href="#!" class="js-banner-link"><img src="" alt="video-banner"></a>
</div>
<div class="box-title">
<h3>Channel's Banner</h3>
<div class="wcl-button-wrapper">
<a href="#" class="btn btn-black js-banner-link">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Download</strong>
</a>
</div>
</div>
</div>
</div>
<div class="buttons">
<a href="https://views4you.com/buy-youtube-subscribers/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="0.75s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Boost subscribers</strong>
</a>
<a href="https://views4you.com/buy-youtube-likes/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="1s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy likes</strong>
</a>
<a href="https://views4you.com/buy-youtube-views/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="1.25s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy views</strong>
</a>
</div>
</div>
</div>
</div>
<div class="box-col">
<div class="wcl-calculator-preloader-wrapper estimate-items-preloader">
<div class="wcl-calculator-preloader">
<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
<path fill="#666" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>
</div>
<div class="estimate-items">
<div class="channel-avatar wcl-channel-avatar">
<img src="" alt="avatar">
</div>
<div class="estimate-item wcl-video-name">
<h4 class="name">Name of Video</h4>
<div class="wcl-channel-share" data-page="YouTube Thumbnail Downloader">
<div class="data-wrapper">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="30" height="30" rx="15" fill="#ED2124" />
<g clip-path="url(#clip0_103_27)">
<path d="M16.2656 8.02484C16.0406 8.13734 15.8719 8.30297 15.775 8.51546C15.7031 8.67171 15.7031 8.68422 15.6938 10.0967L15.6844 11.5217L15.4438 11.5436C14.1938 11.6561 12.8781 12.0592 11.7969 12.6623C10.35 13.4686 9.13126 14.6498 8.30626 16.0405C7.65313 17.1405 7.25626 18.2842 7.07501 19.5936C6.99376 20.1592 6.99376 21.5217 7.07188 21.703C7.18438 21.9561 7.38126 22.078 7.64376 22.0561C7.87501 22.0373 7.99376 21.9342 8.20938 21.5686C8.70001 20.7248 9.26563 19.9998 9.86563 19.4373C11.2625 18.1248 12.9563 17.278 14.7656 16.9873C15.0281 16.9467 15.5813 16.8748 15.6656 16.8748C15.6781 16.8748 15.6875 17.5186 15.6875 18.3061C15.6875 19.9155 15.6906 19.9405 15.9063 20.2155C16.1781 20.5592 16.6719 20.6748 17.0781 20.4905C17.2469 20.4123 17.5344 20.1342 20.0375 17.6311C23.1406 14.528 22.9844 14.7061 22.9844 14.2655C22.9844 13.8248 23.1781 14.0467 20.0656 10.928C17.9469 8.80297 17.2281 8.09984 17.1094 8.04046C16.9906 7.97796 16.8938 7.95609 16.7031 7.94671C16.475 7.93421 16.4344 7.94359 16.2656 8.02484Z" fill="white" />
</g>
<defs>
<clipPath id="clip0_103_27">
<rect width="16" height="16" fill="white" transform="translate(7 7)" />
</clipPath>
</defs>
</svg>
<a href="https://twitter.com/share?text=YouTube Thumbnail Downloader&url=" class="data-link wcl-channel-share-twitter" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#55ACEE" />
<path d="M9.7005 8.12813L9.72149 8.47415L9.37175 8.43178C8.09869 8.26936 6.98652 7.71855 6.04222 6.79347L5.58057 6.33446L5.46166 6.67342C5.20984 7.42902 5.37072 8.22699 5.89533 8.76368C6.17513 9.06027 6.11217 9.10264 5.62953 8.9261C5.46166 8.8696 5.31477 8.82723 5.30078 8.84842C5.25181 8.89785 5.41969 9.54046 5.55259 9.79468C5.73445 10.1478 6.10518 10.4938 6.51088 10.6986L6.85362 10.861L6.44792 10.8681C6.05621 10.8681 6.04222 10.8751 6.08419 11.0234C6.22409 11.4824 6.77668 11.9697 7.39222 12.1815L7.8259 12.3298L7.44818 12.5558C6.88859 12.8806 6.23108 13.0642 5.57357 13.0784C5.25881 13.0854 5 13.1137 5 13.1349C5 13.2055 5.85336 13.6009 6.35 13.7563C7.83989 14.2153 9.60957 14.0176 10.9386 13.2337C11.8829 12.6759 12.8272 11.5672 13.2678 10.4938C13.5057 9.92179 13.7435 8.87666 13.7435 8.37528C13.7435 8.05045 13.7645 8.00808 14.1562 7.61968C14.387 7.39371 14.6039 7.14655 14.6458 7.07593C14.7158 6.94176 14.7088 6.94176 14.352 7.06181C13.7575 7.27366 13.6735 7.24541 13.9673 6.92764C14.1842 6.70166 14.443 6.29209 14.443 6.17204C14.443 6.15085 14.338 6.18616 14.2191 6.24972C14.0932 6.32033 13.8134 6.42626 13.6036 6.48981L13.2259 6.60986L12.8831 6.37683C12.6943 6.24972 12.4285 6.10848 12.2886 6.06611C11.9318 5.96725 11.3862 5.98137 11.0645 6.09436C10.1901 6.41214 9.63755 7.23129 9.7005 8.12813Z" fill="white" />
</svg>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=" class="data-link wcl-channel-share-facebook" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#3B5998" />
<path d="M11.0423 15.8798V10.4393H12.5442L12.7432 8.56442H11.0423L11.0449 7.62604C11.0449 7.13706 11.0913 6.87505 11.7937 6.87505H12.7326V5H11.2305C9.42633 5 8.7913 5.9095 8.7913 7.43899V8.56463H7.66669V10.4395H8.7913V15.8798H11.0423Z" fill="white" />
</svg>
</a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=" class="data-link wcl-channel-share-linkedin" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#0077B5" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.21617 6.17612C7.21617 6.82992 6.72404 7.35306 5.93385 7.35306H5.91937C5.15854 7.35306 4.66669 6.82992 4.66669 6.17612C4.66669 5.5085 5.17352 5 5.94878 5C6.72404 5 7.20146 5.5085 7.21617 6.17612ZM7.06691 8.28244V15.0915H4.80069V8.28244H7.06691ZM15.2397 15.0915L15.2398 11.1874C15.2398 9.09594 14.1218 8.12255 12.6305 8.12255C11.4273 8.12255 10.8886 8.78344 10.5878 9.24706V8.28262H8.32131C8.35118 8.92154 8.32131 15.0917 8.32131 15.0917H10.5878V11.2889C10.5878 11.0854 10.6025 10.8824 10.6624 10.7367C10.8262 10.3302 11.1991 9.90926 11.8252 9.90926C12.6456 9.90926 12.9735 10.5336 12.9735 11.4486V15.0915H15.2397Z" fill="white" />
</svg>
</a>
</div>
</div>
</div>
<div class="estimate-item wcl-video-views">
<div class="number">0</div>
<p>Total views</p>
</div>
<div class="estimate-item wcl-video-likes">
<div class="number">0</div>
<p>Total likes</p>
</div>
<div class="estimate-item wcl-video-comments">
<div class="number">0</div>
<p>Total comments</p>
</div>
<div class="estimate-item wcl-video-length">
<div class="number">0</div>
<p>Video length</p>
</div>
</div>
<div class="top-list">
<div class="black-label">FREE YOUTUBE TOOLS</div>
<a href="https://views4you.com/youtube-money-calculator/" class="link-underline">YouTube Money Calculator</a>
<a href="https://views4you.com/youtube-thumbnail-downloader/" class="link-underline">YouTube Thumbnail Downloader</a>
<a href="https://views4you.com/youtube-video-analytics/" class="link-underline"> YouTube Video Analytics</a>
<a href="https://views4you.com/youtube-title-generator/" class="link-underline">YouTube Title Generator</a>
<a href="https://views4you.com/youtube-restrictions-checker/" class="link-underline">YouTube Restrictions Checker</a>
<a href="https://views4you.com/youtube-subtitles-downloader/" class="link-underline">YouTube Subtitles Downloader</a>
<a href="https://views4you.com/youtube-rank-tracker/" class="link-underline">YouTube Rank Tracker</a>
</div>
</div>
</div>
<div class="wcl-box-row wcl-box-row-channel">
<div class="box-col">
<div class="row">
<div class="col col-12">
 <div class="video-box wcl-video-banner">
<div class="wcl-calculator-preloader-wrapper banner-preloader">
<div class="wcl-calculator-preloader">
<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
<path fill="#666" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>

</div>
<div class="data-wrapper">
<div class="video-poster wow fadeIn" data-wow-duration="1s" data-wow-delay="0.25s">
<a href="#!" class="js-banner-link"><img src="" alt="video-banner"></a>
</div>
<div class="box-title">
<h3>Channel's Banner</h3>
<div class="wcl-button-wrapper">
<a href="#" class="btn btn-black js-banner-link">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Download</strong>
</a>
</div>
</div>
</div>
</div>
<div class="buttons">
<a href="https://views4you.com/buy-youtube-subscribers/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="0.75s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Boost subscribers</strong>
</a>
<a href="https://views4you.com/buy-youtube-likes/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="1s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy likes</strong>
</a>
<a href="https://views4you.com/buy-youtube-views/" class="btn btn-red wow bounceIn" data-wow-duration="1s" data-wow-delay="1.25s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy views</strong>
</a>
</div>
</div>
</div>
</div>
<div class="box-col">
<div class="wcl-calculator-preloader-wrapper estimate-items-preloader">
<div class="wcl-calculator-preloader">
<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
<path fill="#666" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>
</div>
<div class="estimate-items">
<div class="channel-avatar wcl-channel-avatar">
<img src="" alt="avatar">
</div>
<div class="estimate-item wcl-video-name">
<h4 class="name">Name of Video</h4>
<div class="wcl-channel-share" data-page="YouTube Thumbnail Downloader">
<div class="data-wrapper">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="30" height="30" rx="15" fill="#ED2124" />
<g clip-path="url(#clip0_103_27)">
<path d="M16.2656 8.02484C16.0406 8.13734 15.8719 8.30297 15.775 8.51546C15.7031 8.67171 15.7031 8.68422 15.6938 10.0967L15.6844 11.5217L15.4438 11.5436C14.1938 11.6561 12.8781 12.0592 11.7969 12.6623C10.35 13.4686 9.13126 14.6498 8.30626 16.0405C7.65313 17.1405 7.25626 18.2842 7.07501 19.5936C6.99376 20.1592 6.99376 21.5217 7.07188 21.703C7.18438 21.9561 7.38126 22.078 7.64376 22.0561C7.87501 22.0373 7.99376 21.9342 8.20938 21.5686C8.70001 20.7248 9.26563 19.9998 9.86563 19.4373C11.2625 18.1248 12.9563 17.278 14.7656 16.9873C15.0281 16.9467 15.5813 16.8748 15.6656 16.8748C15.6781 16.8748 15.6875 17.5186 15.6875 18.3061C15.6875 19.9155 15.6906 19.9405 15.9063 20.2155C16.1781 20.5592 16.6719 20.6748 17.0781 20.4905C17.2469 20.4123 17.5344 20.1342 20.0375 17.6311C23.1406 14.528 22.9844 14.7061 22.9844 14.2655C22.9844 13.8248 23.1781 14.0467 20.0656 10.928C17.9469 8.80297 17.2281 8.09984 17.1094 8.04046C16.9906 7.97796 16.8938 7.95609 16.7031 7.94671C16.475 7.93421 16.4344 7.94359 16.2656 8.02484Z" fill="white" />
</g>
<defs>
<clipPath id="clip0_103_27">
<rect width="16" height="16" fill="white" transform="translate(7 7)" />
</clipPath>
</defs>
</svg>
<a href="https://twitter.com/share?text=YouTube Thumbnail Downloader&url=" class="data-link wcl-channel-share-twitter" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#55ACEE" />
<path d="M9.7005 8.12813L9.72149 8.47415L9.37175 8.43178C8.09869 8.26936 6.98652 7.71855 6.04222 6.79347L5.58057 6.33446L5.46166 6.67342C5.20984 7.42902 5.37072 8.22699 5.89533 8.76368C6.17513 9.06027 6.11217 9.10264 5.62953 8.9261C5.46166 8.8696 5.31477 8.82723 5.30078 8.84842C5.25181 8.89785 5.41969 9.54046 5.55259 9.79468C5.73445 10.1478 6.10518 10.4938 6.51088 10.6986L6.85362 10.861L6.44792 10.8681C6.05621 10.8681 6.04222 10.8751 6.08419 11.0234C6.22409 11.4824 6.77668 11.9697 7.39222 12.1815L7.8259 12.3298L7.44818 12.5558C6.88859 12.8806 6.23108 13.0642 5.57357 13.0784C5.25881 13.0854 5 13.1137 5 13.1349C5 13.2055 5.85336 13.6009 6.35 13.7563C7.83989 14.2153 9.60957 14.0176 10.9386 13.2337C11.8829 12.6759 12.8272 11.5672 13.2678 10.4938C13.5057 9.92179 13.7435 8.87666 13.7435 8.37528C13.7435 8.05045 13.7645 8.00808 14.1562 7.61968C14.387 7.39371 14.6039 7.14655 14.6458 7.07593C14.7158 6.94176 14.7088 6.94176 14.352 7.06181C13.7575 7.27366 13.6735 7.24541 13.9673 6.92764C14.1842 6.70166 14.443 6.29209 14.443 6.17204C14.443 6.15085 14.338 6.18616 14.2191 6.24972C14.0932 6.32033 13.8134 6.42626 13.6036 6.48981L13.2259 6.60986L12.8831 6.37683C12.6943 6.24972 12.4285 6.10848 12.2886 6.06611C11.9318 5.96725 11.3862 5.98137 11.0645 6.09436C10.1901 6.41214 9.63755 7.23129 9.7005 8.12813Z" fill="white" />
</svg>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=" class="data-link wcl-channel-share-facebook" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#3B5998" />
<path d="M11.0423 15.8798V10.4393H12.5442L12.7432 8.56442H11.0423L11.0449 7.62604C11.0449 7.13706 11.0913 6.87505 11.7937 6.87505H12.7326V5H11.2305C9.42633 5 8.7913 5.9095 8.7913 7.43899V8.56463H7.66669V10.4395H8.7913V15.8798H11.0423Z" fill="white" />
</svg>
</a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=" class="data-link wcl-channel-share-linkedin" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z" fill="#0077B5" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.21617 6.17612C7.21617 6.82992 6.72404 7.35306 5.93385 7.35306H5.91937C5.15854 7.35306 4.66669 6.82992 4.66669 6.17612C4.66669 5.5085 5.17352 5 5.94878 5C6.72404 5 7.20146 5.5085 7.21617 6.17612ZM7.06691 8.28244V15.0915H4.80069V8.28244H7.06691ZM15.2397 15.0915L15.2398 11.1874C15.2398 9.09594 14.1218 8.12255 12.6305 8.12255C11.4273 8.12255 10.8886 8.78344 10.5878 9.24706V8.28262H8.32131C8.35118 8.92154 8.32131 15.0917 8.32131 15.0917H10.5878V11.2889C10.5878 11.0854 10.6025 10.8824 10.6624 10.7367C10.8262 10.3302 11.1991 9.90926 11.8252 9.90926C12.6456 9.90926 12.9735 10.5336 12.9735 11.4486V15.0915H15.2397Z" fill="white" />
</svg>
</a>
</div>
</div>
</div>
<div class="estimate-item wcl-video-views">
<div class="number">0</div>
<p>Total views</p>
</div>
<div class="estimate-item wcl-creation-date">
<div class="number">0</div>
<p>Channel's Creation Date</p>
</div>
<div class="estimate-item wcl-country">
<div class="number">0</div>
<p>Channel's Country</p>
</div>
</div>
<div class="top-list">
<div class="black-label">FREE YOUTUBE TOOLS</div>
<a href="https://views4you.com/youtube-money-calculator/" class="link-underline">YouTube Money Calculator</a>
<a href="https://views4you.com/youtube-thumbnail-downloader/" class="link-underline">YouTube Thumbnail Downloader</a>
<a href="https://views4you.com/youtube-video-analytics/" class="link-underline"> YouTube Video Analytics</a>
<a href="https://views4you.com/youtube-title-generator/" class="link-underline">YouTube Title Generator</a>
<a href="https://views4you.com/youtube-restrictions-checker/" class="link-underline">YouTube Restrictions Checker</a>
<a href="https://views4you.com/youtube-subtitles-downloader/" class="link-underline">YouTube Subtitles Downloader</a>
<a href="https://views4you.com/youtube-rank-tracker/" class="link-underline">YouTube Rank Tracker</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-blog-single">
<div class="container">
<div class="row content-wrap js-content-wrapper">
<div class="col col-12 col-lg-3 col-xl-3 js-sidebar-wrapper">
<div class="wcl-toc-block js-sidebar-content" data-bottom="0">

</div>
</div>
<div class="col col-12 col-lg-6 col-xl-6 wcl-page-content-wrapper">
<p data-pm-slice="1 1 []">The <span data-color="var(--green-10)">YouTube Thumbnail Downloader </span>is a free online tool that allows you to easily and quickly download YouTube thumbnails or YouTube banners. You don’t need to install an app; it can all be done through our website on your computer or mobile device.</p>
<p>The <span data-color="var(--green-10)">YouTube Thumbnail Grabber</span> allows you to choose different sizes and qualities of images based on your preferences. It is excellent because it gives you more flexibility in what you want to use it for. The most popular YouTube thumbnail size is between 1280 pixels wide by 720 tall. The YouTube thumbnail image has a ratio of 16:9.</p>
<p>Views4You’s free YouTube video thumbnail allows you to download YouTube banners using the YouTube banner downloader in just a few clicks.</p>
<h3>What Are YouTube Thumbnails?</h3>
<p>YouTube Thumbnail images display videos to viewers by suggesting what&#8217;s in store before they click through.</p>
<p>&nbsp;</p>
<p><img decoding="async" class="alignnone size-full wp-image-9052" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20876%20282'%3E%3C/svg%3E" alt="Custom YouTube thumbnails adjusted to the video's content." width="876" height="282" data-lazy-src="https://views4you.com/wp-content/uploads/2022/12/Buy-YouTube-Views-Video.png" /><noscript><img decoding="async" class="alignnone size-full wp-image-9052" src="https://views4you.com/wp-content/uploads/2022/12/Buy-YouTube-Views-Video.png" alt="Custom YouTube thumbnails adjusted to the video's content." width="876" height="282" /></noscript></p>
<p data-pm-slice="1 1 []">The download thumbnail image should be a high-quality image that will grab the attention of potential viewers instantly. This could be anything from your video, so make it count.</p>
<p>The YouTube algorithm focuses on visuals, so ensure your video has an <a href="https://views4you.com/blog/youtube-thumbnail/" target="_blank" rel="noopener">eye-catching YouTube thumbnail</a>.</p>
<p>How you stand out as a creator and <a href="https://views4you.com/buy-youtube-subscribers/" target="_blank" rel="noopener noreferrer">reach potential subscribers</a> matters more than ever.</p>
<h2>How Do I Download YouTube Thumbnail?</h2>
<p>#1 Visit YouTube and open up the video with the thumbnail image you want from the browser&#8217;s address bar.</p>
<p>#2 Copy the video link/video URL of the YouTube video with the YouTube thumbnail.</p>
<p>#3 Paste the YouTube video link/video URL in the input box and activate the <strong><span data-color="var(--green-10)">YouTube Thumbnail Downloader</span></strong><span data-color="var(--green-10)">.</span></p>
<p>#4 Click on the “Download YouTube Thumbnail” button.</p>
<p>#5 The image quality of a YouTube video thumbnail is an essential factor in determining how well people will understand and enjoy your content. Six different attributes are available, including: High-Quality HQ, standard definition DVD resolutions, 4K, and 1080p HDTVs. The Low-Quality YouTube thumbnail option provides images with poor contrast levels. In contrast, Medium-Quality YouTube thumbnails offer only enough detail for essential recognition of what’s happening in the video but not so much clarity.</p>
<p>#6 Click the button “Download,” and your video thumbnail will be saved to your device’s storage.</p>
<h3>Why Are YouTube Video Thumbnails So Important?</h3>
<p>People look at YouTube thumbnails before deciding whether to click on a YouTube video. So, you must pay attention and create or download YouTube thumbnails that will draw people in and help your <a href="https://views4you.com/blog/how-to-rank-youtube-videos/" target="_blank" rel="noopener">videos automatically rank higher</a> because if your YouTube thumbnail does not work as a magnet, then chances are no one else will watch your content.</p>
<p>It&#8217;s not just the YouTube thumbnail that counts, but also how well it matches your YouTube video. A good one will ensure you <a href="https://views4you.com/buy-youtube-views/" target="_blank" rel="noopener noreferrer">get thousands of views</a>; poor YouTube thumbnails deter people from watching.</p>
<p>YouTube lets you customize your video thumbnails, so make the best of it with <span data-color="var(--green-10)">YouTube Thumbnail Downloader.</span></p>
<h2>YouTube Thumbnail Viewer</h2>
<p>Check out the <span data-color="var(--green-10)">YouTube Thumbnail Downloader, </span>this fantastic tool that allows you to view your YouTube thumbnails in high-definition quality, allowing for perfect visuals with every click.</p>
<p>Make sure your YouTube videos are represented &#8211; with our tool, and you can easily ensure that the download thumbnails of each one is fully optimized for desktop and mobile viewers. Copy-paste any video URL on our website, then press the download button to see how it looks.</p>
<h2>YouTube Banner Downloader</h2>
<p>Your social media imagery is like the cover of a book. Expand your reach and enrich your brand with professionally-crafted YouTube Banners. <a href="https://views4you.com/" target="_blank" rel="noopener noreferrer">Elevate the reach of your channel</a> easily with <span data-color="var(--green-10)">YouTube Thumbnail Downloader</span> &#8211; and broaden your potential opportunities by incorporating it as a powerful, versatile YouTube Banner Downloader.</p>
<p>The YouTube banner is similar to a book cover; it grabs your attention and makes you want to read what&#8217;s inside. This will help audiences perceive a channel appropriately because of how creative they are with their design ideas for their YouTube videos on these platforms today.</p>
<p>YouTube’s recommended banner size is 2560 x 1440 pixels, but you can use any image dimension at least 2048px wide with an aspect ratio of 16:9. Your file must also stay within the 6MB limit. For example, the small banner will appear well on an iPhone but might be too big if you try to show it to someone using an Android phone or another smartphone model.</p>
<p>When designing your YouTube banner, you need to make sure that it looks great on any screen size because it can make a huge difference. This will also help increase the number of views and subscribers for each video.</p>
<h3>Know Your YouTube Banner Safe Area</h3>
<p>To ensure you&#8217;re displaying your banner correctly, you must understand what &#8220;safe area&#8221; means for YouTube. Your &#8216;safe-area&#8217; size is the minimum output capacity of where your image needs to be to show off your excellent video content.</p>
<p>To give your YouTube channel the best chance at success, ensure any essential part is entirely within 1235 x 338 pixels. This means no awkward-looking elements like text or images that could turn viewers off before they even start.</p>
</div>
<div class="col col-12 col-lg-3 col-xl-3 js-sidebar-wrapper social-sidebar-wrapper">
<div class="wcl-share-block js-sidebar-content" data-bottom="0">
<div class="data-wrapper">
<div class="h3 data-title">Share</div>
<a href="https://twitter.com/share?text=YouTube Thumbnail Downloader&url=https://views4you.com/youtube-thumbnail-downloader/" class="data-link" title="Twitter" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
<path fill="#03A9F4" d="M42,12.429c-1.323,0.586-2.746,0.977-4.247,1.162c1.526-0.906,2.7-2.351,3.251-4.058c-1.428,0.837-3.01,1.452-4.693,1.776C34.967,9.884,33.05,9,30.926,9c-4.08,0-7.387,3.278-7.387,7.32c0,0.572,0.067,1.129,0.193,1.67c-6.138-0.308-11.582-3.226-15.224-7.654c-0.64,1.082-1,2.349-1,3.686c0,2.541,1.301,4.778,3.285,6.096c-1.211-0.037-2.351-0.374-3.349-0.914c0,0.022,0,0.055,0,0.086c0,3.551,2.547,6.508,5.923,7.181c-0.617,0.169-1.269,0.263-1.941,0.263c-0.477,0-0.942-0.054-1.392-0.135c0.94,2.902,3.667,5.023,6.898,5.086c-2.528,1.96-5.712,3.134-9.174,3.134c-0.598,0-1.183-0.034-1.761-0.104C9.268,36.786,13.152,38,17.321,38c13.585,0,21.017-11.156,21.017-20.834c0-0.317-0.01-0.633-0.025-0.945C39.763,15.197,41.013,13.905,42,12.429" />
</svg>
<span>Twitter</span>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=https://views4you.com/youtube-thumbnail-downloader/" class="data-link" title="Facebook" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
<linearGradient id="Ld6sqrtcxMyckEl6xeDdMa" x1="9.993" x2="40.615" y1="9.993" y2="40.615" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#2aa4f4" />
 <stop offset="1" stop-color="#007ad9" />
</linearGradient>
<path fill="url(#Ld6sqrtcxMyckEl6xeDdMa)" d="M24,4C12.954,4,4,12.954,4,24s8.954,20,20,20s20-8.954,20-20S35.046,4,24,4z" />
<path fill="#fff" d="M26.707,29.301h5.176l0.813-5.258h-5.989v-2.874c0-2.184,0.714-4.121,2.757-4.121h3.283V12.46 c-0.577-0.078-1.797-0.248-4.102-0.248c-4.814,0-7.636,2.542-7.636,8.334v3.498H16.06v5.258h4.948v14.452 C21.988,43.9,22.981,44,24,44c0.921,0,1.82-0.084,2.707-0.204V29.301z" />
</svg>
<span>Facebook</span>
</a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://views4you.com/youtube-thumbnail-downloader/" class="data-link" title="LinkedIn" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
<path fill="#0288D1" d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5V37z" />
<path fill="#FFF" d="M12 19H17V36H12zM14.485 17h-.028C12.965 17 12 15.888 12 14.499 12 13.08 12.995 12 14.514 12c1.521 0 2.458 1.08 2.486 2.499C17 15.887 16.035 17 14.485 17zM36 36h-5v-9.099c0-2.198-1.225-3.698-3.192-3.698-1.501 0-2.313 1.012-2.707 1.99C24.957 25.543 25 26.511 25 27v9h-5V19h5v2.616C25.721 20.5 26.85 19 29.738 19c3.578 0 6.261 2.25 6.261 7.274L36 36 36 36z" />
</svg>
<span>LinkedIn</span>
</a>
<a href="#!" id="wcl-copy-link-btn" class="data-link" title="Copy Link" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-link-45deg" viewBox="0 0 16 16">
<path d="M4.715 6.542 3.343 7.914a3 3 0 1 0 4.243 4.243l1.828-1.829A3 3 0 0 0 8.586 5.5L8 6.086a1.002 1.002 0 0 0-.154.199 2 2 0 0 1 .861 3.337L6.88 11.45a2 2 0 1 1-2.83-2.83l.793-.792a4.018 4.018 0 0 1-.128-1.287z" />
<path d="M6.586 4.672A3 3 0 0 0 7.414 9.5l.775-.776a2 2 0 0 1-.896-3.346L9.12 3.55a2 2 0 1 1 2.83 2.83l-.793.792c.112.42.155.855.128 1.287l1.372-1.372a3 3 0 1 0-4.243-4.243L6.586 4.672z" />
</svg>
<span>Copy Link</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="js-sidebar-next-section"></div>
<section class="section-faqs" itemscope itemtype="https://schema.org/FAQPage">
<div class="container">
<div class="row">
<div class="col col-12 col-xl-5 title-col">
<h2>FAQ</h2>
<p>Do you have a question about YouTube Thumbnail Grabber or do you want to know more about YouTube Channel Banner? We've answered every question you may have, so let’s go on!</p>
</div>
<div class="col col-12 col-xl-7">
<div class="accordion" id="accordion-1">
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse1" aria-expanded="false" aria-controls="collapse1" itemprop="name">
Will It Be Legal To Download YouTube Thumbnails? </h3>
<div id="collapse1" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-1">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>Downloading any YouTube videos&#8217; thumbnails is 100% legal but as you know those are <a href="https://www.uspto.gov/trademarks/basics/trademark-patent-copyright" target="_blank" rel="noopener">copyrighted products</a> and should be taken with the author&#8217;s permission first  before you can reuse them.</p>
</p>
</div>
</div>
</div>
</div>
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse2" aria-expanded="false" aria-controls="collapse2" itemprop="name">
Do You Need Copyrights To Get YouTube Thumbnails? </h3>
<div id="collapse2" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-1">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>For any YouTube screenshot you are trying to download, make sure that the copyright holder of the respective video is credited. If using it in your work, then <a href="https://www.youtube.com/watch?v=6pgMtJHg9gg" target="_blank" rel="noopener">ask for permission</a> before doing so!</p>
<p>Even though it is possible to reuse YouTube thumbnails for personal or non-commercial purposes, certain risks come with this. For example, if you plan on using the video in question as part of your business&#8217;s marketing campaign then they may request compensation related to that particular YouTube thumbnail, especially since most people don&#8217;t realize these rights exist until after it&#8217;s too late!</p>
</p>
</div>
</div>
</div>
</div>
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse3" aria-expanded="false" aria-controls="collapse3" itemprop="name">
Is It SEO-friendly To Reuse YouTube Thumbnails? </h3>
<div id="collapse3" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-1">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>The short answer is no, it&#8217;s not SEO-friendly because most thumbnails on YouTube are guided by Google. The only way to make your thumbnail unique and reusable again would be through photoshop or any other software that helps you with customization — but this won&#8217;t help in improving the rank of a page on SERPs (search engine result pages).</p>
</p>
</div>
</div>
</div>
</div>
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse4" aria-expanded="false" aria-controls="collapse4" itemprop="name">
Is It Possible To Download The Thumbnail Image Of Any Video? </h3>
<div id="collapse4" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-1">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>That&#8217;s right, we offer all of our users the ability to download YouTube thumbnails for any public video in just one click. No need to go searching around on YouTube or be left out when  the time comes to share your masterpiece!</p>
</p>
</div>
</div>
</div>
</div>
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse5" aria-expanded="false" aria-controls="collapse5" itemprop="name">
What Is YouTube Banner? </h3>
<div id="collapse5" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-1">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>YouTube creates an environment that is perfect for starting your own YouTube channel. There are so many people with large audiences, and there are also those who&#8217;ve only just started on this platform. When it comes to developing a channel, you need to do many things for your site or YouTube profile to look good. The banner at the top of each page is what gives visitors an impression about the channel they are looking through and if the content creator has high-quality content that will keep their attention long enough before getting bored and going on to other pages.</p>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordion-2">
<div class="accordion-item" itemprop="mainEntity" itemtype="https://schema.org/Question" itemscope>
<h3 class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse6" aria-expanded="false" aria-controls="collapse6" itemprop="name">
Will It Be Legal To Download YouTube Banner? </h3>
<div id="collapse6" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordion-2">
<div class="accordion-body" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
<div itemprop="text">
<p><p>Yes, it is. At times, people want to use the banner of another channel but they are not able to do it so they would need to design a new one. YouTube prevents you from downloading another channel&#8217;s banner and at this point, you can consider using YouTube Channel Banner Downloader. Downloading the YouTube banner is legal but it is important to get permission from the author before you reuse their content.</p>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>

</main>


<footer class="footer">
<div class="container">
<div class="row justify-content-between">
<div class="col col-12 col-lg-2">
<a href="/" class="footer-logo">
<img width="414" height="80" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20414%2080'%3E%3C/svg%3E" alt="Views4You logo" data-lazy-src="https://views4you.com/wp-content/uploads/2022/08/logo@2x.png"><noscript><img width="414" height="80" src="https://views4you.com/wp-content/uploads/2022/08/logo@2x.png" alt="Views4You logo"></noscript>
</a>
<div class="footer-social">
<a href=" https://www.facebook.com/views4youofficial/" target="_blank" class="data-link" title="Facebook">
<i class=" bi bi-facebook"></i>
</a>
<a href="https://twitter.com/views4_you" target="_blank" class="data-link" title="Twitter">
<i class=" bi bi-twitter"></i>
</a>
<a href=" https://www.youtube.com/@views4you.official" target="_blank" class="data-link" title="Youtube">
<i class=" bi bi-youtube"></i>
</a>
<a href="https://www.linkedin.com/company/views4you/" target="_blank" class="data-link" title="Linkedin">
<i class=" bi bi-linkedin"></i>
</a>
<a href="https://www.pinterest.com/views4youofficial/" target="_blank" class="data-link" title="Pinterest">
<i class=" bi bi-pinterest"></i>
</a>
<a href="https://www.instagram.com/views4you.official/" target="_blank" class="data-link" title="Instagram">
<i class=" bi bi-instagram"></i>
</a>
</div>
</div>
<div class="col col-12 col-lg-10 buttons-col">
<div class="footer-buttons">
<div class="button-wrap">
<a href="/buy-youtube-views/" class="btn btn-black wow bounceIn" data-wow-duration="1s" data-wow-delay="1.25s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy YouTube Views</strong>
</a>
<p>Starting at <b>$2.49</b></p>
<div class="rating">
<span>5.0 / 5</span> — based on 2 reviews
</div>
</div>
<div class="button-wrap">
<a href="/buy-youtube-likes/" class="btn btn-black wow bounceIn" data-wow-duration="1s" data-wow-delay="1s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy YouTube Likes</strong>
</a>
<p>Starting at <b>$1.19</b></p>
<div class="rating">
<span>5.0 / 5</span> — based on 2 reviews
</div>
</div>
<div class="button-wrap">
<a href="/buy-youtube-subscribers/" class="btn btn-black wow bounceIn" data-wow-duration="1s" data-wow-delay="0.75s">
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<span class="btn-circle"></span>
<strong>Buy YouTube Subscribers</strong>
</a>
<p>Starting at <b>$1.89</b></p>
<div class="rating">
<span>5.0 / 5</span> — based on 4 reviews
</div>
</div>
</div>
</div>
</div>
<div class="footer-nav">

<nav class="footer-menu">
<ul id="menu-footer-menu" class="menu-list"><li id="menu-item-1539" class="empty-link-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1539"><a href="#">​</a>
<ul class="sub-menu">
<li id="menu-item-142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-142"><a href="https://views4you.com/">Home</a></li>
<li id="menu-item-13888" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13888"><a href="https://views4you.com/order-track/">Order Track</a></li>
<li id="menu-item-143" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-143"><a href="https://views4you.com/blog/">Blog</a></li>
<li id="menu-item-14435" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14435"><a href="https://views4you.com/affiliate-program/">Affiliate Program</a></li>
<li id="menu-item-1509" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1509"><a href="https://views4you.com/terms-of-service/">Terms of Service</a></li>
<li id="menu-item-1508" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-1508"><a href="https://views4you.com/privacy-policy/">Privacy Policy</a></li>
</ul>
</li>
<li id="menu-item-8551" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8551"><a href="#">Free YouTube Tools</a>
<ul class="sub-menu">
<li id="menu-item-8552" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8552"><a href="https://views4you.com/youtube-money-calculator/">YouTube Money Calculator</a></li>
<li id="menu-item-9116" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9116"><a href="https://views4you.com/youtube-rank-tracker/">YouTube Rank Tracker</a></li>
<li id="menu-item-8553" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8553"><a href="https://views4you.com/youtube-subtitles-downloader/">YouTube Subtitles Downloader</a></li>
<li id="menu-item-8554" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8554"><a href="https://views4you.com/youtube-thumbnail-downloader/">YouTube Thumbnail Downloader</a></li>
<li id="menu-item-8555" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8555"><a href="https://views4you.com/youtube-title-generator/">YouTube Title Generator</a></li>
<li id="menu-item-8556" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8556"><a href="https://views4you.com/youtube-video-analytics/">YouTube Video Analytics</a></li>
<li id="menu-item-8557" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8557"><a href="https://views4you.com/youtube-restrictions-checker/">YouTube Restrictions Checker</a></li>
</ul>
</li>
<li id="menu-item-1510" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1510"><a href="#">Try for free!</a>
<ul class="sub-menu">
<li id="menu-item-1513" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1513"><a href="https://views4you.com/free-youtube-views/">Free YouTube Views</a></li>
<li id="menu-item-1511" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-727 current_page_item menu-item-1511"><a href="https://views4you.com/free-youtube-likes/" aria-current="page">Free YouTube Likes</a></li>
<li id="menu-item-1512" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1512"><a href="https://views4you.com/free-youtube-subscribers/">Free YouTube Subscribers</a></li>
</ul>
</li>
</ul>
</nav>
</p>
<img width="139" height="22" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20139%2022'%3E%3C/svg%3E" style="float:right;" alt="views4you payment options" data-lazy-src="https://views4you.com/wp-content/uploads/2022/11/payments.png" /><noscript><img width="139" height="22" src="https://views4you.com/wp-content/uploads/2022/11/payments.png" style="float:right;" alt="views4you payment options" /></noscript>
</div>
</div>
</footer>
<script type="rocketlazyloadscript" id='rocket-browser-checker-js-after'>
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id='rocket-preload-links-js-extra'>
var RocketPreloadLinksConfig = {"excludeUris":"\/plugins\/|\/affiliate-area\/|\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index\\.php\/)?(.*)wp\\-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/views4you.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id='rocket-preload-links-js-after'>
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/themes/views4you_theme/js/popper.min.js?ver=2.050' id='popper-js-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/themes/views4you_theme/js/bootstrap-5.1.3.min.js?ver=2.050' id='bootstrap-5-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/themes/views4you_theme/js/bootstrap-4.1.3.min.js?ver=2.050' id='bootstrap-4-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/themes/views4you_theme/js/choices.min.js?ver=2.050' id='choices-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://views4you.com/wp-content/themes/views4you_theme/js/wow.min.js?ver=2.050' id='wow-js-js' defer></script>
<script id='main-js-js-extra'>
var Views4YouConfig = {"recaptcha_key":"6LekFj4iAAAAAJT0FOovC7TBYb062LWdx6lt6ODy","template_path":"https:\/\/views4you.com\/wp-content\/themes\/views4you_theme","template_version":"2.050"};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://views4you.com/wp-content/cache/min/1/wp-content/themes/views4you_theme/js/main.js?ver=1676060300' id='main-js-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://views4you.com/wp-content/cache/min/1/wp-content/themes/views4you_theme/js/wcl-functions.js?ver=1676060300' id='wcl-functions-js-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="wpsp-script-frontend"></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://views4you.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.5/lazyload.min.js"></script><script>function lazyLoadThumb(e){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="play Youtube video"></button>';return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?'':'&'+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow", "accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var e,t,p,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)e=document.createElement("div"),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query", a[t].dataset.query),e.setAttribute("data-src", a[t].dataset.src),e.innerHTML=lazyLoadThumb(a[t].dataset.id),a[t].appendChild(e),p=e.querySelector('.play'),p.onclick=lazyLoadYoutubeIframe});</script><script type="rocketlazyloadscript">window.addEventListener('DOMContentLoaded', function() {
jQuery(document).ready(function($){
  $(".wcl-buy-now-button").click(function(event){
    console.log('clicked');
  event.preventDefault();
  });
});

});</script>

<script type="rocketlazyloadscript">
		setTimeout(() => {
	    window.__lc = window.__lc || {};
	    window.__lc.license = 14846391;
	    ;(function(n,t,c){function i(n){return e._h?e._h.apply(null,n):e._q.push(n)}var e={_q:[],_h:null,_v:"2.0",on:function(){i(["on",c.call(arguments)])},once:function(){i(["once",c.call(arguments)])},off:function(){i(["off",c.call(arguments)])},get:function(){if(!e._h)throw new Error("[LiveChatWidget] You can't use getters before load.");return i(["get",c.call(arguments)])},call:function(){i(["call",c.call(arguments)])},init:function(){var n=t.createElement("script");n.async=!0,n.type="text/javascript",n.src="https://cdn.livechatinc.com/tracking.js",t.head.appendChild(n)}};!n.__lc.asyncInit&&e.init(),n.LiveChatWidget=n.LiveChatWidget||e}(window,document,[].slice))
	  }, 2500);
</script>
<noscript><a href="https://www.livechat.com/chat-with/14846391/" rel="nofollow">Chat with us</a>, powered by <a href="https://www.livechat.com/?welcome" rel="noopener nofollow" target="_blank">LiveChat</a></noscript>

<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993" integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA==" data-cf-beacon='{"rayId":"7986443c9f5c2c30","token":"bd903f9d9cb446d7bf8bcdbf8fb09ff8","version":"2022.11.3","si":100}' crossorigin="anonymous"></script>
</body>
</html>
