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

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "graphie";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #78797C;
  text-align: left;
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

p {
  font-family: "graphie";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.44rem;
  color: #78797C;
}

p.lg {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  font-size: 2.1rem;
  line-height: 3rem;
  color: #2E3743;
}
p.lg a{color:#42928F;text-decoration:underline;}
a {
  text-decoration: none;
  cursor: pointer;
}

h2 {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  font-size: 3.46rem;
  line-height: 4.3rem;
  color: #42928F;
  margin-bottom: 1.38rem;
  text-shadow:1px 1px 1px #ccc;
}

/***** TEXT ANIMATION *****/
.fade-in {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease 0.25s;
}

.fade-in[data-scroll=in] {
  opacity: 1;
  transform: translate(0, 0);
}

.inner .s1 {
  height: 100vh;
  max-height: 600px;
}
.inner .s1 .container {
  position: relative;
  top: 60%;
  transform: translateY(-50%);
}
.inner .s1 h1 {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  font-size: 5.27rem;
  line-height: 5.8rem;
  letter-spacing: -;
  color: #fff;
  text-shadow:2px 2px 2px #000;
  text-align:center;
  text-transform:uppercase;
}

/***** SECTION + CONTAINS *****/
.container {
  width: calc(100% - 2rem);
  max-width: 1360px;
  margin: 0 auto;
}

.bg-parallax-wrap {
  position: relative;
  overflow: hidden;
}

.bg-parallax {
  position: absolute;
  top: -50%;
  left: 0;
  height: 120%;
  width: 100%;
  z-index: -1;
}

/***** HEADER *****/
header {
  /* Mobile */
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  transition: background-color 0.3s ease;
  z-index: 101;
  padding: 1rem 0;
}
header .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}
header .logo {
  display: block;
  width: 294px;
  height: 129px;
  background: url(/i/logo.png) no-repeat center/contain;
  position: relative;
  z-index: 10;
  transition: width 0.3s ease;
}
header nav .wrapper {
  text-align: right;
}
header nav ul {
  list-style: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
header nav ul li a {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding-bottom: 5px;
  cursor: pointer;
  position: relative;
  text-align: center;
  background: transparent;
}
header nav ul a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
header nav ul li a:hover::after, header nav ul .selNav a::after {
  width: 100%;
}
header nav ul .login a {
  font-weight: 600;
  text-align: center;
  width: 147px;
  background-color: #fff;
  border-radius: 100px;
  font-size: 16px;
  line-height: 24px;
  color: #555F67;
  padding: 13px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header nav ul .login a::after {
  display: none;
}
header nav ul .login a:hover {
  background-color: #42928F;
  color: #fff;
}
header .menu_container {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 20px;
}
header .menu_container #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 20px;
}
header .menu_container #menu_btn i {
  transition-delay: 0.6s;
  transition: all 0.2s ease-out;
  height: 1px;
  width: 40px;
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  left: 0;
}
header .menu_container #menu_btn i:nth-child(1) {
  top: 0;
}
header .menu_container #menu_btn i:nth-child(2) {
  top: 10px;
}
header .menu_container #menu_btn i:nth-child(3) {
  top: 20px;
}

header.scroll:not(.active) {
  background: #fff;
  box-shadow: 0px 4px 23.36px 8.64px rgba(0, 0, 0, 0.05);
}
header.scroll:not(.active) .logo {
  width:176px;height:77px;
}
header.scroll:not(.active) nav ul li a {
  color: rgba(85, 95, 103, 1);
}
header.scroll:not(.active) nav ul li a::after {
  background-color: #42928F;
}
header.scroll:not(.active) nav ul .login a {
  color: #555F67;
  border: solid 1px rgba(85, 95, 103, 0.5);
}
header.scroll:not(.active) nav ul .login a:hover {
  background-color: #42928F;
  color: #fff;
}
header.scroll:not(.active) .menu_container #menu_btn i {
  background: #233E7E;
}

/****** HEADER ACTIVE ******/
header.active .logo {
  background: url(/i/Parabellum_logo_color2.png) no-repeat center/contain;
}
header.active nav {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
header.active nav .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 100%;
  text-align: center;
}
header.active nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
header.active nav ul li:not(.login) a {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #233E7E;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header.active nav ul li:not(.login) a.fade {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}
header.active nav ul li:not(.login) a::after {
  background-color: #233E7E;
}
header.active nav ul .login a {
  color: #555F67;
  border: solid 1px rgba(85, 95, 103, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  transition: all 0.3s ease;
}
header.active nav ul .login a.fade {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}
header.active nav ul .login a:hover {
  background-color: #233E7E;
  color: #fff;
}
header.active #menu_btn i {
  top: 8px;
  background-color: #233E7E;
}
header.active #menu_btn i:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}
header.active #menu_btn i:nth-child(3) {
  transform: rotate(-45deg);
  top: 5px;
}
header.active #menu_btn i:nth-child(2) {
  display: none;
}

.intro {
  padding: 7.5rem 0;
}


.intro p:first-of-type span {
  border-bottom: solid 1px;
}
.intro .hline {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #2C7881;
  margin-top: 2.23rem;
}
#loading{background:rgba(0,0,0,0.7);z-index:4;position:fixed;width:100%;height:100%;left:0;top:0;display:none;}
#loading svg{transform:translate(-50%,-50%);position:absolute;left:50%;top:50%;}
#login .column{display:inline-block;vertical-align:top;width:50%;box-sizing:border-box;}
#login .fx-field{margin-bottom:30px;}
#login .fx-field label{line-height:1.3em;padding:0;background:#e3ebe9}
#login .fx-field input:-webkit-autofill{-webkit-box-shadow: 0 0 0 1000px #e3ebe9 inset !important;}
#login input[type=text],#login input[type=password]{font-size: .9rem;line-height: 1.3em;
            color: #000;
            display: block;
            width: 100%;
            background-color: transparent;
            border: 1px solid #000;
            border-width: 0 0 1px 0;
            appearance: none;
            -webkit-appearance: none;
            padding: 1rem 0 .5rem 0;
        }
#login .fx-input:focus ~ label,#login .fx-input.hasData ~ label{top:-10px !important;padding:0}
#login label {
            position: absolute;
            left: 10px;
            top:10px;
            will-change: transform;
            transform-origin: top;
            transition: transform .4s ease;
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #000;
            letter-spacing: .2em;
        }
#login input[type=button],.btn{display: flex;justify-content: center;align-items: center;cursor: pointer;width: max-content;padding: 1rem 2.5rem;border-radius: 2.85rem;border: 0;appearance: none;-webkit-appearance: none;margin-top: 1rem;color:#fff;font-size:1rem;font-weight:500;font-family: 'montserrat',sans-serif;background-color:#3b7583}
#login input[type=button]:hover,.btn:hover{background:#84b48c;}
#login h3{margin-bottom:20px}
#login .mt-bad{color:#ff0000;font-size:0.75em;left:0 !important;top:100% !important;line-height:20px;padding:0;}
#login .checkbox{margin:5px 20px 5px 0;display:inline-block}
#login {width:90%;max-width:400px;border-radius:20px;box-shadow:0px 0px 100px #42928F;box-sizing:border-box;position:fixed;display:none;padding:50px;z-index:11;background:#fff;left:50%;top:50%;transform:translate(-50%,-50%);max-height:90vh}
#login > button{outline: none;border: none;cursor: pointer;display: block;position: absolute;top: 15px;right: 15px;width: 20px;height: 20px;background: url(/i/close-icon.svg) no-repeat center/cover;}
#shade{background:rgba(0,0,0,0.9);z-index:10;position:fixed;width:100%;height:100%;left:0;top:0;display:none;}
#disclaimer #container .s1 {
  padding: 12.77rem 0 7.5rem 0;
}
#disclaimer #container .s1 h2 {
  text-align: center;
  margin-bottom: 3rem;
}
#disclaimer #container .s1 p {
  margin-bottom: 1rem;
}
#disclaimer #container .s1 p:last-of-type {
  margin-bottom: 0;
}
#disclaimer #container .s1 span {
  font-weight: 600;
}
#disclaimer #container .s1 .sub-title {
  text-decoration: underline;
  margin-left: 2rem;
}
#disclaimer #container .s1 a {
  color: #78797C;
  transition: color 0.3s ease;
}
#disclaimer #container .s1 a:hover {
  color: #233E7E;
}
#register
{
	.s1{background:url(/i/register.jpg) no-repeat center/cover;}
	.s2{padding:7.5rem 0;}
}

/**** CONTACT FORM *****/
.contact-form .top {
  text-align: center;
  margin-bottom: 2.77rem;
}
.contact-form .top p {
  font-size: 1.27rem;
  line-height: 2rem;
  color: #42928F;
  margin-bottom: 1rem;
}
.contact-form .top a {
  font-weight: 500;
  color: #42928F;
  border-bottom: solid 1px #1E2757;
  transition: opacity 0.3s ease;
}
.contact-form .top a:hover {
  opacity: 0.7;
}
.contact-form .top h3 {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 300;
  font-size: 3.46rem;
  line-height: 4rem;
  color: #42928F;
}
.contact-form form {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form form a {
  color: #78797C;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.contact-form form a:hover {
  opacity: 0.7;
}
.contact-form form > div {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.contact-form form > div input {
  width: 50%;
}
.contact-form form input:not([type=checkbox]) {
  font-family: "graphie";
  font-style: normal;
  font-weight: 200;
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #637B7C;
  background: rgba(172, 199, 219, 0.25);
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 1.67rem;
}
.contact-form form input:focus, .contact-form form textarea:focus, .contact-form form button:focus {
  outline: none;
}
.contact-form form input:-webkit-autofill,
.contact-form form input:-webkit-autofill:hover,
.contact-form form input:-webkit-autofill:focus,
.contact-form form textarea:-webkit-autofill,
.contact-form form textarea:-webkit-autofill:hover,
.contact-form form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #78797C;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form form textarea {
  font-family: "graphie";
  font-style: normal;
  font-weight: 200;
  display: block;
  height: 200px;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #637B7C;
  background: rgba(172, 199, 219, 0.25);
  border: none;
  -webkit-appearance: none;
  resize: none;
  margin-bottom: 1rem;
  border-radius: 0;
}
.contact-form form input[type=checkbox] {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 0;
  border-radius: 0;
  position: relative;
  top: 4px;
  margin-right: 10px;
  cursor: pointer;
}
.contact-form form .hidhp {
  display: none !important;
}
.contact-form form .bottom {
  margin-top: 2.7rem;
  align-items: center;
}
.contact-form form .btn-submit, .btn {
  font-weight: 400;
  display: inline-block;
  padding: 13px 20px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 100px;
  text-align: center;
  color: #555F67;
  border: solid 1px #42928F;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: transparent;
  cursor: pointer;
}
.contact-form form .btn-submit span, .btn span {
  display: inline-block;
  position: relative;
  padding-right: 65px;
}
.contact-form form .btn-submit span::after, .btn span::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 7px;
  background: url(/i/svg/arrow-right-blue.svg) no-repeat center/contain;
  right: 0;
  top: 47%;
  transform: translateY(-50%);
  transition: background-image 0.3s ease;
}
.contact-form form .btn-submit:hover, .btn:hover {
  background: #42928F;
  color: #fff;
}
.contact-form form .btn-submit:hover span::after, .btn:hover span::after {
  background-image: url(/i/svg/arrow-right-white.svg);
}
.contact-form .response {
  max-width: 900px;
  margin: 2rem auto 0 auto;
}
.insta{background:url(/i/svg/instagram.svg) no-repeat center/contain;width:20px;height:20px;margin-right:17px;transition: opacity 0.3s ease;}
.insta:hover{opacity:0.5;}
.facebook{background:url(/i/svg/facebook.svg) no-repeat center/contain;width:20px;height:20px;margin-right:17px;transition: opacity 0.3s ease;}
.facebook:hover{opacity:0.5;}
#container,#login,.popup 
{
	&{box-sizing:border-box;}
	.content{max-width:1280px;margin:20px 5%;}
	.column{display:inline-block;vertical-align:top;width:50%;box-sizing:border-box;}
	.fx-field{margin-bottom:30px;}
	.fx-field label{line-height:1.3em;background:#fff;}
	.fx-field img{max-width:100%;display:block;margin:20px 0;}
	.fx-select{border:1px solid #ccc;background:url(/i/select.png) no-repeat 97% center;}
	.fx-select select{font-family:montserrat;padding:5px;font-size:1em;font-weight:300;outline:none;}
	.fx-select .fx-msg{margin-left:-21px;}
	.fx-field input:-webkit-autofill 
	{
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
	}
	input[type=text],input[type=date],input[type=password],textarea{font-size:1em;border:1px solid #ccc;padding:5px 10px;width:100%;box-sizing:border-box;font-family:montserrat;}
	input[type=date]{max-width:100% !important;}
	textarea{height:140px}
	.btn.green{background-color:#8ABD00;box-shadow:4px 4px 4px #8ABD00;}
	.btn.green:hover{background:#5C7C04;box-shadow:4px 4px 4px #5C7C04;}
	.btn.red,.fdelete button {background-color:#FF5947;box-shadow:2px 2px 2px #FF5947;}
	.btn.red:hover{background:#9D231B;box-shadow:2px 2px 2px #9D231B;}
	h3{margin-bottom:20px}
	.mt-bad{color:#ff0000;font-size:0.75em;left:0 !important;top:100% !important;line-height:20px;}
	.checkbox{margin:5px 20px 5px 0;display:inline-block}
	.fx-select .acategory{width:auto !important;}
	ul{padding-left:1rem;margin:0.5rem 0}
}
#container .s5 {
  background: #1E2757;
  padding: 5.55rem 0;
}
#container .s5 .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
#container .s5 > div h2 {
  font-weight: 200;
  color: #fff;
}
#container .s5 > div a {
  display: inline-block;
  color:#fff;
}
#container .s5 > div .linkedin {
  width: 18px;
  height: 18px;
  background: url(/i/svg/linkedin_icon.svg) no-repeat center/contain;
  margin-right: 17px;
  transition: opacity 0.3s ease;
}
#container .s5 > div .email {
  width: 20px;
  height: 20px;
  background: url(/i/svg/email_icon.svg) no-repeat center/contain;
  transition: opacity 0.3s ease;
}
#container .s5 > div .linkedin:hover, #container .s5 > div .email:hover {
  opacity: 0.5;
}
#container .s5 .location {
  padding-left: 20px;
  border-left: solid 2px #2C7881;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
}
#container .s5 .location p {
  color: #fff;
}
#container .s5 .location span {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  display: block;
  font-size: 1.77rem;
  line-height: 2.3rem;
  margin-bottom: 1rem;
}
#container .s5 .location img {
  display: block;
  width: 250px;
  height: 135px;
  object-fit: cover;
}
footer .top {
  background: #1E2757;
  padding: 5.55rem 0;
}
footer .top .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
footer .top > div h2 {
  font-weight: 200;
  color: #fff;
}
footer .top > div a {
  display: inline-block;
}
footer .top > div .linkedin {
  width: 18px;
  height: 18px;
  background: url(/i/svg/linkedin_icon.svg) no-repeat center/contain;
  margin-right: 17px;
  transition: opacity 0.3s ease;
}
footer .top > div .email {
  width: 20px;
  height: 15px;
  background: url(/i/svg/email_icon.svg) no-repeat center/contain;
  transition: opacity 0.3s ease;
}
footer .top > div .linkedin:hover, footer .top > div .email:hover {
  opacity: 0.5;
}
footer .top .location {
  padding-left: 20px;
  border-left: solid 2px #2C7881;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
}
footer .top .location p {
  color: #fff;
}
footer .top .location span {
  font-family: "halyard-text";
  font-style: normal;
  font-weight: 200;
  display: block;
  font-size: 1.77rem;
  line-height: 2.3rem;
  margin-bottom: 1rem;
}
footer .top .location img {
  display: block;
  width: 250px;
  height: 135px;
  object-fit: cover;
}
footer .bottom {
  background: #424143;
  text-align: center;
  padding: 3rem 0 2.5rem 0;
}
footer .bottom p, footer .bottom a {
  color: #ACC7DB;
  font-size: 13px;
  line-height: 16px;
}
footer .bottom a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: underline;
  margin-top: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
footer .bottom a:hover {
  opacity: 0.5;
}
footer .bottom a:last-of-type {
  margin-right: 0;
}

/***** MEDIA *****/

@media screen and (max-width: 1365px) {
  footer .top .container {
    flex-wrap: wrap;
  }
  footer .top .container > div {
    margin-right: 12rem;
    margin-bottom: 3rem;
  }
  footer .top .location p {
    min-width: 173px;
  }
  
  #container .s5 .container {
    flex-wrap: wrap !important;
  }
  #container .s5 .container > div {
    margin-right: 12rem;
    margin-bottom: 3rem;
  }
  #container .s5 .location p {
    min-width: 173px;
  }

}
@media screen and (max-width: 1100px) {
  * {
    background-attachment: scroll !important;
  }
  .intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .intro .container > div:nth-child(1), .intro .container > div:nth-child(2) {
    max-width: none;
  }
  .bg-parallax {
    top: auto;
    height: 100%;
  }
  h2 {
    font-size: 2.7rem;
    line-height: 3.2rem;
  }
  header .menu_container {
    display: block;
  }
  header nav {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  h2 {
    font-size: 2.3rem;
    line-height: 2.8rem;
  }
  p.lg {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .inner .s1 {
    height: 500px;
  }
  .inner .s1 h1 {
    font-size: 3.8rem;
    line-height: 4.3rem;
  }
  header .logo, header.scroll .logo {
    width: 110px !important;
    height: 50px !important;
  }
  header nav ul .login a {
    font-size: 14px;
    line-height: 22px;
  }
  header .menu_container #menu_btn i {
    width: 35px;
  }
  header.active nav ul li:not(.login) a {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .intro {
    padding: 5rem 0;
  }
  .intro .hline {
    margin-top: 1.5rem;
  }
  .contact-form .top p {
    max-width: 320px;
    margin: 0 auto 1rem auto;
  }
  .contact-form .top h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .contact-form form > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .contact-form form input:not([type=checkbox]) {
    margin-bottom: 1rem;
  }
  .contact-form form input[type=checkbox] {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
  .contact-form form label {
    font-size: 13px;
  }
  .contact-form form .bottom {
    gap: 1.5rem;
  }
  footer .top .container > div {
    margin-right: 0;
  }
  footer .top .location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  footer .top > div .linkedin, footer .top > div .email {
    width: 16px;
    height: 16px;
  }
  #disclaimer #container .s1 {
    padding: 10rem 0 5rem 0;
  }
  #disclaimer #container .s1 .sub-title {
    margin-left: 1rem;
  }
  #container .s5 .container > div {
    margin-right: 0 !important;
  }
  #container .s5 .location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #container .s5 > div .linkedin, #container .s5 > div .email {
    width: 16px;
    height: 16px;
  }
}

/*# sourceMappingURL=global.css.map */
