body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}
.anchor {
    display: block;
    position: relative;
    top: -76px;
    visibility: hidden;
}
.fw3 {font-weight: 300;}
.fw4 {font-weight: 400;}
.fw5 {font-weight: 500;}
.fw7 {font-weight: 700;}

.font-title {font-size: 24px;}
.icon-sm {height: 20px;}

.text-primary {color: #865CA0 !important;}
.text-secondary {color: #393838;}

.rounded {border-radius: 6px !important;}
.rounded-lg {border-radius: 10px;}

.fold {
    background-image: url("../img/main_banner.png");
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.fold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #865ca0bf, #d769a2b3);
    width: 100%;
    height: 100%;
}
.fold .legend-area {
    flex: 0 0 100%;
    position: relative;
    z-index: 1;
}
.fold .legend-area p:first-child {font-size: 30px;}
.fold .legend-area p:nth-child(2) {font-size: 18px;}
header {
    position: fixed;
    z-index: 9;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px 0;
}
header.pull-down::before {
    top: 0;
    transition: top .3s ease-in-out;
}
header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #865ca0, #d769a2);
    top: -80px;
    left: 0;
    z-index: -1;
    transition: top .3s ease-in-out;
}
.main-logo {
    height: 40px;
}
header .main-menu a {
    margin-left: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
header .main-menu a:first-child {margin-left: 0;}
header .menu-button img {
    height: 30px;
}
footer {
    border-top: solid 1px #DDDDDD;
    color: #A4A4A4;
    font-size: 12px;
    padding: 20px 0;
}
.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #D769A2;
    color: #ffffff;
    animation: fadeAnimation .3s;
    -webkit-animation: fadeAnimation .3s;
}
.mobile-menu .close-menu::before, .mobile-menu .close-menu::after {
    content: '';
    width: 4px;
    height: 30px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
    top: -10px;
    left: 10px;
}
.mobile-menu .close-menu::before {
    transform: rotate(45deg);
    animation: rotation-before .5s linear;
    -webkit-animation: rotation-before .5s linear;
}
.mobile-menu .close-menu::after {
    transform: rotate(-45deg);
    animation: rotation-after .5s linear;
    -webkit-animation: rotation-after .5s linear;
}

.bg-gsa {background-color: #D769A2 !important;}
.btn-primary {
    background-color: #D769A2;
    border-color: #D769A2;
}
.btn-primary:hover {
    background-color: #1D9EDA;
    border-color: #1D9EDA;
    transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
}
.btn-primary:visited {
    background-color: #D769A2;
    border-color: #D769A2;
}
.transparent-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px;
}
.profile-img {
    margin: 40px 0;
}
.profile-img::before, .profile-img::after {
    content: '';
    position: absolute;
    z-index: -1;
}
.profile-img::before {
    width: 50%;
    height: 50%;
    border: solid 6px #D769A2;
    top: -20px;
    left: -20px;
    border-radius: 27px 0 0 0;
}
.profile-img::after {
    width: 100%;
    padding-top: calc(100% - 70px);
    border: solid 35px #D5B1EC;
    border-radius: 50%;
    right: calc((-50%) + 35px);
    bottom: -30%;
}

.central-goals {
    background-color: #F6F6F6;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    background-image: url("../img/Container-Pattern.svg");
}
.central-goals .card img {
    height: 200px;
    margin-bottom: 20px;
}

.career-section {
    background: linear-gradient(to right, #53679D, #589DD2);
    padding: 45px 0;
}

@media (max-width: 767px) {
    .fold {height: 100vh;}
    .fold .legend-area p:first-child {font-size: 22px;}
    .fold .legend-area p:nth-child(2) {font-size: 14px;}
    .anchor {top: -80px;}
}

@-webkit-keyframes fadeAnimation {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes rotation-before {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(45deg);
    }
}
@keyframes rotation-after {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-45deg);
    }
}