@charset "utf-8";

/*
	RESPONSIVE SIZES CODE

	@media (max-width: 480px) { iPhone }
	@media (max-width: 767px) { small Tablets }
	@media (min-width: 768px) and (max-width: 939px) { iPad }
	@media (min-width: 940px) { desktop }


*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700|Oxygen:400,700);

/* @font-face kit by Fonts2u (http://www.fonts2u.com) */
@font-face {
	font-family:"Melbourne";
	src:url("../fonts/Melbourne_reg.svg#Melbourne") format("svg"),url("../fonts/Melbourne_reg.ttf") format("truetype"),url("../fonts/Melbourne_reg.eot?") format("eot"),url("../fonts/Melbourne_reg.woff") format("woff");
	font-weight:normal;
	font-style:normal;
}
@font-face {
	font-family:"Melbourne-Bold";
	src:url("../fonts/Melbourne_bold.svg#Melbourne-Bold") format("svg"),url("../fonts/Melbourne_bold.ttf") format("truetype"),url("../fonts/Melbourne_bold.eot?") format("eot"),url("../fonts/Melbourne_bold.woff") format("woff");
}

body {
    background: url(/images/holdingPage/holding-page-image.jpg) no-repeat center  left 62%;;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    font-family: 'Oxygen', sans-serif !important;
    color: #333333 !important;
  }

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a {
	transition: 0.3s;
}

a:visited, a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none !important;
}

#logo {
	margin-top: 22px;
	margin-bottom: 15px;
	float: left;
}

.gh-font-montserrat {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }

  .gh-font-melbourne-regular {
    font-family: 'Melbourne-reg', Verdana, Arial, sans-serif;
  }

  .gh-font-melbourne-bold {
    font-family: 'Melbourne-Bold', Verdana, Arial, sans-serif;
  }

  .gh-section {
    padding: 2rem 0;
  }

  .gh-section-footer {
    background: #152E53;
    color: white;
  }

  .gh-section-footer p {
    margin-bottom: 0;
  }
  .gh-section-footer a {
    color: #00AEEF;
  }

  .gh-section-footer a:hover {
    color: #ADF4FF;
  }

  .gh-section-header {
    padding: 6rem 0 4rem 0;
  }
  .gh-section-header .gh-header {
    display: flex;
	justify-content: space-between;
	align-items: center;
  }

  .gh-button-login {
    background: #D2232A;
    color: white !important;
    padding: 1rem 1.5rem;
    height: fit-content;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .gh-button-login:hover {
    text-decoration: none;
    background: #d66065;
  }

  .gh-section-body {
    margin-bottom: 4rem;
  }

  .gh-section-body .gh-heading {
    color: #152E53;
    font-size: 4.6rem;
  }

  .gh-section-body .gh-subheading {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .gh-section-body .gh-text {
    font-weight: 600;
    font-size: 1.85rem;
    font-weight: 600;
    font-family: 'Melbourne-Bold', Verdana, Arial, sans-serif;
  }

  .gh-inner {
    max-width: 438px;
  }

  .gh-card {
    -webkit-box-shadow: 0px 1px 19px -2px rgba(0,0,0,0.2); 
    box-shadow: 0px 1px 19px -1px rgba(0,0,0,0.2);
    background: white;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 2rem;
    margin-top: 5rem;
    transition: 0.3s;
  }

  .gh-card:hover {
    -webkit-box-shadow: 0px 1px 19px -2px rgba(0,0,0,0.5); 
    box-shadow: 0px 1px 19px -1px rgba(0,0,0,0.5);
  }

  .gh-card a {
    color: #00B9F1;
    transition: 0.3s;
  }

  .gh-card .gh-card-section2 {
    margin-top: 2.5rem;
  }

  .gh-card a:hover {
    color: #152E53;
    font-family: 'Melbourne-Bold', Verdana, Arial, sans-serif;
  }

  ul {
    position: relative;
    list-style: none;
    font-family: "Melbourne", Verdana, Arial, sans-serif;
    font-size: 1.8rem;
    margin-left: 1rem;
  }
  li {
    padding-left: 3rem;
  }
  li::before {
    content: url(/images/holdingPage/grey-arrow.png);
    position: absolute;
    left: 0;
  }

  @media screen and (max-width: 767px) {
	.gh-section-header .gh-button-login {
	  display: none;
	}
  }

  @media (min-width: 1200px){
	.container {
		width: 970px !important;
	}
}