@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/**** default ****/
html {}
body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #002C42;
    background-color: #EFF6F5;
}
img {
    position: relative;
    display: block;
    max-width: 100%;
}
a { text-decoration: none; }
.overflow-hidden {
    overflow: hidden;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-1 {
    flex: 0 0 auto;
    width: 100%;
}
.flex-2 {
    flex: 0 0 auto;
    width: 50%;
}
.my-1 { margin-bottom: 80px; }
.logo {}
.logo img {}

.row { display: flex; flex-wrap: wrap; margin-left: -10px; margin-right: -10px; justify-content: center; }
.row>* { flex: 0 0 auto; flex-shrink: 0; max-width: 100%; width: 100%; padding-right: 10px; padding-left: 10px; box-sizing: border-box; }
.col-1 { width: 16.66666667%; }
.col-2 { width: 33.33333333%; }
.col-3 { width: 50%; }
.col-4 { width: 66.66666667%; }
.col-5 { width: 83.33333333%; }
#particles-js {
    position: fixed;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
@media (min-width: 800px) {
    .my-1 { margin-bottom: 300px; }
    .col-d-1 { width: 16.66666667%; }
    .col-d-2 { width: 33.33333333%; }
    .col-d-3 { width: 50%; }
    .col-d-4 { width: 66.66666667%; }
    .col-d-5 { width: 83.33333333%; }
    .col-i-1 { width: 16.66666667%; }
    .col-i-2 { width: 33.33333333%; }
    .col-i-3 { width: 50%; }
    .col-i-4 { width: 66.66666667%; }
    .col-i-5 { width: 83.33333333%; }
    .col-d-6,
    .col-i-6 { width: 100%; }
    .d-hide { display: none; }
}
@media (min-width: 1200px) {
    .my-1 { margin-bottom: 300px; }
    .col-d-1 { width: 16.66666667%; }
    .col-d-2 { width: 33.33333333%; }
    .col-d-3 { width: 50%; }
    .col-d-4 { width: 66.66666667%; }
    .col-d-5 { width: 83.33333333%; }
    .col-6,
    .col-d-6 { max-width: 1040px; }
}
@media (max-width: 799px) {
    .m-hide { display: none; }
}

/**** custom ****/
p {
    font-size: 13px;
    font-weight: 300;
}
p:not(:last-child) { margin-bottom: 30px; }

.c-blue { 
    color: #007090;
}

@media (min-width: 768px) {
    p { font-size: 20px; }
}
@media (min-width: 992px) {
    p { font-size: 20px; }
}


/**** header / menu ****/
header {
    position: fixed;
    display: block;
    padding: 24px 22px;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: all .6s ease; 
    -moz-transition: all .6s ease; 
    -o-transition: all .6s ease; 
    transition: all .6s ease;
}
header .flex { justify-content: space-between; align-items: center; }
.header-logo {}
.header-logo img { width: 108px; }
.btn-menu { 
    position: relative; display: block; border: none; z-index: 110; margin-right: 0; background-color: transparent !important; padding: 5px 0; }
.btn-menu span {
    background-color: #fff; display: block; width: 25px; height: 3px; border-radius: 3px;
    -webkit-transition: all .5s cubic-bezier(0.4, 0, 0.1, 1); 
    -moz-transition: all .5s cubic-bezier(0.4, 0, 0.1, 1); 
    -ms-transition: all .5s cubic-bezier(0.4, 0, 0.1, 1); 
    -o-transition: all .5s cubic-bezier(0.4, 0, 0.1, 1); 
    transition: all .5s cubic-bezier(0.4, 0, 0.1, 1);}
.btn-menu span:first-child { margin-bottom: 4px; }
.btn-menu span:last-child { margin-top: 4px;}
.btn-menu span:nth-child(2) { margin: 0;}
.btn-menu span:nth-child(3) { margin: -3px 0 0;}
.menu-active .btn-menu span:first-child { transform: translateY(6px); background-color: transparent; }
.menu-active .btn-menu span:last-child { transform: translateY(-6px); background-color: transparent; }
.menu-active .btn-menu span:nth-child(3) { transform: rotateZ(135deg);}
.menu-active .btn-menu span:nth-child(2) { margin: 0; transform: rotateZ(-135deg);}

.menu-active .menu-popup {
    opacity: 1;
    visibility: visible;
}
.menu-active .menu-popup .backdrop {}
.menu-popup .menu-wrap { position: relative; }
.menu-popup .menu-nav {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}
.menu-popup .menu-nav li {}
.menu-popup .menu-nav li a:hover {}
.menu-popup .menu-nav li a.current { color: #00C4D8; font-weight: 700; }
.menu-popup .menu-nav li a {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    padding: 1.5rem 15px;
    font-family: "Poppins", sans-serif;
    -webkit-transition: color .5s ease .5s; 
    -moz-transition: color .5s ease .5s; 
    -o-transition: color .5s ease .5s; 
    transition: color .5s ease .5s;
}

@media (max-width: 799px) {
    header.scrolled { 
        margin-top: -100%;
        -webkit-transition: all .6s ease; 
        -moz-transition: all .6s ease; 
        -o-transition: all .6s ease; 
        transition: all .6s ease;
    }
    .menu-popup {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        padding: 5px 0 20px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }
    .menu-popup .backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
        background: linear-gradient(138.24deg, rgba(159, 159, 159, 0.88) 28%, rgba(31, 31, 31, 0.88) 100%);
        background-blend-mode: multiply;
    }
}
@media (min-width: 800px) {
    header {
        padding: 22px 35px;
        background-color: #EFF6F5;
        box-shadow: 0px 0px 16px 0px #002C4240;
    }
    .header-logo img { width: 162px; }
    .menu { margin-right: 5vw; }
    .btn-menu { display: none; }
    .menu-popup .menu-nav { display: flex; }
    .menu-popup .menu-nav li a.current { color: #004E69; }
    .menu-popup .menu-nav li a {
        color: #0D1416;
        letter-spacing: 2px;
        padding: .8rem 2.5vw;
    }
    .menu-popup .menu-nav li a:after { 
        content: '';
        position: absolute;
        opacity: 0;
        left: 2vw;
        right: 2vw;
        height: 6px;
        bottom: 0;
        background-color: #fff;
        -webkit-transition: all .5s ease .5s; 
        -moz-transition: all .5s ease .5s; 
        -o-transition: all .5s ease .5s; 
        transition: all .5s ease .5s;
    }
    .menu-popup .menu-nav li a.current:after { 
        display: block;
        opacity: 1;
        background-color: #004E69;
    }
}
@media (min-width: 1200px) {
    .menu { margin-right: 15vw; }
}


/**** banner ****/
.hero-banner {
    position: relative;
    color: #EFF6F5;
}
.hero-img {
    position: relative;
    display: block;
    width: 100%;
}
.hero-banner img { width: 100%; }
.hero-banner .hero-text {
    position: absolute;
    display: flex;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    max-width: 1260px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px 20px 20px;
}
.hero-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    margin: 15px 0;
}
.hero-desc {
    font-size: 14px;
    margin: 15px 0;
    text-align: justify;
}

@media (max-width: 799px) {
    .hero-banner {
        box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.32);
    }
}
@media (min-width: 800px) {
    .hero-title { 
        font-size: 54px;
        line-height: 64px; 
    }
    .hero-desc { 
        font-size: 20px;
        max-width: 700px;
    }
}
@media (min-width: 800px) and (max-width: 1399px) {
    .hero-img { height: 80vh; }
    .hero-img img { object-fit: cover; object-position: center bottom; height: 100%; }
}
@media (max-height: 500px) {
    .hero-img { height: 500px; }
    .hero-img img { object-fit: cover; object-position: center bottom; height: 100%; }
}



/**** content ****/
.main {
    position: relative;
    display: block;
    padding: 45px 20px 0;
    background-image: url('../img/bg-main-mobile.png');
    background-size: cover;
    background-position: center;
}
.main h2 {position: relative;font-size: 12px;padding-left: 8px;margin: 0 0 16px;}
.main h2:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 16px;
    background-color: #007090;
    left: 0;
    top: 1px;
    bottom: 0;
}
.main h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 24px;
    letter-spacing: 1px;}
.main h3 span { display: block; }
.main h4 { font-family: -apple-system, SF Pro Display, sans-serif; font-size: 14px; }
.main p { text-align: justify; margin-top: 0; margin-bottom: 0; font-weight: 400; }
.main p:not(:last-child) { margin-bottom: 30px }

.main .row { margin-left: -8px; margin-right: -8px; }
.main .row>* { display: flex; padding-left: 8px; padding-right: 8px; margin-bottom: 16px; align-self: stretch; }
.section-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 20px 30px;
    border-radius: 16px;
    border: 0.43px solid rgba(0, 112, 144, 0.14);
    box-shadow: 1.73px 1.73px 10.39px 0px rgba(0, 44, 66, 0.16);
    background-color: #EFF6F5;
}
.section-item img { max-width: 63px; width: 100%; margin: 20px auto; }
.section-item img + h4 { margin-top: 10px; }
.section-item h4 { color: #007090; text-align: center; margin-bottom: 0; }
.section-item p { display: none; }

@media (min-width: 800px) {
    .main {
        background-image: url('../img/bg-main.png');
        background-position: center top;
        padding-top: 100px;
    }
    .main .content {
        position: relative;
        display: block;
        margin: 0 auto;
        max-width: 1220px;
    }
    .main h2 {
        font-size: 20px; 
        padding-left: 0; 
        letter-spacing: 1px; 
        margin-bottom: 20px; 
        padding-left: 10px;
    }
    .main h2:before { display: none; }
    .main h3 {font-size: 40px;padding-left: 25px;position: relative;line-height: 56px;}
    .main h3:before {
        content: '';
        position: absolute;
        width: 8px;
        height: 100%;
        background-color: #007090;
        left: 0;
        top: 0;
        bottom: 0;
    }
    .main h3 + p { padding-left: 10px; }
    .main h3 span {display: inline-block;}
    .main h4 { font-size: 24px; }
    .section-item img { max-width: 130px; }
    .section-item img + h4 { margin-bottom: 16px; }
    .section-item p { display: block; text-align: center; font-size: 18px; }
}
@media (min-width: 1200px) {
    .main h2 { font-size: 20px; }
    .main h3 {font-size: 40px;line-height: 56px;}
    .main h4 { font-size: 24px; }
}


/**** footer ****/
footer {
    position: relative;
    display: block;
    font-family: -apple-system, SF Pro Display, sans-serif;
    background-image: url('../img/bg-footer-mobile.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px 20px 10px 20px;
    color: #EFF6F5;
}
footer p { font-size: 12px; }
.footer-top {
    position: relative;
    display: block;
}
.footer-top h2 { font-size: 16px; }
.footer-info {
    position: relative;
    display: flex;
}
.footer-info h4 {
    margin-bottom: 10px;
}
.footer-info p {}
.footer-info a {
    position: relative;
    display: block;
    color: #EFF6F5;
}
.footer-logo {
    margin-bottom: 10px;
}
.footer-logo img {
    width: 135px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.footer-copyright {
    text-align: center;
}
.footer-copyright p { font-size: 8px; }


@media (min-width: 800px) {
    footer { background-image: url('../img/bg-footer.jpg'); }
    footer p {font-size: 16px;}
    .footer-top h2 { font-size: 32px; margin-top: 40px; letter-spacing: 2px; }
    .footer-top h3,
    .footer-info p,
    .footer-logo {margin-bottom: 20px;}
    .footer-top { margin-bottom: 60px; }
    .footer-top { position: relative; display: block; max-width: 1160px; margin-left: auto; margin-right: auto; }
    .footer-top > .row > [class^="col"]:nth-child(2) { align-content: end; }
    .footer-info {}
    .footer-info:before { width: 19px; height: 191px; top: 2px; }
    .footer-info h4 {
        font-size: 20px;
    }
    .footer-info .col-6 p { max-width: 340px; }
    .footer-logo img {margin-right: 0;width: 280px;}
    .footer-copyright p { font-size: 16px; }
}



/**** popup ****/
.popup-services { display: none; }

@media (max-width: 799px) {
    .popup-services.active {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        z-index: 2;
        padding: 44px;
        display: flex;
        box-sizing: border-box;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        opacity: 1;
        visibility: visible;
    }
    .popup-services .backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
        background: linear-gradient(138.24deg, rgba(159, 159, 159, 0.88) 28%, rgba(31, 31, 31, 0.88) 100%);
        background-blend-mode: multiply;
    }
    .popup-services .content {
        position: relative;
        display: block;
        background-color: #EFF6F5;
        border: 1px solid #002C421A;
        border-radius: 12px;
        padding: 20px;
    }
    .popup-services .content-top {
        align-items: center;
    }
    .popup-services img {
        width: 48px;
        height: 48px;
    }
    .popup-services h4 {
        font-size: 16px;
        color: #007090;
        padding-left: 15px;
        margin: 0;
    }
    .popup-services .content-desc {}
    .popup-services .close {
        position: absolute;
        display: block;
        top: 10px;
        right: 10px;
        height: 18px;
        width: 18px;
    }
    .popup-services .close span {
        background-color: #002C42;
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 2px;
    }
    .popup-services .close span:nth-child(1) {
        transform: rotateZ(45deg);
        margin-top: 8px;
    }
    .popup-services .close span:nth-child(2) {
        transform: rotateZ(-45deg);
        margin-top: -2px;
    }
}



/**** targetted ****/
#services { margin-bottom: 50px; }
#aboutUs .col-i-3.col-d-2 { margin-bottom: 0; }

@media (min-width: 800px) {
    .main { overflow-x: hidden; }
    #services { margin-bottom: 150px; }
    .main #services h3 + p { max-width: 865px; margin-bottom: 150px; }
    .main #services .row { margin-left: -14px; margin-right: -14px; position: relative; }
    .main #services .row>* { padding-left: 14px; padding-right: 14px; margin-bottom: 28px; }
    .main #services .row:before {
        content: '';
        position: absolute;
        width: 116%;
        height: 130%;
        left: -10%;
        top: -15%;
        background-image: url('../img/bg-section-services.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    #aboutUs .row { justify-content: unset; }
}
@media (min-width: 1200px) {
    #services { margin-bottom: 180px; }
    #aboutUs .col-i-3.col-d-4 { width: 51%; }
    #aboutUs .col-i-3.col-d-2 { width: 49%; }
}

















