html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {   
    color: #687288;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}
wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}





/*------------------------------
            Global        
------------------------------*/
a {
    color: #687288;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover {
    color: #4B69AC;
    text-decoration: none;
}
h3 {
    color: #4B69AC;
    font-size: 2.8125rem;
    font-weight: 700;
}
h4 {
    color: #3D8BB5;
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
h5 {
    font-size: 1.5625rem;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 1rem;
}
h6 {
    font-weight: 400;
    line-height: 1.3;
}
p {
    font-size: 1.25rem;
    line-height: 1.75;
}
ul li {
    font-size: 1.25rem;
}
b, strong {
    font-weight: 700;
}
.btn {
    color: #F0B143;
    font-size: 1.25rem;
    padding: 0 0 .25rem;
    border-left: 0;
    border-right: 0;
    border-bottom: 3px solid #F0B143;
    border-radius: 0;
}
.btn:hover {
    color: #ffc45e;
    border-bottom: 3px solid #ffc45e;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
.trans {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}
@media (max-width: 1199px), (max-height: 800px) {
    h3 {
        font-size: 2.25rem;
    }
    h4 {
        font-size: 1.5rem;
    }
    h5, p, ul li {
        font-size: 1.125rem;
    }
    .btn {
        font-size: 1.125rem;
        border-bottom: 2px solid #F0B143;
    }
    .btn:hover {
        border-bottom: 2px solid #ffc45e;
    }
    .p-mobile {
        padding: 3.5rem 0 !important;
    }
}
@media (max-width: 767px) {
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1.1875rem;
    }
    h5, p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    ul li {
        font-size: 1rem;
    }
    .btn {
        font-size: 1rem;
        padding: 0 0 .125rem;
        border-bottom: 1px solid #F0B143;
    }
    .btn:hover {
        border-bottom: 1px solid #ffc45e;
    }
    .p-mobile {
        padding: 2.5rem 0 !important;
    }
}





/*------------------------------
            Navbar
------------------------------*/
.navbar {
    z-index: 99;
    padding: 1rem 0;
}
.navbar .navbar-brand {
    width: 10rem;
    padding: 0;
    margin: 0;
}
.navbar .navbar-toggler {
    z-index: 9;
    cursor: pointer;
    border: none;
    outline: none;
}
.navbar .fas {
    color: #4B69AC;
    transform: scale(1.25, 1.25);
    padding: 1rem .5rem;
}
.navbar .nav-item.nav-link {
    color: #4B69AC;
    font-size: 1.5625rem;
    padding: 0;
    margin: auto;
}
.navbar .nav-item.nav-link:not(:nth-child(3)) {
    border-bottom: 3px solid transparent;
}
.navbar .nav-item.nav-link:not(:nth-child(3)):hover,
.navbar .nav-item.nav-link.active {
    border-bottom: 3px solid #4B69AC;
}
.navbar .nav-item.nav-link img {
    width: 15.625rem;
}
@media (min-width: 992px) {
    #home .navbar {
        position: absolute;
        left: 0;
        right: 0;
        background-color: rgba(255,255,255,0.6);
        margin: auto;
    }
}
@media (max-width: 1199px), (max-height: 800px) {
    .navbar {
        padding: .5rem 0;
    }
    .navbar .nav-item.nav-link {
        font-size: 1.375rem;
    }
    .navbar .nav-item.nav-link img {
        width: 12.5rem;
    }
}
@media (max-width: 991px), (max-height: 800px) {
    .navbar .navbar-brand {
        margin-left: 0.9375rem;
    }
    .navbar .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        margin: 0;
    }
    .navbar .nav-item.nav-link:not(:nth-child(3)) {
        border-bottom: none;
    }
    .navbar .nav-item.nav-link:not(:nth-child(3)):hover,
    .navbar .nav-item.nav-link.active {
        border-bottom: none;
    }
}
@media (max-width: 991px) {
    .navbar {
        padding: .125rem 0 0;
    }
    .navbar .nav-item.nav-link {
        font-size: 1.125rem;
    }
}





/*------------------------------
           Header      
------------------------------*/
header {
    position: relative;
}
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4B69AC;
    opacity: 0.7;
}
#team header::after {
    opacity: 0.4;
}
#contact header::after {
    opacity: 0.2;
}
header .container {
    position: relative;
    z-index: 5;
}
header .d-flex {
    text-align: center;
    min-height: 15rem;
    padding: 2.5rem 0;
}
header h3 {
    color: #fff;
    margin-bottom: 1rem;
}
header h4 {
    color: #fff;
    margin: 0;
}
@media (max-width: 1199px), (max-height: 800px) {
    header .d-flex {
        min-height: 12rem;
        padding: 1.5rem 0;
    }
}
@media (max-width: 991px) {
    header br {
        display: none;
    }
}
@media (max-width: 767px) {
    header .d-flex {
        min-height: 10rem;
        padding: 1rem 0;
    }
}



 

/*------------------------------
             Home      
------------------------------*/
.home .d-flex {
    color: #fff;
    min-height: 100vh;
    padding: 8rem 0 6rem;
}
.home h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.home h2 {
    font-size: 1.5625rem;
    line-height: 1.6;
    margin: 0;
}
.home .video {
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}
.home .video video {
    position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%,-50%);
}
.why-agam {
    position: relative;
    background-color: #F2FAFF;
    text-align: center;
    padding: 6rem 0 4rem;
}
.why-agam .container {
    z-index: 5;
}
.why-agam p {
    max-width: 55rem;
    margin: 0 auto;
}
.why-agam img.left {
    position: absolute;
    top: 1rem; left: 0;
    height: calc(100% - 2rem);
    transform: rotate(180deg)
}
.why-agam img.right {
    position: absolute;
    top: 1rem; right: 0;
    height: calc(100% - 2rem);
}
.palm {
    padding: 8rem 0;
}
.meet {
    background-color: #F2FAFF;
    padding: 4rem 0;
    margin: 6rem 0 8rem;
}
.meet .img-container {
    height: 100%;
}
.meet .img-container img {
    position: absolute;
    top: -6rem;
}
.help {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 8vmin;
}
#contactModal .modal-header {
    background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url(../images/header/contact.png) center no-repeat;
    background-size: cover;
    padding: 3rem 1rem 4rem;
}
#contactModal .modal-body {
    padding: 3rem 1rem;
}
#contactModal h3 {
    color: #fff;
}
@media (max-width: 1199px), (max-height: 800px) {
    .home h1 {
        font-size: 3.25rem;
    }
    .home h2 {
        font-size: 1.375rem;
    }
    .palm {
        padding: 3.5rem 0;
    }
    .meet .img-container img  {
        width: calc(100% - 2rem)
    }
}
@media (max-width: 991px), (max-height: 800px) {
    .home .d-flex {
        padding: 4rem 0;
    }
    .home h1 {
        font-size: 2.375rem;
    }
    .home h2 {
        font-size: 1.125rem;
    }
    .meet .img-container img {
        top: 0;
    }
}
@media (max-width: 767px) {
    .home h1 {
        font-size: 1.6rem;
    }
    .home h2 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    .home br {
        display: none;
    }
    .palm {
        padding: 2.5rem 0;
    }
    .meet .img-container img {
        position: relative;
        width: 100%;
        margin-bottom: 2rem;
    }
}
@media (max-width: 575px) {
    .meet {
        margin: 1rem 0;
    }
}





/*------------------------------
            About        
------------------------------*/
.about-intro {
    background-color: #F2FAFF;
    text-align: center;
    padding: 5rem 0;
}
.about-intro b,
.about-intro strong {
    color: #4B69AC;
}
.about {
    padding: 4rem 0;
}
.about .row:not(:last-child) {
    margin-bottom: 3rem;
}
.about h4.alt {
    color: #4B69AC;
}
.about p {
    margin-bottom: 2rem
}





/*------------------------------
          Technology        
------------------------------*/
.tech-intro {
    padding: 5rem 0;
    background-color: #fafafa;
}
.tech-intro h5 {
    line-height: 1.6;
    margin-top: 2rem;
}
.tech {
    padding: 4rem 0;
}
.tech .row {
    margin-bottom: 4rem;
}
.tech h6 {
    color: #4B69AC;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.tech h6 span {
    color: #3DABB5;
}
.tech .content {
    padding: 2rem 0 1rem;
}
.tech .content::before {
    content: '';
    z-index: -2;
    position: absolute;
    top: 0; left: -3rem;
    display: block;
    width: 150vw;
    height: 100%;
    background-color: #F2FAFF;
    border-radius: 1rem;
}
.tech .row:nth-child(odd) .content::before {
    left: auto;
    right: -3rem;
}
.tech h5 {
    color: #3DABB5;
    font-weight: 700;
}
.tech img.hex {
    z-index: -1;
    position: absolute;
    height: 100%;
}
@media (max-width: 991px), (max-height: 800px) {
    .tech br {
        display: none;
    }
}
@media (max-width: 767px) {
    .tech .row:first-child {
        margin-bottom: 2rem;
    }
    .tech .row:not(:first-child) {
        margin-bottom: 8rem;
    }
    .tech img.m-auto {
        position: relative;
        top: 2rem;
        width: 5rem;
    }
    .tech img.hex {
        top: -1rem;
        left: 0;
        right: 0;
        height: calc(100% + 6rem);
        margin: 0 auto;
    }
}





/*------------------------------
            Team        
------------------------------*/
.team-filter {
    padding: 5rem 0;
}
.team-filter .btn {
    color: #3D8BB5;
    border-bottom: 3px solid transparent;
    margin: 0 1.125rem;
}
.team-filter .btn:hover,
.team-filter .btn.active {
    color: #3D8BB5;
    border-bottom: 3px solid #3D8BB5;
}
.team {
    padding-bottom: 4rem;
}
.team .person {
    width: 16.75rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}
.team .person:hover > .img-container {
    border: 10px solid #3D8BB5;
    border-radius: 100%;
}
.team .person:hover > .name {
    color: #3D8BB5;
}
.team .img-container {
    height: 16.125rem;
    border: 10px solid transparent;
    overflow: hidden;
}
.team .name {
    color: #333;
    margin: .75rem 0 .25rem;
}
.team .title {
    min-height: 3rem;
    margin: 0;
}
.modal .close {
    z-index: 1;
    opacity: 1;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 3rem;
}
.modal .close:hover {
    opacity: .95;
}
#teamCarousel .desc {
    height: 100%;
    color: #fff;
    background-color: #3D8BB5;
    padding: 2rem 1.5rem;
}
#teamCarousel .desc ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
#teamCarousel .desc ul:last-child {
    margin-bottom: 0;
}
#teamCarousel .content {
    padding: 3rem 2.5rem 1rem 1rem;
}
#teamCarousel .name {
    color: #3D8BB5;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .5rem;
}
#teamCarousel .title {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}
#teamCarousel p {
    color: #7C7C7C;
    font-size: 1.125rem;
}
#teamCarousel .info {
    min-height: 46rem;
}
#teamCarousel .nav a:hover {
    opacity: .85;
}
#teamCarousel .nav a:first-child img {
    transform: rotate(180deg);
}
@media (min-width: 1200px) {
    .modal-lg {
        max-width: 972px;
    }
}
@media (max-width: 1199px), (max-height: 800px) {
    .team-filter .btn {
        border-bottom: 2px solid transparent;
        margin: 0 1rem;
    }
    .team-filter .btn:hover,
    .team-filter .btn.active {
        border-bottom: 2px solid #3D8BB5;
    }
    .team {
        padding-bottom: 3.5rem;
    }
    #teamCarousel .name {
        font-size: 2.5rem;
    }
    #teamCarousel .title {
        font-size: 1.125rem;
    }
    #teamCarousel p {
        font-size: 1rem;
    }
}
@media (max-width: 991px) {
    .team .img-container {
        height: 13.125rem;
    }
    #teamCarousel .desc {
        height: auto;
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 767px) {
    .team-filter .btn {
        padding: 0;
        border-bottom: 1px solid transparent;
        margin: 0 auto .5rem;
    }
    .team-filter .btn:hover,
    .team-filter .btn.active {
        border-bottom: 1px solid #3D8BB5;
    }
    .team {
        padding-bottom: 2.5rem;
    }
    .team .img-container {
        height: 100%;
    }
    .team .person {
        margin-bottom: 1.875rem;
    }
    .modal-dialog {
        margin-top: 1rem;
    }
    .modal .close {
        top: -1rem;
        right: -1rem;
    }
    #teamCarousel .content {
        padding: 2rem 1rem 1rem;
    }
    #teamCarousel .info {
        min-height: 100%;
        margin-bottom: 4rem;
    }
    #teamCarousel .name {
        font-size: 1.5rem;
    }
    #teamCarousel .title {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
}





/*------------------------------
            Contact        
------------------------------*/
.contact {
    padding: 5rem 0;
}
.contact .map {
    height: 100%;
    min-height: 16rem;
}
.contact ul {
    list-style: none;
    margin-bottom: 0;
}
.contact ul:not(:last-child) {
    margin-bottom: 3rem;
}
.contact ul li {
    color: #3F4757;
    font-size: 1.5615rem
}
.contact ul li b {
    color: #3D8BB5;
}
.contact ul li a {
    color: #3F4757;
}
.contact ul li a:hover {
    color: #f0b143;
}
@media (max-width: 1199px), (max-height: 800px) {
    .contact ul li {
        font-size: 1.125rem;
    }
}
@media (max-width: 767px) {
    .contact .map {
        height: calc(100% - 1rem);
        margin-bottom: 1rem;
    }
    .contact ul {
        padding: 0;
    }
    .contact ul li {
        font-size: 1rem;
    }
}





/*------------------------------
            Footer        
------------------------------*/
footer {
    color: #4B69AC;
    background-color: transparent;
    font-size: 1.125rem;
    padding: 5vmin 0;
    border-top: 1px solid #4B69AC;
}
footer ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}
footer ul li {
    line-height: 2;
}
footer a {
    color: #4B69AC;
}
footer a:hover {
    color: #F0B143;
}
@media (max-width: 1199px), (max-height: 800px) {
    footer {
        font-size: 1rem;
    }
    footer img {
        width: 12.5rem;
    }
    footer ul {
        height: auto;
    }
    footer ul li {
        line-height: 1.5;
    } 
}
@media (max-width: 991px), (max-height: 800px) {
    footer img {
        width: 10rem;
    }
    footer span {
        display: block;
        margin:  -.5rem 0 1rem;
    }
}
@media (max-width: 767px) {
    footer {
        font-size: .875rem;
    }
    footer ul {
        margin-bottom: 1rem;
    }
}