/*--------------------------------------------------------------
# Colour
--------------------------------------------------------------*/

/* Main Blue: rgba(0, 46, 88, 1)

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body,
html {
  width: 100%;
  height: 100%;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

hr.divider {
  max-width: 3.25rem;
  border-width: 0.2rem;
  border-color: rgba(0, 46, 88, 1);
}

hr.light {
  border-color: #fff;
}

.btn {
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.btn-xl {
  padding: 1.25rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 10rem;
}

.page-section {
  padding: 7rem 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: rgb(33, 37, 41);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* bg-dark overrides */
.bg-dark a {
  color: #3772e2;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: background-color 0.2s ease;
}

#mainNav .navbar-brand {
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #212529;
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: #6c757d;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 0;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:active {
  color: rgba(0, 46, 88, 1);
}

#mainNav .navbar-nav .nav-item .nav-link.active {
  color: rgba(0, 46, 88, 1) !important;
}

.navbar-brand img {
  max-height: 35px;
}

@media (min-width: 992px) {
  #mainNav {
    box-shadow: none;
    background-color: transparent;
  }
  #mainNav .navbar-brand {
    color: #fff;
  }
  #mainNav .navbar-brand:hover {
    color: #fff;
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 0 1rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
  #mainNav.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
  #mainNav.navbar-scrolled .navbar-brand {
    color: #37383a;
  }
  #mainNav.navbar-scrolled .navbar-brand:hover {
    color: rgba(0, 46, 88, 1);
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: #37383a;
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
    color: rgba(0, 46, 88, 1);
  }
  #mainNav.navbar-scrolled .navbar-brand img {
    filter: none;
  }
  .navbar-brand img {
    max-height: 60px;
  }
}

/*--------------------------------------------------------------
# Masthead
--------------------------------------------------------------*/

header.masthead {
  margin-top: 77px;
  background: url("../img/sydney-skyline.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  min-height: 675px;
}

header.masthead .container .row {
  padding-top: 10%;
}

header.masthead .bg-white {
  background-color: rgba(255, 255, 255, 0.65) !important;
}

header.masthead h2 {
  font-size: 2rem;
  padding-bottom: 25px;
}
header.masthead ul {
  font-size: 1.1rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 992px) {
  header.masthead {
    margin-top: 102px;
  }
  header.masthead .container .row {
    padding-top: 5%;
  }
  header.masthead h1 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  header.masthead ul {
    font-size: 1.35rem;
  }
}

@media (min-width: 1200px) {
  header.masthead {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }
  header.masthead img {
    width: 325px;
  }
  header.masthead h1 {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Who we are
--------------------------------------------------------------*/
.who-section {
  text-align: center;
}

.who-section h3 {
  display: inline-block;
  border-bottom: 3px rgba(0, 46, 88, 1) solid;
  padding-bottom: 1.5rem;
  padding-top: 1.7rem;
  margin-bottom: 1.5rem;
}

.profile {
  margin-top: 30px;
}

.who-section img {
  width: 100%;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .who-section {
    text-align: left;
  }
  .who-section h3 {
    padding-top: 0;
  }
  .who-section img {
    padding: 0;
  }
  .profile {
    margin-top: 50px;
  }
}
/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
