@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #4E4E4E;
    font-weight: 300;
    background-image: url(../images/bg@2x.png);
    background-size: auto 100%;
    background-attachment: fixed;
    background-position: top right;
    background-repeat: no-repeat;
}

.font-roboto {
    font-family: 'Roboto', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 68px;
    line-height: 83px;
}

h2 {
    font-size: 52px;
    line-height: 64px;
}

h3 {
    font-size: 45px;
    line-height: 55px;
}

h4 {
    font-size: 40px;
    line-height: 50px;
}

h5 {
    font-size: 28px;
    line-height: 40px;
}

h6 {
    font-size: 25px;
}

.fw-400 {
    font-weight: 400;
}

.fw-700 {
    font-weight: 700;
}

.h5 {
    font-size: 28px;
    font-weight: 400;
    text-transform: none;
}

.text-primary {
    color: #174793 !important;
}

.text-secondary {
    color: #0E7AA0 !important;
}

.text-green2 {
    color: #1D9F9F !important;
}

.text-light-green {
    color: #8AFFA7;
}

.super-text {
    font-size: 30px;
    font-weight: 200;
}

a {
    color: #174793;
}





.container-fluid {
    padding-left: 140px;
    padding-right: 140px;
}


header {
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 9999;
    width: 100%;
}

header .navbar {
    background-color: #fff;
    border-radius: 7px;
    padding: 5px 50px;
}

header .navbar .nav-item+.nav-item {
    margin-left: 65px;
}

header .navbar .nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px;
    position: relative;
}

header .navbar .active .nav-link {
    font-weight: 700;
}

header .navbar .nav-link::after {
    content: " ";
    width: 0;
    height: 2px;
    background-color: #53C870;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: width ease .24s;
}

header .navbar .nav-link:hover::after,
header .navbar .active .nav-link::after {
    width: 100%;
}

header.fixed{
    top: 0;
}
header .container-fluid {
    transition: all ease-in .24s;
}
header.fixed .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
header.fixed .navbar{
    border-radius: 0;
    box-shadow: 2px -2px 16px rgba(0, 0, 0, .50);
}
header .navbar-brand img{
    transition: all ease-in .24s;
}
header.fixed .navbar-brand img{
    height: 40px;
}


.home-hero-section {
    background-image: url(../images/home-banner@2x.jpg);
    background-size: cover;
    position: relative;
    height: 100vh;
    align-items: flex-end;
    padding-bottom: 50px;
    min-height: 760px;
}

.home-hero-section::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .49);
    top: 0;
    left: 0;
    z-index: 1;
}

.home-hero-section .fp-tableCell {
    vertical-align: bottom;
    padding-bottom: 100px;
}

.home-hero-section .container-fluid {
    position: relative;
    z-index: 2;
}


.rounds {
    width: 220px;
    height: 220px;
    background-color: #D8FEF7;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #1D9F9F;
    margin: auto;
    margin-top: 40px;
    font-size: 16px;
}

form {
    width: 400px;
    max-width: 100%;
}

.form-group {
    margin-bottom: 28px;
}

.form-control {
    background-color: rgba(142, 217, 124, .20);
    border-radius: 3px;
    border: 1px solid #0E7AA0;
    height: 42px;
}

.form-control:focus {
    box-shadow: none;
    background-color: rgba(142, 217, 124, .20);
    border-radius: 3px;
    border: 1px solid #0E7AA0;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.btn-primary {
    background-color: #174793;
    font-weight: 700;
    border: 1px solid #174793;
    padding: 10px 25px;
    text-transform: uppercase;
    border-radius: 3px;
}

.btn-success {
    background-color: #53C870;
    font-weight: 700;
    border: 1px solid #53C870;
    padding: 10px 25px;
    text-transform: uppercase;
    border-radius: 3px;
}

footer {
    height: 100vh;
    display: flex;
    align-items: center;
}

.footer {
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: center;
    color: #174793;
    font-weight: 400;
    font-size: 16px;
}

.footer .list-unstyled {
    margin-bottom: 50px;
}

.footer .list-unstyled li a {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.footer .list-unstyled li+li {
    margin-top: 25px;
}



.pages-hero-section {
    /* height: 505px; */
    height: 50vh;
    /* padding-top: 290px; */
    /* padding-bottom: 35px; */
    position: relative;
    /* background-size: auto 100%; */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 10%;
}

.pages-hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .65);
    left: 0;
    top: 0;
}

.pages-hero-section .container-fluid {
    position: relative;
    z-index: 99;
}

.pages-hero-section h1 {
    font-size: 50px;
    color: #fff !important;
    /* line-height: 22px; */
}

.pages-hero-section p {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 300;
    line-height: 60px;
}

.about-page .pages-hero-section {
    background-image: url(../images/about-bg.jpg);
}

.what_we_do-page .pages-hero-section {
    background-image: url(../images/what_we_do-bg.jpg);
}

.contact-page .pages-hero-section {
    background-image: url(../images/contact-bg.png);
}

section, .section {
    padding-top: 115px;
    padding-bottom: 115px;
}

.team {}

.team figure {
    margin-bottom: 0;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.team figure img {
    height: 350px;
    object-fit: cover;
}

.team figure figcaption {
    background-color: rgb(14 122 160 / 70%);
    position: absolute;
    top: 0px;
    left: -100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: left ease-in .24s;
    line-height: 15px;
}

.team figure figcaption h6 {
    font-size: 18px;
}

.team figure:hover figcaption {
    left: 0;
}

.team figure figcaption a {
    color: #fff;
    font-size: 22px;
}

.info {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    color: #1D9F9F;
}

.copy {
    font-size: 14px;
    color: #174793;
    font-weight: 400;
    margin-top: 60px;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
}

button:focus {
    outline: none;
}
.lh-23px{
    line-height: 23px;
}

@media (max-width: 1440px) {
    h4 {
        font-size: 38px;
    }

    .container-fluid {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width:1280px) and (max-width: 1430px) {
    .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }

    .saiph-img {
        width: 80%;
    }
}
@media (min-width:1100px) and (max-width: 1279px) {
    h4 {
        font-size: 28px;
    }
    .team figure figcaption{
        padding: 10px;
    }
}

@media (min-width:768px) and (max-width: 1024px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }

    .section {
        padding: 100px 0;
    }

    .home-hero-section {
        padding-top: 250px;
    }

    h4 {
        font-size: 30px;
    }

    .team figure figcaption {
        padding: 5px;
    }
}

/* iPad Landscape */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .long-wang p {
        margin-bottom: 5px;
    }
    .team figure figcaption p{
        line-height: 14px;
    }
}

/* End iPad Landscape */

/* iPad portrait */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    header {
        top: 15px;
    }

    header .navbar {
        padding: 5px 15px;
    }

    .navbar-collapse {
        position: fixed;
        background-color: #174793;
        width: 100%;
        left: -100%;
        top: 0;
        height: 100%;
        display: block !important;
        transition: left ease-in .24s;
        padding: 40px;
        padding-top: 80px;
    }

    .navbar-collapse.show {
        left: 0;
    }

    header .navbar .nav-item+.nav-item {
        margin-left: 0;
    }

    header .navbar .nav-link::after {
        display: none;
    }

    header .navbar .nav-link {
        font-size: 28px;
        line-height: 62px;
        color: #fff;
        font-weight: 500 !important;
        font-family: 'Montserrat', sans-serif;
    }

    .navbar-brand img {
        height: 58px;
    }

    .navbar-toggler-icon {
        height: auto;
    }

    .navbar-toggler {
        padding-right: 0;
    }

    .team-section{
        padding-bottom: 0;
    }

    .team {
        padding-top: 40px;
        margin-left: -50px;
        margin-right: -50px;
        max-width: inherit;
        padding-left: 50px;
        padding-right: 50px;
    }


    .team figure {
        /* max-width: 230px; */
        margin: 0 auto;
        padding: 0 15px;
    }

    .team figure img {
        height: 220px;
        object-fit: unset;
        margin: 0 auto;
        display: block;
        width: auto !important;
    }

    .team figure figcaption {
        background-color: transparent;
        position: inherit;
        top: 0px;
        left: 0;
        height: 100%;
        font-size: 14px;
        color: #4E4E4E;
        line-height: 22px;
        padding: 20px 0;
        padding-bottom: 50px;
    }

    .team figure figcaption a {
        color: #4E4E4E;
        font-size: 22px;
    }
    form{
        width: 100%;
    }
    .navbar-toggler {
        padding-right: 0;
        margin-top: -2px;
    }
}

/* End iPad portrait */

@media (min-width:320px) and (max-width: 767px) {
    html, body{
        height: 100%;
    }
    body {
        background-image: none;
        font-size: 14px;
    }
    #fullpage{
        height: 100%;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section,
    section {
        padding: 50px 0;
    }

    .home-hero-section {
        height: 100%;
        display: flex;
        align-items: flex-end;
        padding: 0;
        padding-bottom: 50px;
        min-height: auto;
    }

    h1 {
        font-size: 38px;
        line-height: 50px;
    }

    h2 {
        font-size: 32px;
        line-height: 64px;
    }

    h4 {
        font-size: 24px;
        line-height: 40px;
    }

    header {
        top: 15px;
    }

    header .navbar {
        padding: 5px 15px;
    }

    .navbar-collapse {
        position: fixed;
        background-color: #174793;
        width: 100%;
        left: -100%;
        top: 0;
        height: 100%;
        display: block !important;
        transition: left ease-in .24s;
        padding: 40px;
        padding-top: 80px;
    }

    .navbar-collapse.show {
        left: 0;
    }

    header .navbar .nav-item+.nav-item {
        margin-left: 0;
    }

    header .navbar .nav-link::after {
        display: none;
    }

    header .navbar .nav-link {
        font-size: 28px;
        line-height: 62px;
        color: #fff;
        font-weight: 600 !important;
        font-family: 'Montserrat', sans-serif;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler-icon {
        height: auto;
        vertical-align: inherit;
        width: auto;
    }

    .navbar-toggler {
        padding-right: 0;
        margin-top: -2px;
    }

    .pages-hero-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 35px;
    }

    .pages-hero-section p {
        font-size: 22px;
        line-height: 28px;
    }

    .h5 {
        font-size: 20px;
    }

    .team {
        padding-top: 40px;
    }

    .team figure {
        /* max-width: 230px; */
        margin: 0 auto;
        padding: 0 15px;
    }

    .team figure img {
        height: 220px;
        object-fit: unset;
        margin: 0 auto;
        display: block;
        width: auto !important;
    }

    .team figure figcaption {
        background-color: transparent;
        position: inherit;
        top: 0px;
        left: 0;
        height: 100%;
        font-size: 14px;
        color: #4E4E4E;
        line-height: 22px;
        padding: 20px 0;
        padding-bottom: 50px;
    }

    .team figure figcaption a {
        color: #4E4E4E;
        font-size: 22px;
    }

    .info {
        font-size: 14px;
    }

    footer {
        height: auto;
        display: block;

    }

    .footer .border-left {
        border-left: none !important;
    }

    .team-section {
        padding-bottom: 0;
    }

    .home-hero-section .carousel {
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .home-hero-section .carousel img {
        height: 100%;
        object-fit: cover;
    }

    .home-hero-section .container-fluid {
        position: relative;
        z-index: 999;
    }

    .home-hero-section p br {
        display: none;
    }
    .carousel-inner{
        height: 100%;
    }
    .carousel-item{
        height: 100%;
    }

    .footer {
        font-size: 14px;
    }

    .footer .list-unstyled li a {
        font-size: 16px;
    }

    .pages-hero-section h1 {
        font-size: 30px;
    }
}