* {
    box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #323130;
  font-size: 16px;
}

/* This is used in js/header.js */
body.prevent-scrolling {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  color: #2194FF;
}

.page-content-stretch-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content-stretch-container .page-content {
  flex: 1;
}

h1 {
  font-weight: bold;
  font-size: 36px;
  color: #003E4A;
  font-family: 'Raleway', sans-serif;
}
@media screen and (max-width: 1050px) {
  h1 {font-size: 20px;}
}

h2 {
  font-weight: bold;
  font-size: 24px;
  color: #003E4A;
  font-family: 'Raleway', sans-serif;
}
@media screen and (max-width: 1050px) {
  h2 {font-size: 18px;}
}

input[type="text"],
input[type="search"],
input[type="email"],
textarea,
select {
  outline: none;
  font-family: inherit;
}

.select-wrapper select {
  -webkit-appearance: none;
  padding-right: 20px;
}

.select-wrapper {
  display: inline-block;
  position: relative;
}

.select-wrapper:after {
    content: '\0025BC';
    color: #323130;
    right: 4px;
    top: 0;
    bottom: 3px;
    margin: auto 0;
    height: 14px;
    font-size: 14px;
    position: absolute;
    pointer-events: none;
}


/* Class that prevents from selecting text - used mostly for buttons. */
.noselect,
.noselect * {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
  user-drag: none;
  -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
}


/* Button */
.theme-button {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-out;
  padding: 13px 35px 15px 35px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-color: #278A99;
}

.theme-button:hover {
  background-color: #003E4A;
}