/* CSS Document */
/* CSS Document */
* {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Palanquin', sans-serif;
  font-size: 18px;
  color: #333; }

a {
  text-decoration: none;
  color: #006DB6;
  transition: .3s ease; }
  a:hover {
    color: orange; }

h1 {
  font-family: 'Oswald';
  font-size: 3rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 0; }

h2 {
  font-family: 'Oswald';
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #666; }

h3 {
  font-family: 'Oswald';
  font-size: 2rem;
  font-weight: 100;
  margin: 0 0 25px 0;
  padding: 0;
  color: #000; }

h4 {
  font-family: 'Oswald';
  font-size: 1.2rem;
  margin: 0;
  padding: 0; }

p {
  margin: 0 0 15px;
  padding: 0;
  line-height: 1.4rem; }

li {
  margin: 0 0 5px;
  padding: 0;
  line-height: 1.4rem; }

sup {
  font-size: .5em; }

main {
  display: flex;
  flex-direction: column; }

section {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 320px; }

article {
  display: block;
  flex-direction: column;
  flex-basis: auto;
  padding: 20px; }

.hiliteAMD {
  color: #009A66;
  font-weight: bold; }

.hiliteAintel {
  color: #0071c5; }

.textGreen {
  color: green; }

.textBlue {
  color: #0071c5; }

.textRed {
  color: #009A66; }

.textOrange {
  color: darkorange; }

@media only screen and (min-width: 769px) {
  body, html {
    min-width: 1200px; }

  article {
    flex-basis: 1200px;
    width: 1200px;
    margin: auto; } }
@media only screen and (min-width: 421px) and (max-width: 768px) {
  section {
    flex-basis: auto; }

  article {
    flex-basis: auto; }

  h1 {
    font-size: 2.5em;
    line-height: auto; }

  h2 {
    font-size: 1.8em;
    line-height: 1.2em; }

  h3 {
    font-size: 1.7em; } }
@media only screen and (max-width: 420px) {
  body, html {
    font-size: 15px; }

  section {
    flex-basis: auto; }

  article {
    min-width: 320px; }

  h1 {
    font-size: 2em;
    line-height: auto; }

  h2 {
    font-size: 1.6em;
    line-height: 1.1em; }

  h3 {
    font-size: 1.5em; } }
/* CSS Document */
header {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0; }

nav {
  font-family: 'Oswald'; }
  nav .icon, nav .icon:hover {
    float: right;
    display: block;
    background: none;
    color: white;
    font-size: 25px;
    line-height: 1em; }
  nav .nav-open {
    padding-top: 46px; }

@media only screen and (min-width: 769px) {
  header {
    display: flex;
    flex-direction: row;
    flex-basis: 1200px;
    width: 1200px;
    margin: auto; }

  .headerLogo {
    flex: 0 0 190px; }
    .headerLogo img {
      height: 28px;
      margin: 10px 20px; }

  nav {
    overflow: hidden;
    flex: 1 auto; }
    nav ul {
      margin: 0;
      padding: 0;
      text-align: right; }
      nav ul li {
        display: inline-block;
        text-decoration: none;
        margin: 0;
        padding: 0;
        text-transform: uppercase; }
        nav ul li a {
          display: block;
          color: #FFF;
          text-decoration: none;
          padding: .5em .8em;
          margin: 0;
          font-size: 1.1rem; }
          nav ul li a:hover {
            background: #EEE; }
      nav ul .dropdown:hover > ul {
        opacity: 1;
        left: auto;
        transform: scale(1, 1); }
      nav ul .dropdownSub:before {
        content: "\25B8";
        position: absolute;
        right: 5px;
        bottom: 25%; }
      nav ul .dropdownSub:hover > ul {
        opacity: 1;
        transform: scale(1, 1); }
      nav ul ul {
        position: absolute;
        background-color: #EEE;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0;
        transition: .3s ease;
        transform: scale(1, 0);
        transform-origin: top; }
        nav ul ul li {
          display: block;
          position: relative; }
        nav ul ul a {
          float: none;
          color: black;
          padding: 8px 15px;
          text-decoration: none;
          display: block;
          text-align: left;
          text-transform: none;
          font-size: 1rem; }
          nav ul ul a:hover {
            background-color: #ddd;
            color: black; }
        nav ul ul ul {
          background-color: #CCC;
          min-width: 100%;
          left: 100%;
          top: 0; }
    nav ul ul li a:hover > ul li a:hover {
      background: #EEE; }
    nav .icon {
      display: none; } }
@media only screen and (min-width: 421px) and (max-width: 768px) {
  header {
    display: block; }

  .nav-state {
    display: none; }

  .headerLogo {
    float: left; }
    .headerLogo img {
      height: 28px;
      margin: 10px 20px; }

  nav a {
    text-decoration: none;
    display: block;
    padding: 10px;
    background: #EEE;
    color: #333; }
    nav a:hover {
      background-color: #ddd;
      color: black; }
  nav li {
    display: block; }
  nav ul {
    margin: 0 0 1px 0;
    padding: 0; }
    nav ul li {
      margin: 0;
      text-transform: uppercase; }
    nav ul ul li a {
      padding-left: 30px;
      text-transform: none; } }
@media only screen and (max-width: 420px) {
  header {
    display: block;
    min-width: 320px; }

  .nav-state {
    display: none; }

  .headerLogo {
    float: left; }
    .headerLogo img {
      height: 25px;
      margin: 10px; }

  nav a {
    text-decoration: none;
    display: block;
    padding: 10px;
    background: #EEE;
    color: #333; }
    nav a:hover {
      background-color: #ddd;
      color: black; }
  nav li {
    display: block; }
  nav ul {
    margin: 0 0 1px 0;
    padding: 0; }
    nav ul li {
      margin: 0;
      text-transform: uppercase; }
    nav ul ul li a {
      padding-left: 30px;
      text-transform: none; } }
/* CSS Document */
footer {
  display: flex;
  color: #999;
  background: #222;
  line-height: 1.25em;
  position: relative;
  font-size: .7em; }
  footer section {
    height: 400px;
    width: 1200px;
    margin: auto;
    position: relative; }
  footer div {
    flex: 1; }
  footer a {
    color: #80CCFF; }
  footer .ldalogo {
    height: 45px; }
  footer .address {
    margin-top: 20px; }
  footer .socialmedia {
    margin-top: 20px; }
    footer .socialmedia img {
      height: 25px;
      margin-right: 5px; }
      footer .socialmedia img:hover {
        transform: scale(1.2); }
  footer .xlilinxAPM {
    margin-top: 20px; }
    footer .xlilinxAPM img {
      height: 60px; }
  footer .copyright {
    position: absolute;
    bottom: 20px; }
  footer .info {
    padding: 15px 0 15px 20px;
    position: relative; }
  footer .sitemap {
    flex-grow: 2;
    padding: 58px 40px 20px;
    height: 100%; }
    footer .sitemap ul {
      padding: 30px 0 0;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      width: 100%;
      height: 100%;
      margin: 0; }
      footer .sitemap ul ul {
        padding: 0;
        display: block;
        margin-top: 5px; }
      footer .sitemap ul li {
        margin-bottom: 10px;
        list-style: none;
        flex: 0 0 auto;
        line-height: 1.4em;
        text-transform: uppercase; }
        footer .sitemap ul li a {
          color: #EEE; }
      footer .sitemap ul li li {
        margin: 0;
        text-transform: none; }
        footer .sitemap ul li li:before {
          content: "- "; }
        footer .sitemap ul li li a {
          color: #80CCFF; }
          footer .sitemap ul li li a:hover {
            color: orange; }
  footer .twitterfeed {
    padding: 78px 0 20px; }

@media only screen and (min-width: 421px) and (max-width: 768px) {
  footer .sitemap {
    display: none; } }
@media only screen and (max-width: 420px) {
  footer {
    font-size: .9em; }
    footer section {
      height: auto; }
    footer .info {
      padding: 20px;
      border: 1px solid green;
      width: 100%;
      display: block; }
    footer .ldalogo {
      display: block;
      margin: 0 auto;
      height: 50px; }
    footer .address {
      text-align: center; }
    footer .socialmedia {
      text-align: center; }
      footer .socialmedia img {
        height: 40px;
        margin: 5px; }
    footer .copyright {
      float: left;
      position: relative;
      bottom: auto;
      width: 125px;
      margin-top: 15px;
      font-size: .8em;
      line-height: 1.4em; }
    footer .xlilinxAPM {
      float: right;
      width: auto; }
      footer .xlilinxAPM img {
        height: 50px; }
    footer .sitemap, footer .twitterfeed {
      display: none; } }
.lottie-animation svg {
  height: auto !important; }

.bgHeader {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important; }

.bgGray {
  background: black;
  background: linear-gradient(153deg, black 0%, #666666 100%); }

.bgSilverGrad {
  background: -moz-linear-gradient(-45deg, #b8e1fc 0%, #a9d2f3 10%, #90bae4 25%, #90bcea 37%, #90bff0 50%, #6ba8e5 51%, #a2daf5 83%, #bdf3fd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #b8e1fc 0%, #a9d2f3 10%, #90bae4 25%, #90bcea 37%, #90bff0 50%, #6ba8e5 51%, #a2daf5 83%, #bdf3fd 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #b8e1fc 0%, #a9d2f3 10%, #90bae4 25%, #90bcea 37%, #90bff0 50%, #6ba8e5 51%, #a2daf5 83%, #bdf3fd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.pContact {
  display: flex;
  flex-wrap: wrap; }
  .pContact div {
    flex: 1;
    min-width: 175px;
    border: 1px solid #EEE;
    padding: 10px;
    margin: 5px; }
    .pContact div:first-child {
      margin-left: 0; }
    .pContact div:last-child {
      margin-right: 0; }

.pHome, .pHomeBasic {
  position: relative; }
  .pHome .title, .pHomeBasic .title {
    position: absolute;
    bottom: 0;
    background: white;
    width: 100% !important; }

.pHome {
  flex-basis: calc(100vh - 100px); }
  .pHome img {
    position: absolute;
    max-height: 70%;
    max-width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.pSpecs {
  background: url("/_images/bg_cubes.jpg") center top no-repeat;
  background-size: cover; }
  .pSpecs article {
    min-height: 400px; }

.pDownloads {
  background: #EEE; }

.featTabs {
  font-size: .9em !important;
  /*-- Vertical tabs --------*/
  /*-- Accordion styles ------*/ }
  .featTabs .boardSpecific {
    display: flex !important;
    position: relative;
    flex-wrap: wrap; }
    .featTabs .boardSpecific .boardSpecificImage {
      flex: 1;
      min-width: 250px; }
      .featTabs .boardSpecific .boardSpecificImage img {
        width: 100%; }
    .featTabs .boardSpecific .boardSpecificText {
      flex: 1;
      padding-left: 10px;
      min-width: 280px; }
      .featTabs .boardSpecific .boardSpecificText ul {
        padding-left: 20px; }
  .featTabs .neoband {
    display: flex !important;
    position: relative; }
    .featTabs .neoband div:nth-child(1) {
      flex: 0 0 30%; }
      .featTabs .neoband div:nth-child(1) img {
        max-width: 100%;
        max-height: 280px;
        object-fit: cover; }
    .featTabs .neoband div:nth-child(2) {
      flex: 1 1 auto;
      padding-left: 20px; }
      .featTabs .neoband div:nth-child(2) ul {
        padding-left: 10px; }
  .featTabs .veloCT {
    display: flex !important;
    position: relative; }
    .featTabs .veloCT div:nth-child(1) {
      flex: 0 0 100%; }
      .featTabs .veloCT div:nth-child(1) img {
        max-width: 100%;
        object-fit: cover; }
    .featTabs .veloCT div:nth-child(2) {
      flex: 1 1 auto;
      padding-left: 20px; }
      .featTabs .veloCT div:nth-child(2) ul {
        padding-left: 10px; }
  .featTabs ul.resp-tabs-list {
    margin: 0px;
    padding: 0px; }
  .featTabs .resp-tabs-list li {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left; }
  .featTabs .resp-tabs-container {
    padding: 0px;
    margin-bottom: 20px;
    background-color: #fff;
    clear: left;
    box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.1); }
  .featTabs h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
    font-size: 13px;
    border: 1px solid #EEE;
    border-top: 0px solid #EEE;
    margin: 0px;
    padding: 10px 15px; }
    .featTabs h2.resp-accordion:first-child {
      border-top: 1px solid #EEE; }
  .featTabs .resp-tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #EEE; }
  .featTabs .resp-tab-active {
    border: 1px solid #EEE !important;
    border-bottom: none;
    margin-bottom: -1px !important;
    padding: 6px 14px 11px 14px !important;
    border-top: 4px solid #EEE !important;
    border-bottom: 0px #fff solid !important;
    border-bottom: none;
    background-color: #fff; }
  .featTabs .resp-content-active {
    display: block; }
  .featTabs .resp-accordion-active {
    display: block; }
  .featTabs h2.resp-tab-active {
    border-bottom: 0px solid #EEE !important;
    margin-bottom: 0px !important;
    padding: 10px 15px !important;
    background: #EEE; }
    .featTabs h2.resp-tab-active span.resp-arrow {
      border: none;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 12px solid #EEE; }
  .featTabs h2.resp-tab-title:last-child {
    border-bottom: 12px solid #EEE !important;
    background: blue; }
  .featTabs .resp-vtabs {
    display: flex !important; }
    .featTabs .resp-vtabs .resp-tabs-list {
      flex: 1 1 auto;
      white-space: nowrap; }
      .featTabs .resp-vtabs .resp-tabs-list li {
        display: block;
        padding: 10px 15px !important;
        margin: 0 0 4px;
        cursor: pointer;
        float: none; }
    .featTabs .resp-vtabs .resp-tabs-container {
      padding: 0px;
      background-color: #fff;
      border: 1px solid #EEE;
      flex: 20 1 auto;
      min-height: 250px;
      border-radius: 4px;
      clear: none; }
    .featTabs .resp-vtabs .resp-tab-content {
      border: none;
      word-wrap: break-word; }
    .featTabs .resp-vtabs li.resp-tab-active {
      position: relative;
      z-index: 1;
      margin-right: -1px !important;
      padding: 14px 15px 15px 14px !important;
      border-top: 1px solid;
      border: 1px solid #EEE !important;
      border-left: 4px solid #EEE !important;
      margin-bottom: 4px !important;
      border-right: 1px #FFF solid !important; }
  .featTabs .resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #EEE; }
  .featTabs .resp-easy-accordion h2.resp-accordion {
    display: block; }
  .featTabs .resp-easy-accordion .resp-tab-content {
    border: 1px solid #EEE; }
    .featTabs .resp-easy-accordion .resp-tab-content:last-child {
      border-bottom: 1px solid #EEE; }
  .featTabs .resp-jfit {
    width: 100%;
    margin: 0px; }
  .featTabs .resp-tab-content-active {
    display: block; }
  @media only screen and (max-width: 768px) {
    .featTabs ul.resp-tabs-list {
      display: none; }
    .featTabs h2.resp-accordion {
      display: block; }
    .featTabs .resp-vtabs .resp-tab-content {
      border: 1px solid #EEE; }
      .featTabs .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #EEE !important; }
    .featTabs .resp-vtabs .resp-tabs-container {
      border: none;
      float: none;
      width: 100%;
      min-height: 100px;
      clear: none; }
    .featTabs .resp-accordion-closed {
      display: none !important; } }

.featHomeNavigation {
  display: flex;
  flex-wrap: wrap; }
  .featHomeNavigation a {
    flex: 1;
    min-width: 250px;
    max-width: 48.5%;
    background: white;
    color: #333;
    border: 1px solid #EEE;
    border-radius: 4px;
    margin: 10px;
    padding: 10px;
    vertical-align: top;
    cursor: pointer;
    transition: .3s ease;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1); }
    .featHomeNavigation a div {
      margin-bottom: 20px;
      padding: 20px;
      height: 250px;
      display: flex;
      align-items: center;
      border: 1px solid #EEE;
      background-size: cover !important;
      background-position: center center !important;
      position: relative; }
      .featHomeNavigation a div:after {
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
        content: '';
        height: 100%;
        position: absolute;
        width: 100%;
        margin-left: -20px; }
    .featHomeNavigation a img {
      max-height: 100%;
      max-width: 100%;
      object-fit: cover;
      margin: auto; }
    .featHomeNavigation a p {
      font-size: .8em;
      margin: 0; }
    .featHomeNavigation a:hover {
      transform: scale(1.01);
      box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05); }
      .featHomeNavigation a:hover div {
        background: #80CCFF; }

.featHighlightLinks a {
  display: block;
  margin: 10px 20px; }
  .featHighlightLinks a div {
    border-left: 10px solid #006DB6;
    transition: .3s ease; }
    .featHighlightLinks a div:first-child {
      font-weight: bold;
      font-size: 1.1em;
      padding: 0 20px;
      background: #EEE; }
    .featHighlightLinks a div:last-child {
      border-bottom: 1px solid #EEE;
      border-right: 1px solid #EEE;
      border-top: none;
      padding: 0 20px 0 30px; }
  .featHighlightLinks a:hover div {
    border-left: 10px solid orange;
    color: orange; }
    .featHighlightLinks a:hover div:first-child {
      padding-left: 30px; }
    .featHighlightLinks a:hover div:last-child {
      padding-left: 40px; }

.featGallery {
  display: flex;
  flex-wrap: wrap; }
  .featGallery a {
    text-decoration: none;
    flex: 0 0 auto;
    padding: 5px;
    margin: 0;
    width: 25%;
    position: relative;
    transition: .3s ease; }
    .featGallery a:hover {
      transform: scale(1.025); }
  .featGallery img {
    background-color: #CCC;
    width: 100%;
    margin: 0;
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.5); }

.tableSpecsA {
  height: 100%;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap; }
  .tableSpecsA dl {
    margin: 5px; }
  .tableSpecsA dt, .tableSpecsA dd {
    padding: 1px 10px;
    margin-bottom: 2px; }
  .tableSpecsA dt {
    background: white;
    font-family: 'Oswald';
    font-weight: 500;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2); }
  .tableSpecsA dd {
    background: rgba(255, 255, 255, 0.66);
    border-bottom: solid 1px #CCC;
    margin: 1px;
    font-size: .9em; }

.featTableBasic {
  border: 1px solid #EEE;
  font-size: .9em;
  width: 100%;
  margin-bottom: 30px;
  border-spacing: 1px; }
  .featTableBasic th {
    background: #EEE;
    padding: 10px; }
  .featTableBasic td {
    border: 1px solid #EEE;
    padding: 0 10px; }

.featDownloads a {
  position: relative;
  transition: .3s ease;
  width: 100%;
  display: block;
  margin-bottom: 20px;
  padding: 5px;
  cursor: pointer;
  border: 1px solid #CCC;
  color: #666;
  background: white; }
  .featDownloads a:hover {
    border: 1px solid #006DB6; }
  .featDownloads a .detail, .featDownloads a .desc {
    margin-left: 60px;
    font-size: .8em;
    line-height: 1.2em; }
  .featDownloads a .detail {
    display: flex;
    flex-wrap: wrap;
    color: #006DB6; }
    .featDownloads a .detail div:first-of-type {
      flex: 1 auto;
      font-weight: bold; }
    .featDownloads a .detail div:last-of-type {
      flex: 0; }
      .featDownloads a .detail div:last-of-type span {
        margin: auto 10px;
        white-space: nowrap; }
      .featDownloads a .detail div:last-of-type span:first-of-type {
        margin-left: 0; }
  .featDownloads a .desc {
    font-style: italic;
    margin-top: 5px; }
  .featDownloads a img {
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    height: 64px; }

.featYouTube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.1); }
  .featYouTube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px; }

.featSideLink {
  float: right;
  width: 250px;
  padding: 10px;
  border: 1px solid #EEE;
  border-radius: 3px;
  font-size: .8rem; }
  .featSideLink img {
    height: 140px;
    width: 230px;
    background: grey; }

.featMindshare .article {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  border: 1px solid #EEE;
  border-radius: 5px;
  margin-bottom: 30px;
  background: #ebf1f6;
  background: linear-gradient(135deg, #ebf1f6 0%, #abd3ee 69%, #89c3eb 71%, #d5ebfb 100%);
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.2); }
.featMindshare .image {
  display: block;
  height: 100%;
  width: 35%;
  background: #EEE;
  float: left;
  margin-right: 20px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important; }
.featMindshare .title {
  font-family: 'Oswald';
  font-size: 1.5em;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.5); }
.featMindshare .content {
  font-size: 1em;
  padding: 10px; }
.featMindshare .category {
  position: absolute;
  bottom: -1px;
  right: -1px;
  text-transform: uppercase;
  background: white;
  border: 1px solid #EEE;
  display: block;
  padding: 2px 5px;
  line-height: 1em;
  text-align: center;
  font-weight: 400; }

.bulletsA {
  list-style: none;
  font-size: 1.1rem; }
  .bulletsA li {
    margin-bottom: 1.5rem; }
  .bulletsA ul {
    list-style: square;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 1rem; }
    .bulletsA ul li {
      margin-bottom: 5px; }
  .bulletsA ul ul {
    list-style: disc; }

.gsc-control-cse {
  padding: 0 !important; }

.gs-title {
  font-family: 'Palanquin' !important;
  font-size: 1rem !important;
  line-height: 1rem !important; }

.gs-webResult .gs-visibleUrl {
  font-family: 'Palanquin' !important;
  font-size: 0.8rem !important;
  line-height: 0.9rem !important; }

.gs-snippet {
  font-family: 'Palanquin' !important;
  font-size: 0.9rem !important;
  line-height: 0.9rem !important; }

.gcsc-more-maybe-branding-root {
  display: none; }

@media only screen and (min-width: 769px) {
  .pHome, .pHomeBasic {
    position: relative; }
    .pHome .title, .pHomeBasic .title {
      min-width: 1200px;
      height: 150px;
      padding-left: 40px; }
    .pHome .content, .pHomeBasic .content {
      width: 1200px;
      margin: 30px auto 0; }

  .pHome {
    flex-basis: calc(100vh - 100px); }

  .pHomeBasic {
    flex-basis: 350px; }
    .pHomeBasic .title {
      padding-left: 40px;
      min-width: 1200px; } }
@media only screen and (min-width: 421px) and (max-width: 768px) {
  .pHome {
    flex-basis: calc(80vh - 30px); }
    .pHome .title {
      height: 125px;
      padding: 0 20px; }
    .pHome .content {
      width: 100%;
      margin: 30px auto 0; }

  .pSpecs {
    flex-basis: auto; }
    .pSpecs article {
      flex-basis: auto; }
    .pSpecs .tableSpecsA {
      flex-basis: auto; }

  .pHomeBasic {
    flex-basis: 300px; }
    .pHomeBasic .title {
      padding-left: 20px; } }
@media only screen and (max-width: 420px) {
  .pHome {
    flex-basis: calc(80vh - 100px); }
    .pHome .title {
      height: 100px;
      padding: 0 20px; }
    .pHome .content {
      width: 100%;
      margin: auto; }

  .pHomeBasic {
    flex-basis: 250px; }
    .pHomeBasic .title {
      padding-left: 20px; }

  .pSpecs article {
    min-height: AUTO; }

  .p1 img {
    min-width: auto;
    max-width: 100%; }

  .tableSpecsA {
    display: block;
    margin: 0; }
    .tableSpecsA dl {
      margin: 0 0 10px 0; }
    .tableSpecsA dt, .tableSpecsA dd {
      padding: 1px 10px;
      margin-bottom: 2px; }
    .tableSpecsA dt {
      background: white;
      font-family: 'Oswald';
      font-weight: 500;
      box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2); }
    .tableSpecsA dd {
      background: rgba(255, 255, 255, 0.66);
      border-bottom: solid 1px #CCC;
      margin: 1px;
      font-size: .9em; }

  .featHighlightLinks a {
    margin: 10px 20px; }
    .featHighlightLinks a div:first-child {
      font-size: 1em;
      padding: 0 10px; }
    .featHighlightLinks a div:last-child {
      padding: 5px 20px;
      line-height: 1.3em; }
    .featHighlightLinks a:hover div:first-child {
      padding-left: 20px; }
    .featHighlightLinks a:hover div:last-child {
      padding-left: 30px; }

  .featMindshare .article {
    height: 175px; }
  .featMindshare .image {
    display: none; }
  .featMindshare .title {
    font-size: 1.5em; }
  .featMindshare .content {
    font-size: 1em; } }
