Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html style="width: 100%;" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <meta content="telephone=no" name="format-detection"/>
  <meta content="address=no" name="format-detection"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!--[if gte mso 9]>
<xml>
  <o:OfficeDocumentSettings>
    <o:AllowPNG/>
    <o:PixelsPerInch>96</o:PixelsPerInch>
 </o:OfficeDocumentSettings>
</xml>
<![endif]-->
  <style>
   @font-face {
font-family: 'Relative'; font-style: normal; font-weight: normal; src: url(https://inboxflows.com/_/image/https%253A%252F%252Fjs.skyscnr.com%252Fsttc%252Fbpk-fonts%252FSkyscannerRelative-Book-748018a8.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZqcy5za3lzY25yLiJ9:1pk81D:0f_JNIcXdbcYrxvbgY1Stn4H9LWFwqSd3GYQ9uDo6h4) format('woff'); mso-font-alt: 'Arial';
}
@font-face {
font-family: 'Relative'; font-style: normal; font-weight: bold; src: url(https://inboxflows.com/_/image/https%253A%252F%252Fjs.skyscnr.com%252Fsttc%252Fbpk-fonts%252FSkyscannerRelative-Bold-05814807.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZqcy5za3lzY25yLiJ9:1pk81D:0f_JNIcXdbcYrxvbgY1Stn4H9LWFwqSd3GYQ9uDo6h4) format('woff'); mso-font-alt: 'Arial';
}
body {
width: 100% !important; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0;
}
.ExternalClass {
width: 100%;
}
.ExternalClass {
line-height: 100%;
}
#backgroundTable {
margin: 0; padding: 0; width: 100% !important; line-height: 100% !important;
}
img {
outline: none; text-decoration: none; border: none; -ms-interpolation-mode: bicubic;
}
@media only screen and (max-width: 681px) {
  body [yahoofix] {
    padding: 0 2px !important; width: auto !important;
  }
  body [yahoofix] a[href^="tel"] {
    text-decoration: none; color: #000; pointer-events: none; cursor: default;
  }
  a[href^="sms"] {
    text-decoration: none; color: #000; pointer-events: none; cursor: default;
  }
  table.wrapper {
    width: 100% !important;
  }
  table[class=wrapper] {
    width: 100% !important;
  }
  img.image-size {
    width: 100% !important;
  }
  img[class=image-size] {
    width: 100% !important;
  }
  img.image-size-mob {
    width: 100% !important;
  }
  img[class=image-size-mob] {
    width: 100% !important;
  }
  td.full-width {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  td[class=full-width] {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  table.full-width {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  table[class=full-width] {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  .full-width {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  [class=full-width] {
    width: 100% !important; float: left !important; box-sizing: border-box !important;
  }
  td.hide-mobile {
    display: none !important;
  }
  td[class=hide-mobile] {
    display: none !important;
  }
  .hide-mobile {
    display: none !important;
  }
  [class=hide-mobile] {
    display: none !important;
  }
  td.show-mobile {
    display: block !important; max-height: none !important;
  }
  td[class=show-mobile] {
    display: block !important; max-height: none !important;
  }
  .show-mobile {
    display: block !important; max-height: none !important;
  }
  [class=show-mobile] {
    display: block !important; max-height: none !important;
  }
  td.hide-desktop {
    display: block !important; max-height: none !important;
  }
  td[class=hide-desktop] {
    display: block !important; max-height: none !important;
  }
  .hide-desktop {
    display: block !important; max-height: none !important;
  }
  [class=hide-desktop] {
    display: block !important; max-height: none !important;
  }
  .pad-vertical-0 {
    padding-top: 0 !important; padding-bottom: 0 !important;
  }
  [class=pad-vertical-0] {
    padding-top: 0 !important; padding-bottom: 0 !important;
  }
  .pad-vertical-6 {
    padding-top: 6px !important; padding-bottom: 6px !important;
  }
  [class=pad-vertical-6] {
    padding-top: 6px !important; padding-bottom: 6px !important;
  }
  .pad-vertical-12 {
    padding-top: 12px !important; padding-bottom: 12px !important;
  }
  [class=pad-vertical-12] {
    padding-top: 12px !important; padding-bottom: 12px !important;
  }
  .pad-vertical-18 {
    padding-top: 18px !important; padding-bottom: 18px !important;
  }
  [class=pad-vertical-18] {
    padding-top: 18px !important; padding-bottom: 18px !important;
  }
  .pad-vertical-24 {
    padding-top: 24px !important; padding-bottom: 24px !important;
  }
  [class=pad-vertical-24] {
    padding-top: 24px !important; padding-bottom: 24px !important;
  }
  .pad-vertical-30 {
    padding-top: 30px !important; padding-bottom: 30px !important;
  }
  [class=pad-vertical-30] {
    padding-top: 30px !important; padding-bottom: 30px !important;
  }
  .pad-vertical-36 {
    padding-top: 36px !important; padding-bottom: 36px !important;
  }
  [class=pad-vertical-36] {
    padding-top: 36px !important; padding-bottom: 36px !important;
  }
  .pad-top-0 {
    padding-top: 0 !important;
  }
  [class=pad-top-0] {
    padding-top: 0 !important;
  }
  .pad-top-6 {
    padding-top: 6px !important;
  }
  [class=pad-top-6] {
    padding-top: 6px !important;
  }
  .pad-top-12 {
    padding-top: 12px !important;
  }
  [class=pad-top-12] {
    padding-top: 12px !important;
  }
  .pad-top-16 {
    padding-top: 16px !important;
  }
  [class=pad-top-16] {
    padding-top: 16px !important;
  }
  .pad-top-18 {
    padding-top: 18px !important;
  }
  [class=pad-top-18] {
    padding-top: 18px !important;
  }
  .pad-top-24 {
    padding-top: 24px !important;
  }
  [class=pad-top-24] {
    padding-top: 24px !important;
  }
  .pad-top-30 {
    padding-top: 30px !important;
  }
  [class=pad-top-30] {
    padding-top: 30px !important;
  }
  .pad-top-36 {
    padding-top: 36px !important;
  }
  [class=pad-top-36] {
    padding-top: 36px !important;
  }
  .pad-bottom-0 {
    padding-bottom: 0 !important;
  }
  [class=pad-bottom-0] {
    padding-bottom: 0 !important;
  }
  .pad-bottom-6 {
    padding-bottom: 6px !important;
  }
  [class=pad-bottom-6] {
    padding-bottom: 6px !important;
  }
  .pad-bottom-12 {
    padding-bottom: 12px !important;
  }
  [class=pad-bottom-12] {
    padding-bottom: 12px !important;
  }
  .pad-bottom-18 {
    padding-bottom: 18px !important;
  }
  [class=pad-bottom-18] {
    padding-bottom: 18px !important;
  }
  .pad-bottom-24 {
    padding-bottom: 24px !important;
  }
  [class=pad-bottom-24] {
    padding-bottom: 24px !important;
  }
  .pad-bottom-30 {
    padding-bottom: 30px !important;
  }
  [class=pad-bottom-30] {
    padding-bottom: 30px !important;
  }
  .pad-bottom-36 {
    padding-bottom: 36px !important;
  }
  [class=pad-bottom-36] {
    padding-bottom: 36px !important;
  }
  .pad-bottom-48 {
    padding-bottom: 48px !important;
  }
  [class=pad-bottom-48] {
    padding-bottom: 48px !important;
  }
  .pad-horizontal-0 {
    padding-right: 0 !important; padding-left: 0 !important;
  }
  [class=pad-horizontal-0] {
    padding-right: 0 !important; padding-left: 0 !important;
  }
  .pad-horizontal-24 {
    padding-right: 24px !important; padding-left: 24px !important;
  }
  [class=pad-horizontal-24] {
    padding-right: 24px !important; padding-left: 24px !important;
  }
  .pad-right-0 {
    padding-right: 0 !important;
  }
  [class=pad-right-0] {
    padding-right: 0 !important;
  }
  .pad-right-10 {
    padding-right: 10px !important;
  }
  [class=pad-right-10] {
    padding-right: 10px !important;
  }
  .pad-left-0 {
    padding-left: 0 !important;
  }
  [class=pad-left-0] {
    padding-left: 0 !important;
  }
  .pad-left-16 {
    padding-left: 16px !important;
  }
  [class=pad-left-16] {
    padding-left: 16px !important;
  }
  td.main-title {
    font-size: 50px !important; line-height: 56px !important;
  }
  td[class=main-title] {
    font-size: 50px !important; line-height: 56px !important;
  }
  td.edges {
    padding-left: 16px !important; padding-right: 16px !important;
  }
  td[class=edges] {
    padding-left: 16px !important; padding-right: 16px !important;
  }
  td.gutters {
    padding-left: 24px !important; padding-right: 24px !important;
  }
  td[class=gutters] {
    padding-left: 24px !important; padding-right: 24px !important;
  }
  td.gutters_grid {
    padding-left: 24px !important; padding-right: 14px !important;
  }
  [class=gutters_grid] {
    padding-left: 24px !important; padding-right: 14px !important;
  }
  td.gutter-left {
    padding-left: 24px !important;
  }
  td[class=gutter-left] {
    padding-left: 24px !important;
  }
  td.footer-logo {
    text-align: left !important; padding-top: 24px !important;
  }
  td[class=footer-logo] {
    text-align: left !important; padding-top: 24px !important;
  }
  td.app-banner-title {
    font-size: 24px !important; line-height: 31px !important;
  }
  td[class=app-banner-title] {
    font-size: 24px !important; line-height: 31px !important;
  }
  .image-height {
    height: auto !important;
  }
  [class=image-height] {
    height: auto !important;
  }
  .image-width {
    width: 50% !important;
  }
  [class=image-width] {
    width: 50% !important;
  }
  .border-hide {
    border: none !important;
  }
  .font12 {
    font-size: 12px !important; line-height: 16px !important;
  }
  [class=font12] {
    font-size: 12px !important; line-height: 16px !important;
  }
  .font14 {
    font-size: 14px !important; line-height: 18px !important;
  }
  [class=font14] {
    font-size: 14px !important; line-height: 18px !important;
  }
  .font16 {
    font-size: 16px !important; line-height: 20px !important;
  }
  [class=font16] {
    font-size: 16px !important; line-height: 20px !important;
  }
  .white-space {
    white-space: normal !important;
  }
  [class=white-space] {
    white-space: normal !important;
  }
  td.left-mobile {
    text-align: left !important;
  }
  td[class=left-mobile] {
    text-align: left !important;
  }
  .small-header-title {
    font-size: 34px !important; line-height: 40px !important;
  }
  [class=small-header-title] {
    font-size: 34px !important; line-height: 40px !important;
  }
  .h2-title {
    font-size: 24px !important; line-height: 28px !important;
  }
  [class=small-header-title] {
    font-size: 24px !important; line-height: 28px !important;
  }
  .hero-title {
    font-size: 20px !important; line-height: 24px !important;
  }
  [class=hero-title] {
    font-size: 20px !important; line-height: 24px !important;
  }
  td.hero-subtitle {
    font-size: 16px !important; line-height: 24px !important;
  }
  td[class=hero-subtitle] {
    font-size: 16px !important; line-height: 24px !important;
  }
  .ugc-box {
    width: 50% !important; float: left !important; box-sizing: border-box !important;
  }
  [class=ugc-box] {
    width: 50% !important; float: left !important; box-sizing: border-box !important;
  }
  .pad-ugc {
    padding: 2px !important;
  }
  [class=pad-ugc] {
    padding: 2px !important;
  }
  .app-install-mobile {
    width: 164px !important;
  }
  [class=app-install-mobile] {
    width: 164px !important;
  }
  td.width16 {
    width: 16px !important;
  }
  td[class=width16] {
    width: 16px !important;
  }
  .width-24 {
    width: 24px !important;
  }
  [class=width-24] {
    width: 24px !important;
  }
  td.width24 {
    width: 24px !important;
  }
  td[class=width24] {
    width: 24px !important;
  }
  td.header-title {
    font-size: 48px !important; line-height: 48px !important;
  }
  td[class=header-title] {
    font-size: 48px !important; line-height: 48px !important;
  }
  td.flight-alert-title {
    font-size: 32px !important; line-height: 40px !important;
  }
  td[class=flight-alert-title] {
    font-size: 32px !important; line-height: 40px !important;
  }
  td.flight-alert-subtitle {
    font-size: 16px !important; line-height: 24px !important;
  }
  td[class=flight-alert-subtitle] {
    font-size: 16px !important; line-height: 24px !important;
  }
  td.flight-alert-h3 {
    font-size: 20px !important; line-height: 24px !important;
  }
  td[class=flight-alert-h3] {
    font-size: 20px !important; line-height: 24px !important;
  }
  td.pad-horizontal-8 {
    padding-left: 8px !important; padding-right: 8px !important;
  }
  td[class=pad-horizontal-8] {
    padding-left: 8px !important; padding-right: 8px !important;
  }
  .pad-bottom-16 {
    padding-bottom: 16px !important;
  }
  [class=pad-bottom-16] {
    padding-bottom: 16px !important;
  }
  .pad-bottom-40 {
    padding-bottom: 40px !important;
  }
  [class=pad-bottom-40] {
    padding-bottom: 40px !important;
  }
  .pad-bottom-48 {
    padding-bottom: 48px !important;
  }
  [class=pad-bottom-48] {
    padding-bottom: 48px !important;
  }
  .pad-vertical-16 {
    padding-top: 16px !important; padding-bottom: 16px !important;
  }
  [class=pad-vertical-16] {
    padding-top: 16px !important; padding-bottom: 16px !important;
  }
  td.pad-horizontal-12 {
    padding-left: 12px !important; padding-right: 12px !important;
  }
  td[class=pad-horizontal-12] {
    padding-left: 12px !important; padding-right: 12px !important;
  }
  td.pad-horizontal-16 {
    padding-left: 16px !important; padding-right: 16px !important;
  }
  td[class=pad-horizontal-16] {
    padding-left: 16px !important; padding-right: 16px !important;
  }
  td.banner {
    border-radius: 0px 0px 12px 12px !important; border-right: 1px solid #C2C9CD !important; border-top: 0 !important;
  }
  td[class=banner] {
    border-radius: 0px 0px 12px 12px !important; border-right: 1px solid #C2C9CD !important; border-top: 0 !important;
  }
}
  </style>
 </head>
 <body style="width: 100% !important; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0;">
  <img alt="" border="0" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fablink.sender.skyscanner.com%252Fss%252Fo%252FiRsWdWhGqjEVlCZ7vLtfTQ%252F3v3%252FOfzyakcMSMqBrH8AAVkqLg%252Fho.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhYmxpbmsuc2VuZCJ9:1pk81D:dA8mjDbaHcTgBrhKVt0d78MVcBpmfg6l1tj11mCf7P0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" width="1"/>
  <div style="display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">
   Flight deals from your local airport
  </div>
  <p style="-webkit-text-size-adjust: none; margin: 0;">
   <!-- UTM Parameters -->
   <!-- ------------------DEALS SETTINGS------------------ -->
   <!-- Number of 'sets' of deals (1,2,3) -->
   <!-- Header panel title - rotate through defaults or match top deals -->
   <!-- CTA url - for each deals panel (deals, explore) -->
   <!-- Home aiport banner (show, hide) -->
   <!-- Popular countries cards (show, hide) -->
   <!-- Show or hide the ad panel (show, hide) -->
   <!-- Ad start date YYYY-MM-DD (if blank defaults to previous Monday) -->
   <!-- Default home airport (nation, airport) -->
   <!-- TOP DEALS -->
   <!-- Where the destination values are taken from (90-day, recommended, preference, favourite, specific-theme, popular-countries, popular-cities) - leave blank for default hierarchy -->
   <!-- Specific theme for panel (if needed) - (adventure, art, beach, city, food_and_drinks, local_culture, mountain, relax, romance) -->
   <!-- Date range YYYY-MM-DD or YYYY-MM (e.g. 2021-10-20 or 2021-10 - leave blank for default next month) -->
   <!-- Number of deals (1,2,3,4,5) -->
   <!-- Final CTA (on, off) -->
   <!-- MIDDLE DEALS (if needed) -->
   <!-- Where the destination values are taken from (90-day, recommended, preference, favourite, specific-theme, popular-countries, popular-cities) - leave blank for default hierarchy -->
   <!-- Specific theme for panel (if needed) - (adventure, art, beach, city, food_and_drinks, local_culture, mountain, relax, romance) -->
   <!-- Date range YYYY-MM-DD or YYYY-MM (e.g. 2021-10-20 or 2021-10 - leave blank for default next month) -->
   <!-- Layout type (grid, list, card) -->
   <!-- Number of deals (1,2,3,4,5) -->
   <!-- Final CTA (on, off) -->
   <!-- BOTTOM DEALS (if needed) -->
   <!-- Where the destination values are taken from (90-day, recommended, preference, favourite, specific-theme, popular-countries, popular-cities) - leave blank for default hierarchy -->
   <!-- Specific theme for panel (if needed) - (adventure, art, beach, city, food_and_drinks, local_culture, mountain, relax, romance) -->
   <!-- Date range YYYY-MM-DD or YYYY-MM (e.g. 2021-10-20 or 2021-10 - leave blank for default next month) -->
   <!-- Layout type (grid, list, card) -->
   <!-- Number of deals (1,2,3,4,5) -->
   <!-- Final CTA (on, off) -->
   <!-- ------------------END DEALS SETTINGS------------------ -->
   <!-- create an array of 3 unique numbers between 1 and 17 for calling default blurbs -->
   <!-- Check what data the user has available -->
   <!-- 90 day search deals -->
   <!-- Recommended deals -->
   <!-- Themed deals -->
   <!-- end user data check -->
   <!-- DEALS API CALLS -->
   <!-- Calculate next month for defaults -->
   <!-- Top panel -->
   <!-- If flights return nothing, try basic popular countries -->
   <!-- Middle panel -->
   <!-- Bottom panel -->
   <!-- Put all deals into single list -->
   <!-- Strip out duplicates -->
   <!-- Create new list without duplicates -->
   <!-- Create single name for split points -->
   <!-- Split back into original three arrays (minus duplicates) -->
   <!-- Create three clean lists with no duplicates -->
   <!-- Turn lists into arrays -->
   <!-- Count how many in each array -->
   <!-- Make sure there are at least some deals -->
   <!-- Create link paths for deals landing page -->
   <!-- hero background -->
   <!-- global elements -->
   <!-- temporal gutters fix -->
   <!-- hotel retargeting hotels -->
   <!-- newsletter -->
   <!-- Tracking data -->
  </p>
  <table border="0" cellpadding="0" cellspacing="0" style="width: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
   <tr>
    <td bgcolor="#F1F2F8" style="-webkit-text-size-adjust: none;">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="wrapper" style="width: 680px; font-family: 'Relative', Arial, sans-serif; max-width: 680px; text-align: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="680">
      <!-- establish the theme to define the intro copy for the deal panel -->
      <!-- work out if chosen number of deals are available or not -->
      <!-- Check correct number of deals for grid/card view -->
      <!-- check there are deals and continue -->
      <!-- take one away from quantity to account for array starting at 0 -->
      <!-- pull in other user defined values -->
      <!-- assign variable starting at 1 for tracking links -->
      <!-- assign very high var for tracking cheapest price -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- check placecode is in unique list -->
      <!-- if destination has been used before skip it -->
      <!-- check destination has not already appeared in this panel -->
      <!-- Get country data -->
      <!-- assign variables against each data type -->
      <!-- get the blurb for the given city -->
      <!-- create arrays for each asset type -->
      <!-- check price is cheapest yet -->
      <!-- break the loop once correct number of unique deals returned -->
      <!-- resize font for destination if too long -->
      <!-- add 1 to deals counter and reset other values -->
      <!-- Links -->
      <!-- STANDARD HEADER -->
      <tr>
       <td bgcolor="#E70866" style="-webkit-text-size-adjust: none;">
        <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td bgcolor="#E70866" style="-webkit-text-size-adjust: none;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
            <tr>
             <td align="center" class="gutters" style="-webkit-text-size-adjust: none; padding: 36px 50px 48px;">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <!--[if !mso]><!-->
                <td align="center" class="show-mobile" colspan="2" style="display: none; padding-bottom: 48px; max-height: 0; overflow: hidden; -webkit-text-size-adjust: none;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
                  <tr>
                   <td align="center" colspan="3" style="padding-bottom: 10px; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Skyscanner" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5eb3d5529ae16836ce7fa294%252Foriginal.png%253F1588843858/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="display: block; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; margin: 0 auto; border: none;" width="31"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; padding-right: 25px; -webkit-text-size-adjust: none;">
                    <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                     Flights
                    </a>
                   </td>
                   <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; padding-right: 25px; -webkit-text-size-adjust: none;">
                    <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                     Hotels
                    </a>
                   </td>
                   <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; -webkit-text-size-adjust: none;">
                    <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                     Car rental
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
                <!--<![endif]-->
               </tr>
               <tr>
                <td class="hide-mobile" style="padding-bottom: 48px; -webkit-text-size-adjust: none;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                  <tr>
                   <td style="-webkit-text-size-adjust: none;" width="31">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Skyscanner" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5eb3d5529ae16836ce7fa294%252Foriginal.png%253F1588843858/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="31"/>
                    </a>
                   </td>
                   <td align="right" style="-webkit-text-size-adjust: none;">
                    <table align="right" border="0" cellpadding="0" cellspacing="0" role="presentation" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
                     <tr>
                      <td style="padding-right: 6px; -webkit-text-size-adjust: none;">
                       <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                        <img alt="Flights" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5eb3d55336dc7815207aad30%252Foriginal.png%253F1588843859/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="17"/>
                       </a>
                      </td>
                      <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; padding-right: 50px; -webkit-text-size-adjust: none;">
                       <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                        Flights
                       </a>
                      </td>
                      <td style="padding-right: 6px; -webkit-text-size-adjust: none;">
                       <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                        <img alt="Hotels" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5eb3d5539ae168566d7fa90e%252Foriginal.png%253F1588843859/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="15"/>
                       </a>
                      </td>
                      <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; padding-right: 50px; -webkit-text-size-adjust: none;">
                       <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                        Hotels
                       </a>
                      </td>
                      <td style="padding-right: 6px; -webkit-text-size-adjust: none;">
                       <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                        <img alt="Car rental" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5eb3d5533f0da27b68517479%252Foriginal.png%253F1588843859/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="22"/>
                       </a>
                      </td>
                      <td style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 20px; color: #FFFFFF; -webkit-text-size-adjust: none;">
                       <a style="color: #FFFFFF; text-decoration: none; -webkit-text-size-adjust: none;">
                        Car rental
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center" class="main-title" style="font-family: 'Relative', Arial, sans-serif; font-weight: bold; color: #FFFFFF; font-size: 68px; line-height: 72px; padding-bottom: 32px; -webkit-text-size-adjust: none;">
                 Plan your perfect trip
                </td>
               </tr>
               <tr>
                <td align="center" style="font-family: 'Relative', Arial, sans-serif; color: #FFFFFF; font-size: 16px; line-height: 20px; -webkit-text-size-adjust: none;">
                 Browse, book and enjoy the places and prices your fellow travelers are loving this week.
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- END STANDARD HEADER -->
      <!-- hero header -->
      <tr>
       <td bgcolor="#FFFFFF" style="padding-bottom: 48px; -webkit-text-size-adjust: none;">
        <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
         <tr>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
          <td rowspan="4" style="font-size: 0; -webkit-text-size-adjust: none;" valign="top">
           <!-- component starts -->
           <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
            <tr bgcolor="#E70866" style="">
             <td align="center" bgcolor="#E70866" class="hide-mobile" style="font-size: 0; -webkit-text-size-adjust: none;" valign="top">
              <a style="-webkit-text-size-adjust: none; color: #776f6b;">
               <img alt="Bozeman" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F36fb10240be3f09699d40326b3745f78%252FGettyImages-450758021.jpg%253Fcrop%253D632px%253A240px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="632"/>
              </a>
             </td>
             <!--[if !mso]><!-->
             <td bgcolor="#E70866" class="show-mobile" style="display: none; font-size: 0; -webkit-text-size-adjust: none;" valign="top">
              <a style="-webkit-text-size-adjust: none; color: #776f6b;">
               <img alt="Bozeman" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F36fb10240be3f09699d40326b3745f78%252FGettyImages-450758021.jpg%253Fcrop%253D343px%253A198px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
              </a>
             </td>
             <!--<![endif]-->
            </tr>
            <tr>
             <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
              <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <td class="gutters pad-vertical-24" style="-webkit-text-size-adjust: none; padding: 32px;" valign="top">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                  <tr>
                   <td style="padding-bottom: 24px; -webkit-text-size-adjust: none;" valign="top" width="100%">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" class="pad-horizontal-8" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 8px 16px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td align="left" class="hero-subtitle" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 20px; line-height: 28px; direction: ltr; padding-bottom: 8px; white-space: nowrap; -webkit-text-size-adjust: none;">
                          <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                           <strong class="hero-title" style="font-size: 32px; line-height: 40px; white-space: normal;">
                            Bozeman,
                           </strong>
                           United States
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                          May​ 18​ -​ May​ 28
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding-bottom: 48px; -webkit-text-size-adjust: none;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td align="left" class="font16" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                       Change of scenery due? We’ve got you. Check out fresh deals to Bozeman and beyond today.
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="-webkit-text-size-adjust: none;" valign="top">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 25px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 25px;" valign="middle">
                       <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; text-align: center; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                        Flights from $59 round trip
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
           <!-- component ends -->
          </td>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
         </tr>
         <tr>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
         </tr>
         <tr>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
          <td bgcolor="#E70866" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
         </tr>
         <tr>
          <td bgcolor="#FFFFFF" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
          <td bgcolor="#FFFFFF" class="width16" style="-webkit-text-size-adjust: none;" width="24">
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- end hero header -->
      <tr>
       <td bgcolor="#FFFFFF" style="padding-bottom: 24px; -webkit-text-size-adjust: none;">
        <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td bgcolor="#FFFFFF" class="edges" style="-webkit-text-size-adjust: none; padding: 0 24px 8px;">
           <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
            <tr>
             <td align="left" class="h2-title" style="font-family: 'Relative', Arial, sans-serif; font-weight: bold; font-size: 32px; line-height: 40px; color: #161616; direction: ltr; padding-bottom: 8px; -webkit-text-size-adjust: none;">
              Explore your favorite destinations
             </td>
            </tr>
            <tr>
             <td align="left" style="font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; color: #545860; direction: ltr; -webkit-text-size-adjust: none;">
              Here’s where other hopeful travelers are looking at this week.
             </td>
            </tr>
           </table>
          </td>
         </tr>
         <tr>
          <td style="-webkit-text-size-adjust: none;">
           <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
            <tr>
             <td style="font-size: 0; -webkit-text-size-adjust: none;" valign="top">
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Kauai Island" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Kauai Island" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               Kauai Island,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 23​ -​ May​ 28
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Check a city off the bucket list and book that trip! We've found the best flight deals for Kauai Island.
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $137
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="San Angelo" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="San Angelo" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               San Angelo,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 2​ -​ May​ 8
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Book flights, hotels and car rentals for San Angelo in one fell swoop! Head over to our app or website to search for deals.
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $370
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <td style="font-size: 1px; -webkit-text-size-adjust: none;">
                </td>
               </tr>
              </table>
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Carlsbad" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F24513f5aa5b50ef9a8afc892cdebde6a%252FGettyImages-173491842.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Carlsbad" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F24513f5aa5b50ef9a8afc892cdebde6a%252FGettyImages-173491842.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               Carlsbad,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 6​ -​ May​ 12
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Ready for adventure? Put a trip to Carlsbad on the agenda. Explore deals now.
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $112
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Amarillo" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Amarillo" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               Amarillo,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 3​ -​ May​ 9
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Relaxing break in order? Or maybe it’s time for an adventure. Check out the latest deals to Amarillo today.
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $152
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <td style="font-size: 1px; -webkit-text-size-adjust: none;">
                </td>
               </tr>
              </table>
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Imperial" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Imperial" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F12b715db2fe88a58ee57ae99b985b32a%252FGettyImages-153734070.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               Imperial,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 2​ -​ May​ 8
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Swap the same old for the sights and sounds of Imperial! See the latest deals on flights, hotels and car rentals now. ✈️🏨🚘
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $161
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <!-- article -->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td class="edges pad-top-16" style="-webkit-text-size-adjust: none; padding: 24px 0 0 24px;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="304">
                  <tr>
                  </tr>
                  <tr>
                   <td class="hide-mobile" style="font-size: 0; display: block; -webkit-text-size-adjust: none;">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Merced" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F0eb7041a3819d2f5d6f3ae9b59d17849%252FGettyImages-89902827.jpg%253Fcrop%253D304px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="304"/>
                    </a>
                   </td>
                   <!--[if !mso]><!-->
                   <td class="show-mobile" style="font-size: 0; display: none; -webkit-text-size-adjust: none;" valign="top">
                    <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                     <img alt="Merced" src="https://inboxflows.com/_/image/https%253A%252F%252Fcontent.skyscnr.com%252F0eb7041a3819d2f5d6f3ae9b59d17849%252FGettyImages-89902827.jpg%253Fcrop%253D343px%253A177px%2526quality%253D70/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb250ZW50LnNreSJ9:1pk81D:D2vh2PIJsT8mJk9aL-vYwbg_l6_1ob1WaApFgGaYDL8" style="border-radius: 12px 12px 0px 0px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="100%"/>
                    </a>
                   </td>
                   <!--<![endif]-->
                  </tr>
                  <tr>
                   <td style="border-right-color: #C2C9CD; border-right-style: solid; border-left-color: #C2C9CD; border-left-style: solid; border-bottom-color: #C2C9CD; border-bottom-style: solid; border-radius: 0px 0px 12px 12px; -webkit-text-size-adjust: none; border-width: 0 1px 1px;">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                     <tr>
                      <td class="pad-horizontal-16" style="-webkit-text-size-adjust: none; padding: 16px 12px 24px;" valign="top">
                       <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                        <tr>
                         <td background="https://inboxflows.com/_/image/%2523FBFBFB/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzRkJGQkZCIn0:1pk81D:975cwV_o-2E8wQOxc6pXov0Ng9L6IHLqoNJdnnY7nBc" bgcolor="#FBFBFB" style="border-top-width: 1px; border-top-color: #f0f0f3; border-top-style: solid; -webkit-text-size-adjust: none; padding: 6px 12px;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 4px; -webkit-text-size-adjust: none;">
                             <a style="color: #161616; text-decoration: none; -webkit-text-size-adjust: none;">
                              <strong style="font-size: 24px; line-height: 28px;">
                               Merced,
                              </strong>
                              United States
                             </a>
                            </td>
                           </tr>
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                             May​ 3​ -​ May​ 9
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                        <tr>
                         <td style="-webkit-text-size-adjust: none; padding: 8px 12px 0;" valign="top">
                          <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                           <tr>
                            <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 14px; line-height: 20px; direction: ltr; padding-bottom: 32px; border-bottom-width: 1px; border-bottom-color: #CDCDD7; border-bottom-style: dashed; -webkit-text-size-adjust: none;">
                             Looking for a break? Search and book deals to Merced today and start getting excited! 🤩
                            </td>
                           </tr>
                           <tr>
                            <td style="padding-top: 16px; -webkit-text-size-adjust: none;" valign="top">
                             <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                              <tr>
                               <td style="padding-right: 8px; -webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;">
                                   Flights from
                                  </td>
                                 </tr>
                                 <tr>
                                  <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #161616; font-size: 24px; line-height: 28px; font-weight: bold; direction: ltr; -webkit-text-size-adjust: none;">
                                   $300
                                  </td>
                                 </tr>
                                </table>
                               </td>
                               <td style="-webkit-text-size-adjust: none;" valign="top">
                                <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
                                 <tr>
                                  <td align="center" bgcolor="#05203C" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 11px 16px 13px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 16px;" valign="middle">
                                   <a style="display: block; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                                    View
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!-- end article -->
              <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <td style="font-size: 1px; -webkit-text-size-adjust: none;">
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <tr>
       <td bgcolor="#FFFFFF" class="edges" style="font-size: 0; -webkit-text-size-adjust: none; padding: 0px 24px 32px;">
        <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td bgcolor="#FFFFFF" class="full-width pad-horizontal-16" style="mso-padding-alt: 6px 25px; border-radius: 8px; -webkit-text-size-adjust: none; padding: 0 25px; border: 1px solid #c2c9cd;" width="100%">
           <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
            <tr>
             <td align="left" style="font-size: 0; padding-right: 10px; -webkit-text-size-adjust: none;" valign="middle">
              <a style="display: block; text-decoration: none; mso-padding-alt: 12px 0; -webkit-text-size-adjust: none; color: #776f6b; padding: 12px 0;">
               <img alt="Search for more destinations" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F63594493c5b4f61e7e6ebcf6%252Foriginal.png%253F1666794643/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="20"/>
              </a>
             </td>
             <td align="left" style="font-family: 'Relative', Arial, sans-serif; -webkit-text-size-adjust: none;" valign="middle" width="100%">
              <a style="display: block; text-decoration: none; font-size: 16px; line-height: 24px; color: #545860; width: 100%; mso-padding-alt: 6px 0; -webkit-text-size-adjust: none; padding: 6px 0;">
               Search for more destinations
              </a>
             </td>
            </tr>
           </table>
          </td>
          <td class="full-width" style="font-size: 0; -webkit-text-size-adjust: none; padding: 4px;">
          </td>
          <td align="center" bgcolor="#05203C" class="full-width pad-top-6 pad-bottom-6" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 6px 25px; border-radius: 8px; white-space: nowrap; -webkit-text-size-adjust: none; padding: 0 25px;" valign="middle">
           <a style="text-decoration: none; font-size: 20px; line-height: 24px; font-weight: bold; color: #FFFFFF; width: 100%; mso-padding-alt: 12px 0; -webkit-text-size-adjust: none; padding: 12px 0;">
            Go
           </a>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <tr>
       <td bgcolor="#FFFFFF" class="edges" style="-webkit-text-size-adjust: none; padding: 0 24px 30px;">
        <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td style="padding-right: 20px; -webkit-text-size-adjust: none;" valign="top" width="32">
           <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5f4f59763092112aa29d2267%252Foriginal.png%253F1599035766/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="32"/>
          </td>
          <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #545860; font-size: 12px; line-height: 16px; direction: ltr; -webkit-text-size-adjust: none;" valign="top">
           <strong>
            How did we find these deals?
           </strong>
           They're simply the lowest fares we found for these destinations within the last 4 days, and are subject to change and availability.
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- BANNER DATA -->
      <!-- Adjustable top border -->
      <tr>
       <td bgcolor="#FFFFFF" class="edges" style="-webkit-text-size-adjust: none; padding: 0 24px 30px;">
        <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td bgcolor="#0062E3" class="pad-horizontal-16" style="border-radius: 12px; -webkit-text-size-adjust: none; padding: 24px;">
           <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width pad-bottom-16" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="120">
            <tr>
             <td align="center" style="-webkit-text-size-adjust: none;" width="100%">
              <img alt="Hand holding a cell phone showing Explore Everywhere icon" class="app-install-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F62b09449fef54270d8cd9215%252Foriginal.png%253F1655739465/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="120"/>
             </td>
            </tr>
           </table>
           <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="428">
            <tr>
             <td class="pad-left-0" style="padding-left: 36px; -webkit-text-size-adjust: none;">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
               <tr>
                <td align="left" style="padding-bottom: 8px; font-family: 'Relative', Arial, sans-serif; font-weight: bold; color: #FFFFFF; font-size: 20px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;">
                 Explore everywhere from anywhere
                </td>
               </tr>
               <tr>
                <td align="left" style="font-family: 'Relative', Arial, sans-serif; color: #FFFFFF; font-size: 16px; line-height: 24px; direction: ltr; -webkit-text-size-adjust: none;" valign="top">
                 Get straight-to-your-pocket travel inspo and epic deals on flights, hotels and car rentals, wherever you are.
                </td>
               </tr>
               <tr>
                <td style="padding-top: 24px; -webkit-text-size-adjust: none;">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
                  <tr>
                   <td align="center" bgcolor="#FFFFFF" class="hide-mobile" style="mso-padding-alt: 11px 55px 13px; border-radius: 4px; direction: ltr; -webkit-text-size-adjust: none; padding: 0 55px;" valign="middle">
                    <a style="font-family: 'Relative', Arial, sans-serif; font-size: 20px; line-height: 24px; font-weight: bold; color: #161616; display: block; text-decoration: none; width: 100%; mso-padding-alt: 8px 0; -webkit-text-size-adjust: none; padding: 11px 0 13px;">
                     Get the app
                    </a>
                   </td>
                  </tr>
                  <!--[if !mso]><!-->
                  <tr>
                   <td class="show-mobile" style="display: none; max-height: 0; overflow: hidden; padding-bottom: 10px; -webkit-text-size-adjust: none;">
                    <table align="center" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
                     <tr>
                      <td style="padding-right: 10px; -webkit-text-size-adjust: none;">
                       <a style="text-decoration: none; -webkit-text-size-adjust: none; color: #776f6b;">
                        <img alt="Download on the App Store" height="44" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5de7e121b0c2be5492626154%252Foriginal.png%253F1575477537/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="height: 44px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;"/>
                       </a>
                      </td>
                      <td style="-webkit-text-size-adjust: none;">
                       <a style="text-decoration: none; -webkit-text-size-adjust: none; color: #776f6b;">
                        <img alt="Android app on Google Play" height="44" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5de7eb0736dc7805d39c0a24%252Foriginal.png%253F1575480071/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="height: 44px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <!--<![endif]-->
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- FEEDBACK -->
      <tr>
       <td bgcolor="#FFFFFF" class="pad-left-16" style="border-top-width: 1px; border-top-color: #DDDDE5; border-top-style: solid; -webkit-text-size-adjust: none; padding: 5px 0 5px 24px;">
        <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="49%">
         <tr>
          <td style="font-family: 'Relative', Arial, sans-serif; color: #111236; font-size: 16px; line-height: 20px; padding-top: 23px; -webkit-text-size-adjust: none;">
           <a style="color: #111236; text-decoration: none; -webkit-text-size-adjust: none;">
            Got a minute? Tell us how we're doing.
           </a>
          </td>
         </tr>
        </table>
        <table align="right" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: right; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="49%">
         <tr>
          <td align="left" style="color: #000000; -webkit-text-size-adjust: none;" valign="top">
           <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
            <tr>
             <td style="padding-top: 13px; -webkit-text-size-adjust: none;">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td align="center" style="font-family: 'Relative', Arial, sans-serif; mso-padding-alt: 9px 25px 11px; font-size: 16px; line-height: 20px; color: #111236; border-radius: 6px; -webkit-text-size-adjust: none; padding: 0 25px; border: 1px solid #111236;" valign="middle">
                 <a style="display: block; text-decoration: none; font-weight: bold; color: #111236; width: 100%; mso-padding-alt: 6px 0; -webkit-text-size-adjust: none; padding: 9px 0 11px;">
                  Rate this email
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
          <td align="right" style="padding-top: 0; -webkit-text-size-adjust: none;" valign="top">
           <img alt="A hand holding a microphone" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5f16a75e0932cf0baf1b2762%252Foriginal.png%253F1595320158/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="91"/>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- END FEEDBACK -->
      <!-- FOOTER -->
      <!-- Universal check to make sure strings aren't empty in comms -->
      <!-- Links -->
      <!-- Default airport -->
      <!-- Assign home airport if user has one -->
      <!-- If they have one - check if it is explicit or inferred -->
      <!-- Connect to Travel API to get airport name -->
      <tr>
       <td bgcolor="#02122C" class="gutters" style="-webkit-text-size-adjust: none; padding: 40px 50px;">
        <table border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="100%">
         <tr>
          <td style="color: #FFFFFF; padding-bottom: 20px; -webkit-text-size-adjust: none;">
           <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
            <tr>
             <td style="padding-right: 30px; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;" valign="top">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td style="padding-right: 10px; -webkit-text-size-adjust: none;">
                 <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                  <img alt="Flights" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5d9323369ae1681cc2b25475%252Foriginal.png%253F1569923894/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="40"/>
                 </a>
                </td>
                <td class="hide-mobile" style="direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Flights
                 </a>
                </td>
               </tr>
               <!--[if !mso]><!-->
               <tr class="show-mobile" style="display: none; max-height: 0; overflow: hidden;">
                <td style="padding-top: 12px; direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Flights
                 </a>
                </td>
               </tr>
               <!--<![endif]-->
              </table>
             </td>
             <td style="padding-right: 30px; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;" valign="top">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td style="padding-right: 10px; -webkit-text-size-adjust: none;">
                 <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                  <img alt="Hotels" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5f02f4c3c1a57a60105d7ab2%252Foriginal.png%253F1594029251/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="40"/>
                 </a>
                </td>
                <td class="hide-mobile" style="direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Hotels
                 </a>
                </td>
               </tr>
               <!--[if !mso]><!-->
               <tr class="show-mobile" style="display: none; max-height: 0; overflow: hidden;">
                <td style="padding-top: 12px; direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Hotels
                 </a>
                </td>
               </tr>
               <!--<![endif]-->
              </table>
             </td>
             <td style="padding-right: 30px; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;" valign="top">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;">
               <tr>
                <td style="padding-right: 10px; -webkit-text-size-adjust: none;">
                 <a style="-webkit-text-size-adjust: none; color: #776f6b;">
                  <img alt="Car rental" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5d93233698cf4b43bbe8493f%252Foriginal.png%253F1569923894/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="40"/>
                 </a>
                </td>
                <td class="hide-mobile" style="direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Car rental
                 </a>
                </td>
               </tr>
               <!--[if !mso]><!-->
               <tr class="show-mobile" style="display: none; max-height: 0; overflow: hidden;">
                <td style="padding-top: 12px; direction: ltr; -webkit-text-size-adjust: none;">
                 <a style="text-decoration: none; color: #FFFFFF; font-family: 'Relative', Arial, sans-serif; font-size: 16px; line-height: 24px; font-weight: bold; -webkit-text-size-adjust: none;">
                  Car rental
                 </a>
                </td>
               </tr>
               <!--<![endif]-->
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
         <tr>
          <td align="left" style="font-family: 'Relative', Arial, sans-serif; font-size: 12px; color: #FFFFFF; line-height: 16px; padding-bottom: 18px; direction: ltr; -webkit-text-size-adjust: none;">
           We don’t have a home airport on record for you so we’ve automatically set it to United States.
           <a style="font-weight: bold; text-decoration: underline; color: #FFFFFF; -webkit-text-size-adjust: none;">
            <span style="color: #FFFFFF;">
             Change your home airport here.
            </span>
           </a>
          </td>
         </tr>
         <tr>
          <td align="left" style="font-family: 'Relative', Arial, sans-serif; font-size: 12px; color: #FFFFFF; line-height: 16px; padding-bottom: 18px; direction: ltr; -webkit-text-size-adjust: none;">
           Registered​ Office:​ Skyscanner​ Ltd,​ Floor​ 11,​ Regent's​ Place,​ 338​ Euston​ Road,​ London​ NW1​ 3BT,​ UK. UK Company Number: 04217916; VAT Registration Number: GB 208148618
          </td>
         </tr>
         <tr>
          <td style="-webkit-text-size-adjust: none;">
           <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="70%">
            <tr>
             <td style="font-family: 'Relative', Arial, sans-serif; font-size: 12px; color: #FFFFFF; line-height: 16px; padding-top: 4px; direction: ltr; -webkit-text-size-adjust: none;">
              <a style="font-weight: bold; text-decoration: underline; color: #FFFFFF; -webkit-text-size-adjust: none;">
               <span style="color: #FFFFFF;">
                Unsubscribe
               </span>
              </a>
              |
              <a style="font-weight: bold; text-decoration: underline; color: #FFFFFF; -webkit-text-size-adjust: none;">
               <span style="color: #FFFFFF;">
                Edit My Preferences
               </span>
              </a>
              <span class="hide-mobile">
               |
              </span>
              <!--[if !mso]><!-->
              <span class="show-mobile" style="display: none; max-height: 0; overflow: hidden;">
              </span>
              <!--<![endif]-->
              <a style="font-weight: bold; text-decoration: underline; color: #FFFFFF; -webkit-text-size-adjust: none;">
               <span style="color: #FFFFFF;">
                Privacy Policy
               </span>
              </a>
              |
              <a style="font-weight: bold; text-decoration: underline; color: #FFFFFF; -webkit-text-size-adjust: none;">
               <span style="color: #FFFFFF;">
                Contact us
               </span>
              </a>
             </td>
            </tr>
           </table>
           <table align="right" border="0" cellpadding="0" cellspacing="0" class="full-width" style="float: right; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border: 0;" width="26%">
            <tr>
             <td align="right" class="footer-logo" style="-webkit-text-size-adjust: none;">
              <a style="-webkit-text-size-adjust: none; color: #776f6b;">
               <img alt="Skyscanner" height="25" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.braze.eu%252Fappboy%252Fcommunication%252Fassets%252Fimage_assets%252Fimages%252F5d93385343c19d4442eff709%252Foriginal.png%253F1569929299/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYnJhemUuZSJ9:1pk81D:dTOb5FgRG1a35JRoXoo_BX7wvQAJ3aWQVhuyPJX6GpU" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: none;" width="141"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <!-- END FOOTER -->
     </table>
    </td>
   </tr>
  </table>
 </body>
</html>