/*******************************************************************************
  Overide default styles and styles for standard HTML tags
*******************************************************************************/
* {
  box-sizing: inherit;
  margin: 0px;
  padding: 0px;
}

*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

body {
  border: 0;
  color: #181A1C;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  min-width: 300px;
  vertical-align: baseline;
}

ul,
ol {
  list-style: none;
}

p,
li {
  font-size: 1.8rem;
}

a {
  color: #0091ea;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  line-height: 0;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

button {
  background: transparent;
  border: 0;
  outline: 0;
}

/*******************************************************************************
  Frequently used classes
*******************************************************************************/
.display-flex {
  display: flex;
}

.width-100 {
  width: 100%
}

/*******************************************************************************
  Specific styles
*******************************************************************************/
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #000;
  height: 40px;
  width: 100%;
}

.main-container {
  background: #FFF;
  margin: 0 auto;
  padding: 10%;
  width: 100%;
  max-width: 1440px;
}

@media only screen and (min-device-width : 769px) {
  .split-sections-holder {
    content: "";
    clear: both;
    display: table;
  }
}

.image-holder {
  width: 45%;
}

@media only screen and (max-device-width : 768px) {
  .image-holder {
    width: 100%;
  }
}

@media only screen and (min-device-width : 769px) {
  .image-holder {
    float: left;
    margin-top: 35px;
  }
}

.rotate-5 {
  transform: rotate(-5deg);
}

@media only screen and (max-device-width : 768px) {
  .image-holder {
    width: 100%;
  }
}

@media only screen and (max-device-width : 768px) {
  .description-holder {
    margin-top: 15%;
  }
}

@media only screen and (min-device-width : 769px) {
  .description-holder {
    float: left;
    margin-left: 5%;
    width: 50%;
  }
}

.description-title {
  font-size: 3.6em;
  font-weight: bold;
}

.description-message {
  font-size: 2em;
  margin: 3em 0;
}

@media only screen and (max-device-width : 768px) {
  .description-message {
    margin: 1.5em 0;
  }
}

@media only screen and (max-device-width : 768px) {
  .action-items-holder {
    flex-direction: column;
  }
}

.button-primary {
  background-color: #E3720F;
  border-radius: 4px;
  color: #FFF;
  display: block;
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 257px;
}

.try-again-link-holder {
  color: #0A5D7C;
  font-size: 20px;
  height: 50px;
  line-height: 25px;
  margin-left: 20px;
  padding: 11px;
  width: 166px;
}

@media only screen and (max-device-width : 768px) {
  .try-again-link-holder {
    margin: 1.5rem 0 0 0;
  }
}