<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>amad ilyas</title>
	<link>https://amadilyas.com</link>
	<description>amad ilyas</description>
	<pubDate>Mon, 10 Aug 2026 20:11:49 +0000</pubDate>
	<generator>https://amadilyas.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Home</title>
				
		<link>https://amadilyas.com/Home</link>

		<pubDate>Wed, 10 May 2023 20:36:31 +0000</pubDate>

		<dc:creator>amad ilyas</dc:creator>

		<guid isPermaLink="true">https://amadilyas.com/Home</guid>

		<description>

/* =========================================================
   PAGE
========================================================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  min-height: 100% !important;

  background: #000 !important;

  /* Prevent horizontal bounce without blocking vertical scroll */
  overflow-x: hidden;

  /* Allow normal vertical scrolling */
  overflow-y: auto;

  overscroll-behavior-x: none;
}

.amad-page-wrap {
  position: relative;

  width: 100%;
  min-width: 0;

  /* Let the content determine the page height */
  min-height: 100svh;
  min-height: 100dvh;

  box-sizing: border-box;

  background: #000 !important;
  color: #fff;

  /*
    IMPORTANT:
    Keep vertical overflow visible so the page
    can naturally grow and scroll.
  */
  overflow: visible;

  font-family: Helvetica, Arial, sans-serif;

  isolation: isolate;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.amad-page-wrap::before {
  content: "";

  position: absolute;
  inset: 0;

  width: 100%;
  min-height: 100%;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 255, 180, 0.06),
      transparent 25%
    );

  z-index: -3;

  pointer-events: none;
}


/* =========================================================
   ORB SCENE
========================================================= */

.orb-scene {
  position: absolute;

  /*
    Keep the scene inside the page bounds.
    This allows it to grow naturally with the page
    while preventing the blurred orbs from creating
    horizontal overflow.
  */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  min-height: 100%;

  z-index: -2;

  overflow: hidden;
  pointer-events: none;

  filter: blur(38px) contrast(130%);

  opacity: var(--responsive-opacity, 1);

  /*
    Makes sure the orb layer never becomes
    a source of scrolling or touch interaction.
  */
  touch-action: none;
}


/* =========================================================
   ORBS
========================================================= */

.orb {
  position: absolute;

  border-radius: 50%;
  mix-blend-mode: screen;

  opacity: 0.92;

  will-change: transform;

  pointer-events: none;
}


/* =========================================================
   ORB 1
========================================================= */

.orb1 {
  width: 180px;
  height: 270px;

  left: 16%;
  top: 28%;

  background: #00ffc2;

  animation: float1 10s ease-in-out infinite alternate;
}


/* =========================================================
   ORB 2
========================================================= */

.orb2 {
  width: 290px;
  height: 350px;

  left: 37%;
  top: 14%;

  background: #5effd3;

  animation: float2 12s ease-in-out infinite alternate;
}


/* =========================================================
   ORB 3
========================================================= */

.orb3 {
  width: 240px;
  height: 180px;

  right: 16%;
  top: 26%;

  background: #00ffc8;

  animation: float3 9s ease-in-out infinite alternate;
}


/* =========================================================
   ORB 4
========================================================= */

.orb4 {
  width: 170px;
  height: 220px;

  right: 20%;
  bottom: 14%;

  background: #009dff;

  opacity: 0.45;

  animation: float4 11s ease-in-out infinite alternate;
}


/* =========================================================
   ORB 5
========================================================= */

.orb5 {
  width: 170px;
  height: 90px;

  left: 25%;
  bottom: 13%;

  background: #00ff9f;

  animation: float5 8s ease-in-out infinite alternate;
}


/* =========================================================
   ORB 6
========================================================= */

.orb6 {
  width: 120px;
  height: 120px;

  left: 49%;
  top: 46%;

  background: #00e1ff;

  opacity: 0.35;

  animation: float6 7s ease-in-out infinite alternate;
}


/* =========================================================
   HERO
========================================================= */

.hero-copy {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 1050px;

  padding-top: clamp(10px, 3vw, 40px);

  /*
    Prevent content from ever creating horizontal
    overflow on smaller screens.
  */
  box-sizing: border-box;
}


/* =========================================================
   HEADLINE
========================================================= */

.amad-page-wrap h1 {
  margin: 0;

  width: 100%;
  max-width: 1050px;

  /*
    Keep the original typography.
    Responsive layout changes below do NOT
    override this size.
  */
  font-size: clamp(2.2rem, 6vw, 6.4rem);

  line-height: 0.98;

  letter-spacing: -0.065em;

  color: #fff;

  font-weight: 100;

  text-transform: lowercase;

  text-wrap: balance;

  overflow-wrap: break-word;
  word-wrap: break-word;

  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.08);
}


/* =========================================================
   RAINBOW TEXT
========================================================= */

.rainbow-text {
  background:
    linear-gradient(
      135deg,
      #02ffb3,
      #66f2cf,
      #ffffff
    );

  background-clip: text;

  color: #c6e7de;

  background-size: 200% 100%;
  
  letter-spacing: -0.065em;

  animation: shimmer 5s linear infinite;
}


@keyframes shimmer {

  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }

}


/* =========================================================
   BODY COPY
========================================================= */

.amad-body-text {
  width: 100%;
  max-width: 640px;

  margin-top: clamp(22px, 3vw, 34px);

  /*
    KEEPING ORIGINAL TEXT SIZE.
    No mobile override.
  */
  font-size: clamp(2.6rem, 1.3vw, 1.08rem);

  line-height: 1.6;

  letter-spacing: -0.065em;

  color: rgba(255, 255, 255, 1);

  font-weight: 200;

  overflow-wrap: break-word;
  word-wrap: break-word;
}


.amad-body-text small {
  font-size: inherit;
}


/* =========================================================
   TOP RIGHT
========================================================= */

.top-corner {
  position: absolute;

  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);

  z-index: 10;

  text-align: center;

  max-width: calc(100vw - 36px);

  box-sizing: border-box;
}


.top-corner a {
  display: block;

  color: #fff;

  text-decoration: none;

  opacity: 0.85;

  font-size: 0.95rem;
  font-weight: 300;

  transition: opacity 0.25s ease;
}


.top-corner a:hover {
  opacity: 1;
}


.top-corner img {
  width: auto !important;
  height: auto !important;

  max-width: 154px;
  max-height: 154px;

  object-fit: contain;

  display: block;
}


/* =========================================================
   RANDOM ORB POSITIONS
========================================================= */

.orb {
  /*
    JS will override these on every page load.
  */
  left: var(--orb-left, 20%);
  top: var(--orb-top, 20%);

  animation-duration: var(--orb-duration, 10s);
  animation-delay: var(--orb-delay, 0s);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes flicker {

  0% {
    opacity: 0.06;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 0.07;
  }

}


@keyframes float1 {

  0% {
    transform: translate(0, 0) scale(1);

    border-radius:
      48% 52% 60% 40% /
      40% 45% 55% 60%;
  }

  100% {
    transform: translate(50px, -25px) scale(1.08);

    border-radius:
      65% 35% 45% 55% /
      50% 65% 35% 50%;

    background: #00ffba;
  }

}


@keyframes float2 {

  0% {
    transform: translate(0, 0);

    border-radius:
      50% 50% 35% 65% /
      45% 55% 45% 55%;
  }

  100% {
    transform: translate(-35px, 35px);

    border-radius:
      35% 65% 60% 40% /
      65% 40% 60% 35%;

    background: #7cffd2;
  }

}


@keyframes float3 {

  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(35px, -35px) scale(1.1);

    border-radius:
      70% 30% 50% 50% /
      50% 60% 40% 50%;

    background: #00ffff;
  }

}


@keyframes float4 {

  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-25px, -25px);

    border-radius:
      35% 65% 45% 55% /
      65% 35% 65% 35%;
  }

}


@keyframes float5 {

  0% {
    transform: translate(0, 0) scaleX(1);
  }

  100% {
    transform: translate(55px, -10px) scaleX(1.45);

    border-radius:
      70% 30% 60% 40% /
      40% 55% 45% 60%;
  }

}


@keyframes float6 {

  0% {
    transform: scale(1);
    opacity: 0.35;
  }

  100% {
    transform: scale(1.45);
    opacity: 0.55;
  }

}


/* =========================================================
   RESPONSIVE TRANSPARENCY
   Change these values as needed
========================================================= */

:root {
  /* Desktop */
  --responsive-opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .amad-page-wrap {
    padding: 48px 34px;

    /*
      Keep the page height flexible.
      Content is allowed to make the page taller.
    */
    min-height: 100svh;
    min-height: 100dvh;

    overflow: visible;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  :root {
    --responsive-opacity: 0.25;
  }


  .amad-page-wrap {
    /*
      Do NOT lock the page to the viewport height.
      This is what allows the full content to scroll.
    */
    min-height: 100svh;
    min-height: 100dvh;

    height: auto;

    padding:
      92px
      24px
      60px;

    /*
      Prevent horizontal overflow while keeping
      vertical scrolling completely normal.
    */
    min-width: 0;
    overflow: visible;

    box-sizing: border-box;
  }


  .hero-copy {
    padding-top: 0;

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
  }


  .amad-page-wrap h1 {
    width: 100%;
    max-width: 100%;

    /*
      KEEP ORIGINAL DESKTOP TEXT SIZE.
      Only constrain its width.
    */
    font-size: clamp(2.2rem, 6vw, 6.4rem);

    line-height: 0.98;
    letter-spacing: -0.065em;

    text-wrap: pretty;

    overflow-wrap: break-word;
    word-wrap: break-word;
  }


  .amad-body-text {
    width: 100%;
    max-width: 640px;

    margin-top: 24px;

    /*
      KEEP ORIGINAL TEXT SIZE.
    */
    font-size: clamp(2.6rem, 1.3vw, 1.08rem);

    line-height: 1.6;

    letter-spacing: -0.065em;

    overflow-wrap: break-word;
    word-wrap: break-word;
  }


  .top-corner {
    top: 20px;
    right: 20px;

    max-width: calc(100vw - 40px);
  }


  .top-corner img {
    max-width: 48px;
    max-height: 48px;
  }


  /* =======================================================
     MOBILE ORBS
  ======================================================= */

  .orb-scene {
    /*
      Keep the orb scene attached to the entire page.
      Do not use negative inset values here because
      they can create unwanted overflow on mobile.
    */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    min-height: 100%;

    opacity: var(--responsive-opacity);

    filter: blur(42px) contrast(120%);

    overflow: hidden;
  }


  .orb1 {
    width: 125px;
    height: 190px;

    left: -5%;
    top: 18%;
  }


  .orb2 {
    width: 175px;
    height: 220px;

    left: 27%;
    top: 10%;
  }


  .orb3 {
    width: 125px;
    height: 100px;

    right: -5%;
    top: 35%;
  }


  .orb4 {
    width: 95px;
    height: 135px;

    right: 3%;
    bottom: 15%;
  }


  .orb5 {
    width: 115px;
    height: 58px;

    left: 8%;
    bottom: 13%;
  }


  .orb6 {
    width: 68px;
    height: 68px;

    left: 46%;
    top: 53%;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

  :root {
    --responsive-opacity: 0.25;
  }


  .amad-page-wrap {
    /*
      Slightly smaller side padding,
      but still enough room for the content.
    */
    padding:
      96px
      20px
      60px;

    min-height: 100svh;
    min-height: 100dvh;

    height: auto;

    overflow: visible;
  }


  .amad-page-wrap h1 {
    width: 100%;
    max-width: 100%;

    /*
      TEXT SIZE REMAINS THE SAME.
    */
    font-size: clamp(2.2rem, 6vw, 6.4rem);

    line-height: 0.98;
    letter-spacing: -0.065em;

    overflow-wrap: break-word;
    word-wrap: break-word;
  }


  .amad-body-text {
    width: 100%;
    max-width: 640px;

    margin-top: 22px;

    /*
      TEXT SIZE REMAINS THE SAME.
    */
    font-size: clamp(2.6rem, 1.3vw, 1.08rem);

    line-height: 1.6;

    letter-spacing: -0.065em;
  }


  .top-corner {
    top: 18px;
    right: 18px;

    max-width: calc(100vw - 36px);
  }


  .top-corner img {
    max-width: 48px;
    max-height: 48px;
  }


  /* =======================================================
     SMALL PHONE ORBS
  ======================================================= */

  .orb-scene {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    min-height: 100%;

    overflow: hidden;

    filter: blur(40px) contrast(120%);

    opacity: var(--responsive-opacity);
  }


  .orb1 {
    width: 105px;
    height: 165px;

    left: -7%;
    top: 19%;
  }


  .orb2 {
    width: 150px;
    height: 195px;

    left: 27%;
    top: 12%;
  }


  .orb3 {
    width: 110px;
    height: 85px;

    right: -7%;
    top: 38%;
  }


  .orb4 {
    width: 85px;
    height: 120px;

    right: 1%;
    bottom: 17%;
  }


  .orb5 {
    width: 100px;
    height: 50px;

    left: 7%;
    bottom: 14%;
  }


  .orb6 {
    width: 58px;
    height: 58px;

    left: 46%;
    top: 54%;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

  :root {
    --responsive-opacity: 0.25;
  }


  .amad-page-wrap {
    padding:
      88px
      18px
      60px;

    min-height: 100svh;
    min-height: 100dvh;

    height: auto;

    overflow: visible;
  }


  .amad-page-wrap h1 {
    width: 100%;
    max-width: 100%;

    /*
      KEEP TEXT SIZE CONSISTENT.
    */
    font-size: clamp(2.2rem, 6vw, 6.4rem);

    line-height: 0.98;
    letter-spacing: -0.065em;

    overflow-wrap: break-word;
    word-wrap: break-word;
  }


  .amad-body-text {
    width: 100%;
    max-width: 640px;

    /*
      KEEP TEXT SIZE CONSISTENT.
    */
    font-size: clamp(2.6rem, 1.3vw, 1.08rem);

    line-height: 1.6;

    letter-spacing: -0.065em;

    overflow-wrap: break-word;
    word-wrap: break-word;
  }


  .top-corner {
    top: 16px;
    right: 16px;

    max-width: calc(100vw - 32px);
  }


  .top-corner img {
    max-width: 40px;
    max-height: 40px;
  }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .orb,
  .amad-page-wrap::after,
  .rainbow-text {
    animation: none;
  }

}






  

  

    
      &#38;nbsp;
      
      
    

    
    
    
    
    

  


  

  

    
      &#60;img width="480" height="586" width_o="480" height_o="586" data-src="https://freight.cargo.site/t/original/i/0cc470625e37a9c6c611cdf15682e4cd301352d283776045d02e01191f582a52/PREZ_SD_SMALL.gif" data-mid="216696099" border="0" data-scale="13" src="https://freight.cargo.site/w/480/i/0cc470625e37a9c6c611cdf15682e4cd301352d283776045d02e01191f582a52/PREZ_SD_SMALL.gif" /&#62;
    

  


  

  

    &#38;nbsp;
    
    
    

    
      hey!
      i am amad ilyas,
      a freelance creative director and
      sometimes multi-disciplinary artist.
    


    

      
        i make things that pull you in, make you think and hopefully lead you somewhere you didn’t expect. i have spent the last decade working with some of the biggest agencies and companies in the world, creating work that has travelled across the globe and left a mark along the way. 
        
        
        
        

        i specialize in
        
          creative &#38;amp; art direction, brand and&#38;nbsp; visual design, presentations, campaigns
        
        and
        
          just about anything in between.
        

outside of that, i am passionate about helping underdeveloped artists across all kinds of mediums find their voice through creative and artistic direction and support.

        
        

i am currently taking on more freelance projects and art commissions through 2027 and beyond. if you want to make something together, drop me a line.
      


  






document.addEventListener("DOMContentLoaded", function () {

  const page = document.querySelector(".amad-page-wrap");
  const orbScene = document.querySelector(".orb-scene");
  const orbs = document.querySelectorAll(".amad-page-wrap .orb");

  if (!page &#124;&#124; !orbScene &#124;&#124; !orbs.length) return;


  /* =======================================================
     ORB POSITION SETTINGS
  ======================================================= */

  const MIN_DISTANCE = 18;

  const positions = [];


  function random(min, max) {
    return Math.random() * (max - min) + min;
  }


  function distance(a, b) {

    const dx = a.x - b.x;
    const dy = a.y - b.y;

    return Math.sqrt(
      dx * dx + dy * dy
    );
  }


  /* =======================================================
     RANDOMIZE ORBS
  ======================================================= */

  orbs.forEach((orb) =&#62; {

    let position;
    let attempts = 0;


    /*
      Find a reasonably separated random position.
    */

    do {

      position = {
        x: random(5, 95),
        y: random(5, 95)
      };

      attempts++;

      if (attempts &#62; 100) break;

    } while (
      positions.some(
        existing =&#62;
          distance(position, existing) &#60; MIN_DISTANCE
      )
    );


    positions.push(position);


    /*
      Random starting position.
    */

    orb.style.setProperty(
      "--orb-left",
      position.x + "%"
    );

    orb.style.setProperty(
      "--orb-top",
      position.y + "%"
    );


    /*
      Slightly different animation speed
      for every orb.
    */

    const duration = random(7, 15);

    orb.style.setProperty(
      "--orb-duration",
      duration + "s"
    );


    /*
      Randomize when each orb starts moving.
    */

    const delay = random(-8, 0);

    orb.style.setProperty(
      "--orb-delay",
      delay + "s"
    );

  });

});

</description>
		
	</item>
		
		
	<item>
		<title>CLIENTS WALL</title>
				
		<link>https://amadilyas.com/CLIENTS-WALL</link>

		<pubDate>Mon, 10 Aug 2026 20:11:49 +0000</pubDate>

		<dc:creator>amad ilyas</dc:creator>

		<guid isPermaLink="true">https://amadilyas.com/CLIENTS-WALL</guid>

		<description>
html {
  scroll-behavior: smooth;
}

.amad-back-to-top {
  display: block;
  width: 60%;
  max-width: 255px;
  margin: auto auto auto;
  padding: 0px 0px;
  
  background: #000;
  color: #00ffb2 !important;
  border: 2px solid #202820;
  border-radius: 999px;

  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
  text-decoration: none !important;

  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.amad-back-to-top:hover {
  background: #202820;
  color: #fff !important;
}
small,
.small,
small *,
.small * {
  font-family: Helvetica, Arial, sans-serif !important;
  letter-spacing: -0.05em !important;
}

.amad-logo-wall {
  width: 100%;
  min-height: 50%;
  padding: 0;
  background: #00e1b4;
  color: #000 !important;
  overflow: hidden;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: lowercase;
  letter-spacing: -0.05em;
}

.amad-logo-wall * {
  box-sizing: border-box;
}

/* =========================================
   LOGO MARQUEE
========================================= */

.amad-logo-marquee {
  width: 100%;
  overflow: hidden;
  margin: 0 0 40px;
  position: relative;
  z-index: 0;
}

.amad-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: amadLogoScroll 42s linear infinite;
  will-change: transform;
}

.amad-logo-marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.amad-logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: auto;
  margin: 0 15px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amad-logo-item img {
  max-width: 120px;
  max-height: 100px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.amad-logo-marquee:hover .amad-logo-track {
  animation-play-state: paused;
}

@keyframes amadLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}




some clients i have worked with  



 


  
    

      
      
        &#60;img src="https://freight.cargo.site/t/original/i/c73cbd35153d15322806b663adbd32030f09f0a28e2d97804eedab50c4a9bd3e/HULU_LOGO_BLACK.png" alt="Hulu logo"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/50da0d033828ca7c7bf64a4f0985760f49b5284377feb7a217990fbe75909d08/NETFLIX_LOGO_BLACK.png" alt="Netflix logo"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/eaaf7c178797ceea85e2c45d090c10a412714fd9823683ad5655360cb3a11ea4/LOE_LOGO_BLACK.png" alt="Logo 3"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/8cff3ace2d52ae7f45fcd8a7752ddceac2c395663b4b12334343ec2988c0e13f/NICK_LOGO_BLACK.png" alt="Nick logo"&#62;
      

      
        
&#60;img src="https://freight.cargo.site/t/original/i/363a967bdd28b7afffd5ddb6e21d090a6417b286cc8d8f582e8c2fb85e818fea/SONY_LOGO_BLACK.png" alt="Sony logo"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/beec1329d317d68afc71a76d0852386fc0cd7187b84a7993686f4e4326347572/CN_LOGO_BLACK.png" alt="Cartoon Network logo"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/e9427623307a8fec6c467a74e222b2ada87803406dfa1e60472e3f92a9509b9d/DISNEY_LOGO_BLACK.png" alt="Logo 7"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/c2256747b4db46c10e461755aa8974a025a4db249153d3c94957ae80fcce18de/Aesop_logo_2013.png" alt="Logo 8"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/839c41cefbdffbf202e174362d365dd6128af256a4141245dacab4f9d1c834aa/MICROSOFT_LOGO_BLACK.png" alt="Logo 9"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/a2d9b8b9380677d658b3effbef9b17e880aa41802afc29ac2f31b7a223b4dfdd/IRC_LOGO_BLACK.png" alt="Logo 10"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/1bb28a788e6f955b1905d820a0e4bffdf41fdb26574aa11774726cb51e4b00bd/APPLE_LOGO_BLACK.png" alt="Logo 11"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/7d328a72a655f6f2f982d8b4d459cc6a110008b47502b75fbe3f21ffb5b3c61e/SPOTI_LOGO_BLACK.png" alt="Logo 12"&#62;
      

      
      
        &#60;img src="https://freight.cargo.site/t/original/i/c73cbd35153d15322806b663adbd32030f09f0a28e2d97804eedab50c4a9bd3e/HULU_LOGO_BLACK.png" alt="Hulu logo duplicate"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/50da0d033828ca7c7bf64a4f0985760f49b5284377feb7a217990fbe75909d08/NETFLIX_LOGO_BLACK.png" alt="Netflix logo duplicate"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/eaaf7c178797ceea85e2c45d090c10a412714fd9823683ad5655360cb3a11ea4/LOE_LOGO_BLACK.png" alt="Logo 3 duplicate"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/8cff3ace2d52ae7f45fcd8a7752ddceac2c395663b4b12334343ec2988c0e13f/NICK_LOGO_BLACK.png" alt="Nick logo duplicate"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/363a967bdd28b7afffd5ddb6e21d090a6417b286cc8d8f582e8c2fb85e818fea/SONY_LOGO_BLACK.png" alt="Sony logo duplicate"&#62;
      

      
        &#60;img src="https://freight.cargo.site/t/original/i/beec1329d317d68afc71a76d0852386fc0cd7187b84a7993686f4e4326347572/CN_LOGO_BLACK.png" alt="Cartoon Network logo duplicate"&#62;
      

      
        

&#60;img src="PASTE-LOGO-URL-HERE-7.png" alt="Logo 7 duplicate"&#62;
      

      
        &#60;img src="PASTE-LOGO-URL-HERE-8.png" alt="Logo 8 duplicate"&#62;
      

      
        &#60;img src="PASTE-LOGO-URL-HERE-9.png" alt="Logo 9 duplicate"&#62;
      

      
        &#60;img src="PASTE-LOGO-URL-HERE-10.png" alt="Logo 10 duplicate"&#62;
      

      
        &#60;img src="PASTE-LOGO-URL-HERE-11.png" alt="Logo 11 duplicate"&#62;
      

      
        &#60;img src="PASTE-LOGO-URL-HERE-12.png" alt="Logo 12 duplicate"&#62;
        
         back to top</description>
		
	</item>
		
	</channel>
</rss>