@charset "UTF-8";
/*APP STYLES*/
html {
    overflow-x: hidden;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
}
h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: 52px;
    font-weight: 700;
}
.mobile h1 {
    font-size: 35px;
}
h2 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #6E6E73;
}
.mobile h2 {
    font-size: 20px;
    color: #157FDF;
}
h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #206FCA;
}
h4 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 38px;
}
svg {
    width: 100%;
    height: 100%;
}
section {
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: 100%;
    opacity: 0;
    transition: ease-in-out 0.4s;
}
section.section-show {
    position: relative;
    bottom: auto;
    opacity: 1;
}
.fit-content {
    width: fit-content;
}
@media only screen and (min-width: 768px) {
    .m-md-10 {
        margin-bottom: 10rem;
    }
}
/*HEADER STYLES*/
.header {
    background: #FFF;
    position: relative;
    z-index: 1;
}
.logo-container {
    width: 20%;
}
.logo {
    width: 150px;
    height: 150px;
    position: absolute;
    left: calc(5% - 20px);
    top: 20px;
    transition: all 0.2s linear;
}
.header-sub .logo {
    width: 60px;
    height: 60px;
    left: calc(5% - 20px);
    top: 0px;
}
.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.header-menu {
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    clear: left;
}
.menu-item {
    list-style: none;
    float: left;
    margin-right: auto;
    margin-top: 0px;
    color: #6E6E73;
    letter-spacing: 1px;
    margin-left: auto;
    text-align: center;
    width: 25%;
    transition: all 0.3s linear;
    text-decoration: none;
}
.mobile .menu-item {
    color: #FFF;
}
.menu-item a {
    text-decoration: none;
    color: inherit;
}
.menu-item.active,
.menu-item:hover {
    color: #000;
    cursor: pointer;
}
.menu-item.active a,
.menu-item:hover a {
    border-bottom: solid #206FCA 2px;
}
.header-gradient {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, #000000 100%);
    transform: translate3d(0px, -2px, 0px) scale(1);
    filter: blur(5px);
    /*opacity: var(0.7);*/
    transition: background-color ease-in-out 0.3s;
    border-radius: inherit;
}
.header-sub .header-gradient {
    background-color: #000;
}
.social-icon {
    height: 2.8rem;
    width: 2.8rem;
    background-color: #206FCA;
    margin: 0.6rem;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    fill: white;
}
.menu-icon {
    height: 2.8rem;
    width: 2.8rem;
    background-color: #206FCA;
    margin: 0.6rem;
}
/* Main menu positionning */
.header-menu.mobile {
    width: 60%;
    height: 20rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}
.header-socials.mobile {
    visibility: hidden;
}

.header-menu.mobile.is-open {
    opacity: 1;
    z-index: 100;
    visibility: visible;
    transition: all .375s;
}

/* blue band effect */
.header-menu.mobile::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15px;
    background: #206FCA;
    transform-origin: 0 0;
    transform: skew(-14deg) translateX(-120%);
    transition: all .275s .1s;
}

.header-menu.mobile.is-open::before {
    transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.header-menu.mobile ul {
    display: inline-flex;
    flex-direction: column;
    height: 93%; /* Should be 100%, but we have a notice message :D */
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
}

.header-menu.mobile li {
    display: block;
    margin: .5rem 0;
    text-align: right;
    transform: skew(16deg);
}

/* Apparition effect on links */
.header-menu.mobile a {
    opacity: 0;
    transform: translateY(-10px);
}

.header-menu.mobile.is-open a {
    opacity: 1;
    transform: translateY(0);
}
.header-menu.mobile li:nth-child(1) a {
	transition: all 275ms 175ms;
}
.header-menu.mobile li:nth-child(2) a {
	transition: all 275ms 225ms;
}
.header-menu.mobile li:nth-child(3) a {
	transition: all 275ms 275ms;
}
.header-menu.mobile li:nth-child(4) a {
	transition: all 275ms 325ms;
}
.header-menu.mobile li:nth-child(5) a {
	transition: all 275ms 375ms;
}

/* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
.open-main-nav {
    padding: 1rem;
    padding-top: 1.8rem;
	position: absolute;
	right: 15px;
	z-index: 1000;
	background: none;
	border: 0;
	cursor: pointer;
}
.open-main-nav:focus {
	outline: none;
}
.burger {
	position: relative;
	display: block;
	width: 28px;
	height: 4px;
	margin: 0 auto;
	background: #206FCA;
    border-radius: 5px;
	transition: all .275s;
}

.burger:after,
.burger:before {
	content: '';
	display: block;
	height: 100%;
	background: #206FCA;
    border-radius: 5px;
	transition: all .275s;
}

.burger:after {
	transform: translateY(-12px);
}

.burger:before {
	transform: translateY(-16px);
}

/* Toggle State part */
.is-open .burger {
	transform: translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
	transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
	transform: translateY(-12px) translateX(10px) skew(-20deg);
    opacity: 0;
}
/*HOME PAGE*/
.main-page {
    position: relative;
    padding-top: 8rem;
    background-image: url("../images/home-background.png");
    background-size: 60%;
    background-position: top -50px right;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.mobile .main-page {
    padding-top: 2rem;
}
.main-page h1::first-letter {
    font-size: 72px;
}
.mobile .main-page h1::first-letter {
    font-size: 45px;
}
.mobile .main-page {
    background-image: unset;
}
.image {
    height: 100%;
    width: 100%;
}
.image img {
    width: 100%;
}
.card-container {
    padding: 1.5rem;
}
.card {
    height: 100%;
    box-shadow: 0px 0px 20px 0px #BFBFBF;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}
.card h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.card h1::first-letter {
    font-size: 28px;
}
.card p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.card .icon {
    width: 180px;
    height: 100px;
    margin: 1rem;
    fill: #157FDF
}
.mobile .card h1,
.mobile .card p {
    order: 1;
}
.collapsible {
    order: 1;
    background-color: transparent;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
}
.contact-details p {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #6E6E73;
}
button {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 22px;
    background-color: #206FCA;
    color: #FFF;
    padding: 0.2rem 3rem 0.2rem 3rem;
    border-radius: 2rem;
    border: none;
}
/*FOOTER*/
footer {
    box-shadow: 0px 0px 20px 0px #BFBFBF;
}
.footer-menu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.footer-menu-item {
    list-style: none;
    float: left;
    margin-right: auto;
    margin-top: 0px;
    color: #6E6E73;
    letter-spacing: 1px;
    margin-left: auto;
    text-align: center;
    transition: all 0.3s linear;
    text-decoration: none;
    padding: 0.5rem;
}
.footer-menu-item a {
    text-decoration: none;
    color: inherit;
}
.footer-logo {
    width: 100px;
    height: 100px;
    padding: 1rem;
    object-fit: contain;
}
.footer-logo img {
    width: 100%;
    height: 100%;
}
.copywright {
    color: #6E6E73;
    font-size: 12px;
}
/*SUB PAGES*/
.mobile .sub-page {
    padding-top: 1rem;
}
.sub-page {
    z-index: -4;
    padding-top: 6rem;
    padding-bottom:  8rem;
}
.sub-page h1 {
    color: #206FCA;
    font-size: 38px;
}
.sub-page h2 {
    color: #1D1D1F;
    font-size: 22px;
}
.sub-page p,ul {
    color: #6E6E73;
}
.sub-page strong {
    color: #000;
}
.underlined {
    border: 4px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, #FFFFFF, #206FCA 70%);
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.underlined h2 {
    font-weight: 600;
}
.sub-page {
    font-weight: 500;
}
.mobile .background-image {
    -webkit-mask-image: unset;
    mask-image: unset;
    -webkit-mask-repeat: unset;
    mask-repeat: unset;  
    -webkit-mask-position: unset;
    mask-position: unset;  
    -webkit-mask-size: unset;
    mask-size: unset;
    width: 100%;
    z-index: -4;
    position: relative;
}
.background-image {
    -webkit-mask-image: url("../images/bridgemask2.png");
    mask-image: url("../images/bridgemask2.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;  
    -webkit-mask-position: right;
    mask-position: right;  
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 50%;
    top: -4rem;
    position: absolute;
    right: 0;
    z-index: -4;
}
.background-image img {
    width: 100%;
}
.background-image-home {
    -webkit-mask-image: url("../images/citymask.png");
    mask-image: url("../images/citymask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;  
    -webkit-mask-position: left;
    mask-position: left;  
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 30%;
    bottom: -10rem;
    position: absolute;
    z-index: -4;
}
.background-image-home img {
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .background-image-home {
        -webkit-mask-image: unset;
        mask-image: unset;
        top: 0;
        width: 100%;
        position: relative;
    }
}

/*.sub-page.about {
    position: relative;
    mask-image: url("../images/bridgeMask.png");
    background-image: url("../images/bridge.png");
    background-size: 60%;
    background-position: top -50px right;
    background-repeat: no-repeat;
    background-attachment: scroll;
}*/
.image-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.mobile .profile-image {
    width: 20rem;
    height: 20rem;
    clip-path: circle(8rem at center);
    margin-bottom: 4rem;
}
.profile-image {
    height: 100%;
    width: 100%;
    object-fit: contian;
}
.profile-image img {
    width: 100%;
}
/*FORM*/
form label {
    padding-left: 1rem;
}

form input {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    border: 2px solid #6E6E73;
    border-radius: 4px;
    background-color: #F5F5F7;
    font-size: 16px;
}

form textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #6E6E73;
    border-radius: 4px;
    background-color: #F5F5F7;
    font-size: 16px;
    resize: none;
}

form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

form .error-message br + br {
  margin-top: 25px;
}

form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #206FCA;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
}

form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #206FCA;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

/* 
* Prevents issues when the parent creates a 
* stacking context. (For example, using the transform
* property )
*/
.box::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
}
.left_article {
    background-color: #FFFFFF;
    width: 60%;
    float: left;
    color: #343434;
    padding-bottom: 15px;
}
.noDisplay {
    display: none;
}
.container .left_article h3 {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 5%;
    color: #717070;
    text-transform: uppercase;
}
.container .left_article p {
    padding-left: 5%;
    padding-right: 5%;
    text-align: justify;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #B3B3B3;
}
.right_article {
    width: 40%;
    float: left;
    background-color: #F6F6F6;
}
.container .right_article ul {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.right_article ul li {
    list-style: none;
    text-align: center;
    background-color: #B3B3B3;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFFFFF;
    border-radius: 0px;
    transition: all 0.3s linear;
    border-left: 5px solid #717070;
}
.right_article ul li:hover {
    background-color: #717070;
    cursor: pointer;
}
.footer {
    background-color: #717070;
}
.title {
    font-style: normal;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 2px;
}
.placeholder {
    /* [disabled]max-width: 400px;
*/
    /* [disabled]max-height: 200px;
*/
    width: 100%;
    padding-top: 30px;
    /* [disabled]padding-left: 19px;
*/
    padding-bottom: 30px;
    height: 100%;
}
.left_half {
    background-color: #52BAD5;
}
.container .column_half.left_half h2 {
    color: #FFFFFF;
    text-align: center;
}
.right_half {
    background-color: #01B2D1;
    color: #FFFFFF;
    text-align: center;
}
.column_title {
    padding-top: 25px;
    padding-bottom: 25px;
}
.copyright {
    text-align: center;
    background-color: #717070;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top-width: 2px;
}
body {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}
@media (max-width: 320px) {
    .secondary_header ul li {
        float: none;
        margin-top: 28px;
        margin-left: 0px;
        width: 100%;
    }
    .container .secondary_header ul {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        height: auto;
        width: 100%;
        text-align: center;
    }
    .secondary_header {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 1px;
        padding-bottom: 40px;
    }
    .left_article {
        width: 100%;
        height: auto;
    }
    .right_article {
        width: 100%;
        height: auto;
    }
    .placeholder {
        width: 100%;
        margin-top: 22PX;
        margin-right: 0px;
        margin-bottom: 22PX;
        margin-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        max-width: 400px;
        max-height: 200px;
        height: auto;
    }
    .columns {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 0PX;
        padding-right: 0PX;
        padding-bottom: 0PX;
        padding-left: 0PX;
    }
    .columns p {
        padding-left: 10px;
        padding-right: 10px;
    }
    .column_half.left_half {
        width: 100%;
    }
    .column_half.right_half {
        width: 100%;
    }
    .copyright {
        padding-top: 25px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .container .left_article h3 {
        margin-top: 30px;
    }
    .social .social_icon img {
        width: 80%;
    }
    .container .secondary_header {}
}
@media (min-width: 321px) and (max-width: 768px) {
    .secondary_header ul li {
        float: none;
        margin-top: 28px;
        margin-left: 0px;
        width: 100%;
    }
    .container .secondary_header ul {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        height: auto;
        width: 100%;
        text-align: center;
    }
    .secondary_header {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 1px;
        padding-bottom: 40px;
    }
    .left_article {
        width: 100%;
        height: auto;
    }
    .right_article {
        width: 100%;
        height: auto;
        padding-bottom: 25px;
    }
    .placeholder {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 100%;
    }
    .columns {
        width: 100%;
        margin-top: 6px;
        margin-right: 0px;
        margin-bottom: 6px;
        margin-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .columns p {
        padding-left: 14px;
        padding-right: 14px;
    }
    .column_half.left_half {
        width: 100%;
    }
    .column_half.right_half {
        width: 100%;
    }
}
@media (min-width: 769px) and (max-width: 1000px) {
    .secondary_header {
        overflow: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .secondary_header ul li {
        margin-top: 10px;
        margin-right: 7%;
        margin-bottom: 10px;
        margin-left: 7%;
    }
    .left_article {
        height: auto;
    }
    .right_article {
        height: auto;
        padding-bottom: 27px;
    }
    .placeholder {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .columns {
        width: 50%;
        float: left;
        padding-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
    }
    .container .columns p {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media (min-width: 1001px) {}
.thumbnail {
    width: 100px;
    border-radius: 200px;
    height: 100px;
    margin-left: auto;
}
.thumbnail_align {
    text-align: center;
}
.social {
    text-align: center;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
    background-color: #414141;
    clear: both;
    overflow: auto;
}
.social_icon {
    width: 25%;
    text-align: center;
    float: left;
    transition: all 0.3s linear;
    line-height: 0px;
    padding-top: 7px;
}
.container .social .social_icon:hover {
    cursor: pointer;
    opacity: 0.5;
}
#menu {}