* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, *, *::before, *::after {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 450;
  scroll-behavior: smooth;
  line-height: 1.5;
  list-style-type: none;
  text-decoration: none;
}

body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(25rem, 75rem) 1fr;
      grid-template-columns: 1fr minmax(25rem, 75rem) 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  background-color: #1f3a6f;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#0b1a3b), color-stop(#1f3a6f), to(#d4005f));
  background-image: linear-gradient(to bottom right, #0b1a3b, #1f3a6f, #d4005f);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #0b1a3b;
  margin: 0;
  padding: 0;
}

/* TYPOGRAPHY SETTINGS */
/***********************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 3.75rem;
  font-weight: 400;
  margin-bottom: 3.75rem;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.25rem;
}

h4 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

p, ul, ol, table {
  margin-bottom: 2rem;
}

a, a:visited {
  color: #0b1a3b;
}

a:hover {
  color: #1f3a6f;
}

strong {
  font-weight: 700;
}

.fontMagnified * {
  font-size: 1.2rem;
}

.alert {
  background-color: rgba(212, 0, 95, 0.5);
  border-radius: 0.3125rem;
  padding: 0.5rem;
}

/* Basic FORM Formatting */
form label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: bold;
}

form input, form textarea, form select {
  color: #0b1a3b;
  border-radius: 0.3125rem;
  border: solid 1px #bbb;
  padding: 0.5rem;
}

form .mandatoryField label {
  background: url("../img/asterisk.png") center left no-repeat;
  background-size: auto;
  padding-left: 1.5625rem;
}

form .mandatoryFieldIncomplete label {
  background-color: rgba(212, 0, 95, 0.25);
  padding: 0.3125rem 0.3125rem 0.3125rem 1.5625rem;
  border-radius: 0.4375rem;
}

form .optionGroup {
  padding: 1rem;
  border: solid 1px rgba(31, 58, 111, 0.4);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

form .optionGroup label {
  font-weight: normal;
}

/* HELPER CLASSES */
.transparent {
  opacity: 0;
}

.invisible {
  visibility: hidden;
  opacity: 0;
}

.visible {
  visibility: visible;
  opacity: 1;
}

.overflowHidden {
  overflow: hidden;
}

.rotate180 {
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Safari */
  transform: rotate(180deg);
}

.round {
  border-radius: 50%;
}

.rounded {
  border-radius: 20%;
}

.whiteborder {
  border: solid 1px #fff;
}

.whiteborder_3px {
  border: solid 3px #fff;
}

.whiteborder_5px {
  border: solid 5px #fff;
}

.number {
  font-family: sans-serif;
}

/* HELPER CLASSES - SPACING */
/****************************/
.margin0 {
  margin: 0;
}

.marginRight {
  margin-right: 1rem;
}

.link {
  color: #0b1a3b;
  padding: 1px 4px;
  border-radius: 5px;
  background-color: #f7ea78;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
  border-bottom: solid 1px #1f3a6f;
}

.link:hover {
  color: #020320;
  background-color: #ebc21e;
}

.bookmark {
  display: block;
  height: 5rem;
}

.button {
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#09814a), to(#098124));
  background-image: linear-gradient(to bottom right, #09814a, #098124);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0.5rem 1.5625rem;
  border-radius: 0.625rem;
  border: solid 1px #09814a;
  -webkit-box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.75);
          box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.75);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 80%;
  -webkit-transition: opacity 150ms ease-in-out, border-color 150ms ease-in-out, border-width 150ms ease-in-out;
  transition: opacity 150ms ease-in-out, border-color 150ms ease-in-out, border-width 150ms ease-in-out;
}

.button:visited {
  color: #fff;
}

.button:hover {
  opacity: 100%;
  border-color: #fff;
  color: #fff;
}

.button:active {
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
}

.button_Reset {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#d4005f), to(#83003a));
  background-image: linear-gradient(to bottom right, #d4005f, #83003a);
  margin-left: 1rem;
  border: solid 1px #d4005f;
}

.expandingImage {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
}

.highlightOnHover {
  opacity: 80%;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.highlightOnHover:hover {
  opacity: 100%;
}

/* HELPER CLASSES - ALIGNMENT */
.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

/* HELPER CLASSES - SIZE */
.w-Full {
  width: 100%;
}

.w-Half {
  width: 50%;
}

.w-1x4 {
  width: 25%;
}

.w-3x4 {
  width: 75%;
}

/* HELPER CLASSES - FLEX */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* HELPER CLASSES - ANIMATION */
.boing:hover {
  -webkit-animation: TwistAndZoom 600ms ease-in-out 1;
          animation: TwistAndZoom 600ms ease-in-out 1;
}

.bounceTwice {
  -webkit-animation: Bounce 2s ease-in-out;
          animation: Bounce 2s ease-in-out;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

@-webkit-keyframes TwistAndZoom {
  from {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(1.1) rotate(2deg);
            transform: scale(1.1) rotate(2deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
}

@keyframes TwistAndZoom {
  from {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(1.1) rotate(2deg);
            transform: scale(1.1) rotate(2deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
}

@-webkit-keyframes SlideInFromRight {
  from {
    left: 200%;
  }
  to {
    left: 0;
  }
}

@keyframes SlideInFromRight {
  from {
    left: 200%;
  }
  to {
    left: 0;
  }
}

@-webkit-keyframes Bounce {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  to {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes Bounce {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  to {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

.icon {
  display: inline-block;
  min-height: 2rem;
  min-width: 2rem;
}

.icon_Medium {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.icon_Large {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

.icon_XLarge {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
}

.icon_Smartphone {
  background: url("../img/icons/smartphone_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_Phone {
  background: url("../img/icons/phone_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_Phone_Blue {
  border: solid 5px #fff;
  background-image: url("../img/icons/phone_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/phone_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_Phone_BlueGreen {
  background-image: url("../img/icons/phone_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/phone_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_Home {
  background: url("../img/icons/home_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_About {
  background: url("../img/icons/about_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_Services {
  background: url("../img/icons/services_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_Contact {
  background: url("../img/icons/contact_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_CriminalLaw {
  background: url("../img/icons/criminal_icon.svg") top left no-repeat;
  background-size: 100% 100%;
}

.icon_CriminalLaw_BlueGreen {
  background-image: url("../img/icons/criminal_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/criminal_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_CivilLaw {
  background: url("../img/icons/civil_icon.svg") top left no-repeat;
  background-size: 100% 100%;
}

.icon_CivilLaw_BlueGreen {
  background-image: url("../img/icons/civil_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/civil_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_FamilyLaw {
  background: url("../img/icons/family_icon.svg") top left no-repeat;
  background-size: 70% 70%;
  background-position: center center;
}

.icon_FamilyLaw_BlueGreen {
  background-image: url("../img/icons/family_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/family_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_ArbitrationLaw {
  background: url("../img/icons/arbitration_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_ArbitrationLaw_BlueGreen {
  background-image: url("../img/icons/arbitration_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/arbitration_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_BankingLaw {
  background: url("../img/icons/banking_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_BankingLaw_BlueGreen {
  background-image: url("../img/icons/banking_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/banking_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_ConsumerLaw {
  background: url("../img/icons/consumer_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_ConsumerLaw_BlueGreen {
  background-image: url("../img/icons/consumer_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/consumer_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_CompanyLaw {
  background: url("../img/icons/company_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_CompanyLaw_BlueGreen {
  background-image: url("../img/icons/company_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/company_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon_ITLaw {
  background: url("../img/icons/it_icon.svg") top left no-repeat;
  background-size: cover;
}

.icon_ITLaw_BlueGreen {
  background-image: url("../img/icons/it_icon.svg"), -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#09814a));
  background-image: url("../img/icons/it_icon.svg"), linear-gradient(to bottom right, #1f3a6f, #09814a);
  background-size: 70% 70%, auto;
  background-position: center center;
  background-repeat: no-repeat;
}

/* TOP MENU BAR SETTINGS */
/*************************/
section#MenuBar {
  width: 100%;
  height: 4.375rem;
  -webkit-transition: height 300ms ease-in-out, background-image 300ms ease-in-out;
  transition: height 300ms ease-in-out, background-image 300ms ease-in-out;
  margin: 0;
  padding: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  top: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 3, 32, 0.85)), to(rgba(2, 3, 32, 0.65)));
  background-image: linear-gradient(to bottom, rgba(2, 3, 32, 0.85), rgba(2, 3, 32, 0.65));
  z-index: 1000;
  /* Add the blur effect */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

section#MenuBar.MenuBarExpanded {
  height: 100vh;
  background-image: url("../img/bkgnd_overlay_2.svg"), -webkit-gradient(linear, left top, left bottom, from(#0b1a3b), color-stop(12.5rem, #020320), color-stop(12.5625rem, rgba(2, 3, 32, 0.9)), to(rgba(2, 3, 32, 0.8)));
  background-image: url("../img/bkgnd_overlay_2.svg"), linear-gradient(to bottom, #0b1a3b, #020320 12.5rem, rgba(2, 3, 32, 0.9) 12.5625rem, rgba(2, 3, 32, 0.8));
  background-position: right bottom;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

section#MenuBar nav {
  margin: 0 auto;
  width: 100%;
  min-width: 25rem;
  max-width: 75rem;
  padding: 0;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section#MenuBar nav a {
  margin-right: 3.125rem;
}

section#MenuBar nav a, section#MenuBar nav a:visited {
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-bottom-color: rgba(247, 234, 120, 0);
  -webkit-transition: color 200ms, border-bottom-color 400ms;
  transition: color 200ms, border-bottom-color 400ms;
}

section#MenuBar nav a.active {
  color: #ebc21e;
}

section#MenuBar nav a:hover {
  color: #f7ea78;
  border-bottom: solid 1px rgba(247, 234, 120, 0.5);
}

section#MenuBar nav a#HomeLink {
  padding: 0;
  border: 0;
  margin-left: 3.125rem;
}

section#MenuBar nav a#HomeLink #HomeLogo {
  -webkit-transition: margin 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: margin 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, margin 300ms ease-in-out;
  transition: transform 300ms ease-in-out, margin 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

section#MenuBar nav a#HomeLink #HomeLogo.HomeLogoEnlarged {
  -webkit-transform: scale(2);
          transform: scale(2);
  margin-left: 4.6875rem;
  margin-top: 10rem;
}

section#MenuBar nav #MenuToggle {
  display: inline-block;
  width: 2.1875rem;
  height: 2.1875rem;
  margin-right: 3.125rem;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(31, 58, 111, 0)), to(rgba(11, 26, 59, 0)));
  background-image: linear-gradient(to bottom right, rgba(31, 58, 111, 0), rgba(11, 26, 59, 0));
  border-radius: 35%;
  -webkit-transition: background-color 200ms ease-in-out, background-image 300ms ease-in-out;
  transition: background-color 200ms ease-in-out, background-image 300ms ease-in-out;
  cursor: pointer;
  position: relative;
}

section#MenuBar nav #MenuToggle #MenuToggleX, section#MenuBar nav #MenuToggle #MenuToggleButton, section#MenuBar nav #MenuToggle #MenuToggleButton2 {
  -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
  transition: opacity 400ms ease-in-out, transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

section#MenuBar nav #MenuToggle.menuToggleActive {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#098124), to(#1f3a6f));
  background-image: linear-gradient(to bottom right, #098124, #1f3a6f);
}

section#MenuBar nav #MenuToggle:hover {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#098124));
  background-image: linear-gradient(to bottom right, #1f3a6f, #098124);
}

section#MenuBar nav #MenuOptions a i {
  display: none;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed {
  position: fixed;
  top: 125px;
  left: 0rem;
  width: 100%;
  text-align: left;
  padding: 6.25rem 0rem 0rem 3.125rem;
  z-index: 1001;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a {
  color: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0rem 0rem 0.5rem 0rem;
  border-bottom: solid 1px #1f3a6f;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  background-image: url("../img/bkgnd_menu_revealed.svg");
  background-repeat: repeat-x;
  background-position: left top;
  -webkit-transition: background-position 300ms ease-in-out;
  transition: background-position 300ms ease-in-out;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  position: relative;
  -webkit-animation: SlideInFromRight 600ms ease-in-out 1;
          animation: SlideInFromRight 600ms ease-in-out 1;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a:first-child {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a:active, section#MenuBar nav #MenuOptions.menuOptionsRevealed a:hover {
  background-position: left bottom;
  color: #fff;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a.active {
  background-image: url("../img/bkgnd_menu_revealed_active.svg");
  border-top-color: #fff;
  border-left-color: #a9e5bb;
  border-bottom-color: #a9e5bb;
  color: #fff;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a i {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-size: cover;
  margin-right: 2rem;
  opacity: 60%;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

section#MenuBar nav #MenuOptions.menuOptionsRevealed a:hover i, section#MenuBar nav #MenuOptions.menuOptionsRevealed a:active i, section#MenuBar nav #MenuOptions.menuOptionsRevealed a.active i {
  opacity: 100%;
}

#BackToStart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: block;
  height: 70px;
  z-index: 999;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

#BackToStart #BackToStartButton {
  display: block;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

main {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  margin: 0;
  -webkit-box-shadow: 0rem 0rem 0.625rem rgba(0, 0, 0, 0.5);
          box-shadow: 0rem 0rem 0.625rem rgba(0, 0, 0, 0.5);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 400px auto auto;
      grid-template-rows: 400px auto auto;
}

main.home {
  -ms-grid-rows: 100vh auto auto;
      grid-template-rows: 100vh auto auto;
}

header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr minmax(300px, 1fr) 50px;
      grid-template-columns: 50px 1fr minmax(300px, 1fr) 50px;
  height: 400px;
  overflow: hidden;
}

header #HeroText {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: left;
      align-content: left;
}

header #HeroText * {
  max-width: 300px;
}

header #HeroText h1 {
  font-size: 3.75rem;
  font-weight: 300;
  color: #fff;
  padding-top: 3.75rem;
  font-family: "Oswald", sans-serif;
  margin-bottom: 0;
}

header #HeroText .description {
  color: #f7ea78;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

header #HeroImage {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  background-image: url("../img/header_overlay_3.svg"), url("../img/header_overlay_1.svg"), url("../img/header_bkgnd_1.jpg");
  background-size: auto, auto, cover;
  background-position: right bottom, center bottom, center center;
  background-repeat: no-repeat;
}

header #HeroImage img {
  display: none;
}

header #HeroImage.heroContact {
  background-image: url("../img/header_overlay_3.svg"), url("../img/header_overlay_1.svg"), url("../img/header_bkgnd_contact.jpg");
}

header #HeroScroller {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-bottom: 2.5rem;
}

header #HeroScroller #HeroScrollerButton {
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  -webkit-animation: Bounce 2s ease-in-out;
          animation: Bounce 2s ease-in-out;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

header.home {
  height: 100vh;
  min-height: 580px;
}

header.home #HeroText h1 {
  text-transform: uppercase;
  background: url("../img/jalegal_voga.png") top left no-repeat;
  padding-top: 90px;
  margin-bottom: 2rem;
}

header.home #HeroText h1 span {
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 1.7rem;
  font-weight: 300;
  color: #f7ea78;
}

header.home #HeroText h1 span:first-child {
  display: none;
}

header.home #HeroText #CompanyIntro {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}

header.home #HeroText #MakeAppointmentButton {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#ebc21e), to(#d4005f));
  background-image: linear-gradient(to bottom right, #ebc21e, #d4005f);
  font-weight: 350;
  font-size: 1.3rem;
  border-color: rgba(255, 255, 255, 0);
  z-index: 50;
  color: #fff;
}

header.home #HeroText #MakeAppointmentButton:hover {
  border-color: #fff;
}

header.home #HeroText #MakeAppointmentButton:active {
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
}

header.home #HeroImage {
  background-image: url("../img/header_overlay_2.svg"), url("../img/header_overlay_1.svg"), url("../img/header_bkgnd_3.jpg");
  background-position: right center, center bottom, center center;
}

/* CONTENT Section */
/*******************/
section#Content {
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(25%, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2)));
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2));
  padding: 50px 2vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10vh 2vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

section#Content article {
  padding: 3.125rem 5% 2% 5%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), color-stop(12.5rem, rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0.35)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7) 12.5rem, rgba(255, 255, 255, 0.35));
  border-radius: 1.5625rem;
  border: solid 1px rgba(255, 255, 255, 0.35);
  /* Add the blur effect */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Add drop shadow */
  -webkit-box-shadow: 0rem 0rem 1.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0rem 0rem 1.25rem rgba(0, 0, 0, 0.15);
}

section#Content article .articleHeading h2 {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#d4005f), color-stop(#1f3a6f), to(#0b1a3b));
  background-image: linear-gradient(to bottom right, #d4005f, #1f3a6f, #0b1a3b);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

section#Content article .articleContent ul {
  padding-left: 1rem;
}

section#Content article .articleContent ul li {
  list-style-type: disc;
  padding-left: 1rem;
}

section#Content article .articleContent ul li ul {
  margin-bottom: 0;
}

section#Content article .articleContent ul li ul li {
  list-style-type: circle;
}

section#Content article .articleContent ul#ServicesList {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

section#Content article .articleContent ul#ServicesList li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

section#Content article .articleContent ul#ServicesList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  justify-items: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background-image: url("../img/bkgnd_animation_white_blue.svg");
  background-position: left top;
  background-repeat: repeat-x;
  border: solid 1px #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #1f3a6f;
  -webkit-transition: background-image 300ms ease-in-out, background-position 300ms ease-in-out;
  transition: background-image 300ms ease-in-out, background-position 300ms ease-in-out;
}

section#Content article .articleContent ul#ServicesList li a:hover, section#Content article .articleContent ul#ServicesList li a:active {
  background-position: left bottom;
}

section#Content article .articleContent ul#ServicesList li a i {
  margin-right: 1rem;
}

section#Content article .articleContent h3 i {
  margin-right: 1rem;
}

section#Content article .articleContent .bioSummary {
  width: 100%;
  background: #0b1a3b;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#1f3a6f), to(#0b1a3b));
  background-image: linear-gradient(to bottom right, #1f3a6f, #0b1a3b);
  color: #fff;
  padding: 2.1875rem 2.1875rem 1rem 2.1875rem;
  border-radius: 1.25rem;
  border: solid 2px #1f3a6f;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

section#Content article .articleContent .bioSummary h3 {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#ebc21e));
  background-image: linear-gradient(to bottom right, #fff, #ebc21e);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

section#Content article .articleContent .bioSummary img {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  border: solid 5px #fff;
  border-radius: 15%;
  -webkit-box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
}

section#Content article .articleContent .bioSummary:hover img {
  opacity: 100%;
}

section#Content article .articleContent .bioSummary .button {
  color: #fff;
}

footer {
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(31, 58, 111, 0.8)), color-stop(rgba(11, 26, 59, 0.85)), to(rgba(2, 3, 32, 0.9)));
  background-image: linear-gradient(to bottom right, rgba(31, 58, 111, 0.8), rgba(11, 26, 59, 0.85), rgba(2, 3, 32, 0.9));
  color: #fff;
  padding: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 50px;
  font-size: 1.2rem;
  /* Add the blur effect */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

footer h2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ebc21e));
  background-image: linear-gradient(to bottom, #fff, #ebc21e);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  border-bottom: solid 1px #f7ea78;
}

footer i {
  margin-right: 1rem;
}

#SiteCredits {
  background: #020320;
  padding: 3.125rem 3.125rem 0 3.125rem;
  color: #fff;
}

/* DISCLAIMER */
#Disclaimer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 3, 32, 0.95);
  z-index: 1002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Disclaimer__Modal {
  width: 80%;
  max-width: 640px;
  border-radius: 20px;
  -webkit-box-shadow: 0rem 0rem 0.625rem rgba(0, 0, 0, 0.9);
          box-shadow: 0rem 0rem 0.625rem rgba(0, 0, 0, 0.9);
  padding: 3rem 2rem 0rem 2rem;
  background: #1f3a6f;
  color: #fff;
}

#Disclaimer__Modal h2 {
  margin-bottom: 4rem;
}

@media screen and (max-width: 39.9375rem) {
  body {
    min-width: 22rem;
  }
  .hide_small_down {
    display: none;
  }
}

@media screen and (min-width: 40rem) {
  .hideMediumAndUp {
    display: none;
  }
}

@media screen and (max-width: 63.9375rem) {
  .hideMediumAndDown {
    display: none;
  }
}

@media screen and (min-width: 64rem) {
  .hideLargeAndUp {
    display: none;
  }
  section#MenuBar nav #MenuToggle.hideLargeAndUp {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */