/* MAIN CSS FOR PARENT STYLING */

/* Intent: Above 1200px */
  /* Wrapper width 1200px */
  /* CSS Document */
  button,
  input,
  optgroup,
  select,
  textarea,html input[type="button"],
  input[type="reset"],
  input[type="submit"],button[disabled],
  html input[disabled],button::-moz-focus-inner,
  input::-moz-focus-inner, input[type="checkbox"],
  input[type="radio"], input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button,
  input[type="search"], input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
  	border:none;
      background-image:none;
      background-color:transparent;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
  }

  /* APPLE FIXES */
  textarea,
  input.text,hid
  input[type="text"],
  input[type="button"],
  input[type="submit"],
  .input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
  }
  /* END APPLE FIXES */

  /* GENERIC FIXES */
  .cleared:after {
    content: "";
    display: table;
    clear: both;
  } /*clearboth alt */

  *, ::after, ::before {
  	 box-sizing: content-box;
  }

  article,
  aside,
  details,
  footer,
  header,
  main,
  nav,
  time {
  	display: block;
  }

  header,
  section {
  	display: table;
  	background:white;
  	/*margin:50px 0;*/
  }

  ul, li {
  	padding:0;
  	margin:0;
  	list-style-type: none;
  }

  img {
  	display:block;
  }

  button {
  	display:block;
  	margin:0;
  	padding:0;
  	cursor: pointer;
  	border:none;
  	background:none;
  }

  	button.button-on {
  		cursor: default;
  	}

    a:link, a:visited, a:hover, a:active {
      text-decoration: none;
      margin:0;
      padding:0;
    }

    img a {
    	display:block;
    	border: none;
    }

  html,
  body {
    padding:0;
    margin:0;
  }

  h1 {
      font-family: arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
      color:#FFF;
  }

  #holding-wrapper {
    width:100%;
    height:100vh;

    display:flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;

    background-image: url('holdingpagebackground_v2.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

    #holding-card {
      width:500px;
      height:300px;

      display:flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: flex-start;

      background:#1b1b1b;

      box-shadow: 0px 5px 25px #444;
    }
        #holding-card-l {
          width:40%;
          height:300px;
        }

          #holding-card-l img {
            width:100%;
            height:300px;
            object-fit: cover;
            object-position: center center;
          }

        #holding-card-r {
          width:calc(60% - 80px);
          height:220px;
          padding:40px;

          display:flex;
          flex-flow: column nowrap;
          align-items: center;
          justify-content: center;

          font-family: arial, sans-serif;
          font-weight: 400;
          font-size: 13px;
          color:#FFF;
          text-align: center;
          line-height: 18px;
        }

          #holding-card-r a {
            color:#FFF;
            text-decoration: underline;
          }
