﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
  --blue: #587ABC;
  --orange: #FF6600;
  --dark-gray: #3D3935;
}
.orange-text { color: var(--orange);}
.blue-text { color: var(--blue);}
.black-text { color: black; }
.gray-text { color: var(--dark-gray); }
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: var(--blue);
  color: white;
  position: fixed;
  z-index: 100;
}
.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  color: white;
  padding: 0;
  max-width: 100% !important;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-basis: 65%;
}
.navbar .container .top-disclaimer {
  flex-basis: 100%;
  text-align: right;
}
.navbar .container .top-disclaimer p {
  font-size: 11px;
  margin: 0;
}
.navbar-nav > p {
  flex-basis: 100%;
  text-align: right;
  font-size: 12px;
  margin: 0;
}
.navbar-nav li:first-of-type { margin-right: 20px;}
.nav-item .nav-link {
  color: white;
  font-weight: 300;
}
.nav-item .nav-link.active {
  color: white;
  font-weight: 600
}
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
  color: white;
  align-self: flex-end;
}
/** Section Nav **/

.main-content__nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  background-color: var(--light-gray);
  position: sticky;
  position: -webkit-sticky;
  top: 71px;
  z-index: 100;
}
.main-content__nav-container {
  width: 80%;
  display: flex;
  flex-direction: row;
  height: 44px;
}

.main-content__nav-container .nav-item {
  flex-basis: 33.35%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-gray);
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: background-color  0.25s, color 0.25s;
}
.main-content__nav-container .nav-item.active {
  background-color:var(--orange);
  color: white;
}
.main-content__nav-container .nav-item:hover {
  background-color: var(--hover-gray);
  color: var(--orange);
}
.main-content__nav-container .nav-item.active:hover {
  background-color:var(--orange);
  color: white;
}

.main-content__block {
  display: flex;
  flex-direction: row;
  padding: 100px 0 0 0;
  color: var(--dark-gray);
}

.main-content__block .left-content, .main-content__block .right-content {
  display: flex;
  flex-direction: column;
}
.main-content__block .left-content {
  flex-basis: 55%;
  padding-left: 11%;
  align-items: center;
  justify-content: space-evenly;
}
.main-content__block .left-content span {
  text-align:center;
  width:100%;
}
.main-content__block .left-content p {
  margin: 10px 0 0 0;
}
.main-content__block .left-content p.sub-text {
  font-weight: lighter;
  margin: 0;
}
.main-content__block .right-content {
  flex-basis: 45%;
  padding-right: 11%;
}
span.section-link {
  color: var(--orange);
  cursor: pointer;
}
.main-content__block .right-content .section-link:hover {
  text-decoration: underline;
}
/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

.footer {
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--blue);
}
.footer .container {
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content: space-between;
  width:80%;
  padding: 100px 0;
}
.footer .container p, .footer .container a {
  font-size: 10px;
  color: white;
  margin: 0;
}
.footer .container a {
  font-weight: 600;
  margin-left: 25px;
}
.footer .left-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .right-content {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.footer .right-content .bottom-content {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
}
.cta-button {
  color: white !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  cursor:pointer;
  border-radius: 25px;
  background-color: var(--blue);
  transition: background-color .25s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--orange);
  text-decoration: none;
}
.white-text { color: white;}
@media screen and (max-width: 800px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 30px 0;
  }
  .footer .right-content {
    margin: 0;
  }
  .footer .right-content .bottom-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .right-content > p {
    margin-top: 30px;
    text-align: center;
  }
  .footer .right-content .bottom-content  a:first-of-type {
    margin-left: 0;
  }
  .footer .right-content .bottom-content p {
    flex-basis: 100%;
    text-align: center;
  }
  .main-content__nav-container {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .footer .container .bottom-content > p { margin-bottom: 10px; }
  .footer .container p, .footer .container a { font-size: 14px; }
}

@media screen and (max-width:767px) {
  .main-content__nav {
    top:65px;
  }
}
@media screen and (max-width: 550px) {
  .navbar .container {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar-nav { flex-basis: 65%; }
  .navbar-nav li:first-of-type {margin-right: 0; }
  .navbar-nav li:last-of-type {margin-left: 10px; }
  .nav-item { font-size: 12px; }
  .main-content__nav-container .nav-item.section-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 363px) {
  .navbar-nav { flex-basis: 62%; }
  .nav-link {
    padding: 2px 0;
  }
  .main-content__nav {
    top:74px;
  }
}
#speedbump {
  display: block;
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95); }
  #speedbump.hidden {
    display: none;
  }
  #speedbump .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 65%;
    text-align: center; }
    #speedbump .modal-dialog .modal-content {
      max-width: 1000px;
      width: 100%;
      margin: 0 auto;
      padding: 0 15px; }
      #speedbump .modal-dialog .modal-content .logo {
        max-width: 320px;
        margin: 0 auto 30px; }
        @media (max-width: 480px) {
          #speedbump .modal-dialog .modal-content .logo {
            max-width: 220px; } }
        #speedbump .modal-dialog .modal-content .logo img {
          width: 100%; }
      #speedbump .modal-dialog .modal-content p {
        line-height: 24px;
        font-size: 16px;
        color: var(--dark-gray);
        margin: 0 0 35px 0;
        max-width: 100%; }
        @media (max-width: 480px) {
          #speedbump .modal-dialog .modal-content p {
            margin-bottom: 20px; } }
      #speedbump .modal-dialog .modal-content .btn-modal {
        padding: 15px 25px;
        border-radius: 25px;
        border: 2px solid;
        font-size: 18px;
        line-height: 22px;
        transition: all 0.3s ease;
        background-color: #fff;
        box-sizing: border-box;
        text-align: center;
        max-width: 330px;
        margin: 0 15px;
        width: 100%;
        cursor: pointer; }
        @media (max-width: 480px) {
          #speedbump .modal-dialog .modal-content .btn-modal {
            padding: 5px 10px;
            border-radius: 7px;
            font-size: 14px;
            line-height: 20px;
            margin: 0 5px; } }
      #speedbump .modal-dialog .modal-content .btn-continue {
        border-color: var(--blue);
        color: var(--blue); }
        #speedbump .modal-dialog .modal-content .btn-continue:hover {
          background-color: var(--orange);
          border-color: var(--orange);
          color: #fff; }
      #speedbump .modal-dialog .modal-content .btn-close {
        border-color: var(--dark-gray);
        color: var(--dark-gray); }
        #speedbump .modal-dialog .modal-content .btn-close:hover {
          background-color: var(--dark-gray);
          color: #fff; }
      #speedbump .modal-dialog .modal-content .modal-footer {
        display: flex;
        justify-content: center; }

.fadeIn {
  animation: fadeIn .5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOut {
  animation: fadeOut .35s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
