html,
body {
    margin: 0;
    padding: 0;
    font-family: "RobotoLight", sans-serif;
    color: rgb(97, 97, 97);
}

a {
    color: #f2f2f2;
}

a:hover {
    color: #235077;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/

.btn-blue {
    background-color: #235077;
    color: white;
}

.btn-blue:hover {
    color: #235077;
    background-color: rgba(255, 255, 255, 0.9);
    border-color: #235077;
    transition: .3s all;
}

.btn-green {
    background-color: #3bb550;
    color: white;
}

.btn-green:hover {
    color: #3bb550;
    background-color: rgba(255, 255, 255, 0.9);
    border-color: #3bb550;
    transition: .3s all;
}

.btn-white.blue {
    background-color: white;
    color: #235077;
    border: solid 1px white;
}

.btn-white.blue:hover {
    background-color: #235077;
    color: white;
    border: solid 1px #235077;
}

.bg-grey {
    background-color: #f7f7f9;
}

@media screen and ( min-width: 768px) {
    .bg-linear {
        background: linear-gradient(90deg, white 35%, #f2f2f2 0%);
    }
    .bg-linear-grey {
        background: linear-gradient(90deg, #f2f2f2 35%, white 0%);
    }
}


/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/

.fs-9 {
    font-size: .9rem;
}

.fs-14 {
    font-size: 1.4rem;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    /* background-image: url('../img/bg-hero.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #47b2e4;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px;
    border-radius: 50px;
    background: #235077;
    color: #fff;
    transition: all 0.4s;
    padding: 8px;
    border: solid 2px transparent;
}

.back-to-top svg:hover {
    background: transparent;
    color: #235077;
    border: solid 2px #235077;
    transition: all 0.3s;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    background-color: white;
}

#header.header-scrolled {
    background: white;
    padding: 1.2rem !important;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    height: 40px;
}

@media (max-width: 992px) {
    #header {
        padding: 1rem !important;
    }
    #header.header-scrolled {
        background: white;
        padding: 1rem !important;
    }
}

@media (max-width: 1200px) {
    #header {
        padding: 2rem !important;
    }
}

@media (min-width: 1366px) {
    #header.header-scrolled {
        background: white;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: black;
    transition: 0.3s;
    font-family: "GilmerMedium", sans-serif;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .nav-menu a {
        font-size: 0.8rem;
    }
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #3bb550;
}

.nav-menu .drop-down ul {
    border-radius: 8px;
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0c3c53;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #47b2e4;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: absolute;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #235077;
}

.mobile-nav {
    position: fixed;
    top: 90px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #000;
    padding: 10px 20px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    /*outline: none;*/
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #47b2e4;
    text-decoration: none;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    background-image: url('../img/bg-hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}

#hero.hero-size {
    width: 100%;
    height: 100vh;
    padding-bottom: 0;
    margin-bottom: 0;
}

#hero.hero-size::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero h1 {
    font-family: "GilmerBold", sans-serif;
}

#hero h2 {
    letter-spacing: 5px;
}

#myCarousel h1 {
    font-family: "GilmerBold", sans-serif;
}

#myCarousel h2 {
    letter-spacing: 5px;
}

#myCarousel .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.slider-banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 900px;
    padding-top: 15%
}

@media (max-width: 768px) {
    .slider-banner {
        padding-top: 40%
    }
}

.call {
    width: max-content;
    background: #235077;
    padding: 0.7rem 1.4rem;
    position: fixed;
    bottom: 0rem;
    right: 5rem;
    z-index: 10000;
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    #hero h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    #myCarousel h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    #myCarousel h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.btn {
    font-family: "GilmerMedium";
    letter-spacing: 2px;
    border-radius: 0 !important;
}

@media (min-width: 768px) {
    .side-section {
        position: absolute;
        z-index: 1;
        padding-left: 2vw;
    }
    .rotate {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .side-section {
        text-align: center;
    }
}

.section-bg {
    margin-bottom: 30px;
    background-color: #f3f5fa;
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about {
    padding-bottom: 0;
}

.why-choose img {
    width: 72px;
    height: 72px;
    margin: 10px;
}

.why-choose .gotham-book {
    font-size: 1.3rem;
    flex: 1 1 auto;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .container {
    padding: 50px;
}

@media (max-width: 768px) {
    .services .container {
        padding: 20px;
    }
    .services .border-right {
        border-bottom: 1px solid;
        border-right: 0px !important;
    }
    .services .border-left {
        border-top: 1px solid;
        border-left: 0px !important;
    }
}


/*--------------------------------------------------------------
# Companies
--------------------------------------------------------------*/

.companies {
    background-image: url('../img/bg-companies.jpg');
}

.companies-logo button {
    border: solid 1px transparent;
    background-color: transparent;
}

.companies-logo button:hover {
    border-color: #999;
    background-color: transparent;
    transition: .3s all;
}

.company img {
    height: 70vh;
    object-fit: cover;
}

.fig-companies {
    background: white;
    padding: 2rem 0 0;
}

.fig-companies-2 {
    background: white;
}

.fig-companies .figure-img {
    height: 8rem;
    object-fit: cover;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .company-content {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .fig-companies {
        padding: 1.3rem 0 0;
    }
    .fig-companies .figure-img {
        height: 6rem;
        margin-bottom: 1.3rem;
    }
    .company img {
        height: 40vh;
    }
}


/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/

.our-team {
    /* background-image: url('../img/our-team-bg.png');
	background-repeat: no-repeat;
	background-size: cover; */
    color: white;
    background-color: #3da050;
}

.leaf {
    position: absolute;
}

.leaf-page {
    left: -200px;
    top: -60vh;
}

.leaf1 {
    left: -200px;
}

.leaf2 {
    bottom: 200px;
    right: 0;
}

.team-box figure {
    padding: 2rem;
    border: solid 1px white;
    width: 100%;
}

.our-team .position,
.ceo-message .position {
    font-family: "GilmerLight";
    font-size: .7rem;
    text-transform: uppercase;
}

.img-rounded {
    border-radius: 50% !important;
}

.ceo-message img{
    width: 175px;
}

@media screen and (max-width: 768px) {
    .team-box figure {
        padding: 2rem 1rem;
        min-height: 250px;
        height:auto;
    }
}

@media screen and (max-width: 560px) {
     .team-box figure {
        padding: 1rem 1rem;
        height: 230px;
    }   
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.row>.column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Create four equal columns that floats next to eachother */

.column {
    float: left;
    width: 25%;
}


/* The Modal (background) */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    z-index: 999;
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}


/* The Close Button */

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}


/* Hide the slides by default */

.mySlides {
    display: none;
    text-align: center;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 35%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.8);
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}


/* Caption text */

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
    width: 100%;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
    background-color: black;
}

.contact input,
.contact textarea,
.post-comment input,
.post-comment textarea {
    padding: 1.8rem 1rem;
    border-radius: 0;
    border: none;
}

.contact .caret {
    top: 50%;
    transform: translate(0%, -50%);
    right: 0;
}

.with-line {
    padding-bottom: 1.2rem;
    border-bottom: solid 1px white;
}

.contact-icon {
    border: solid 2px #3bb550;
    height: max-content;
    padding: 10px;
    border-radius: 50%;
}

.contact-icon svg {
    vertical-align: middle;
    width: 25px !important;
    height: 25px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    background-color: #3da050;
    color: white;
}

.footer ul li {
    font-family: "RobotoRegular";
    margin-bottom: 1rem;
}

.socmed {
    margin-bottom: 2rem;
}

.socmed a {
    font-size: 2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    margin-right: 2rem;
}


/*--------------------------------------------------------------
#
--------------------------------------------------------------*/

figure .figure {
    border: solid 1px;
    padding: 2rem;
}

figure .fig-service {
    position: relative;
}

.fig-service .div {
    position: absolute;
    margin: 10px auto;
    bottom: 0.5rem;
    width: 100%;
}

.services .fig-service .figure-img {
    height: 300px;
    object-fit: cover;
}

.services.page .fig-service {
    border: solid 2px #d9d9db;
    position: relative;
}

.services.page .fig-service .div {
    bottom: 120px;
    text-align: center;
}

.news-box {
    display: flex;
    align-items: center;
    background-color: white;
}

.news-title {
    color: #235077;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-title:hover {
    text-decoration: underline;
    transition: .3s all;
}

.news-highlight-title {
    color: white;
    font-size: 1.2rem;
}

.news-date {
    font-size: 0.8rem;
}

.news-detail {
    position: relative;
    background-color: white;
}

.news-detail .news-date {
    text-align: center;
    width: max-content;
    margin: 0 auto;
    background: white;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
    float: left;
}

.tag {
    color: rgb(97, 97, 97);
    border: solid 1px rgb(97, 97, 97);
    padding: 10px;
    display: inline-block;
    padding: 5px 20px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag:hover {
    background-color: #3da050;
    border-color: #3da050;
    color: white;
    transition: .3s all;
}

.tag:hover::after {
    border-left-color: crimson;
}

.news-detail .recent a {
    color: black;
    font-size: 1.2rem;
}

.star a {
    font-size: 1.3rem;
    color: #ddd;
}

.star a:hover {
    color: #3da050;
}

.fig-news {
    border: solid 2px #d9d9db;
}

.fig-news a:hover {
    text-decoration: underline;
}

.fig-news .news-date,
.fig-news-detail .news-date {
    position: absolute;
    background: white;
    bottom: 100px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: max-content;
}

@media screen and (min-width:992px) and (max-width: 1200px) {
    .fig-news a {
        bottom: 120px;
    }
}

.bottom-left {
    position: absolute;
    bottom: 30px;
    left: 45px;
    max-width: 300px;
    /* background-color: rgba(255, 255, 255, 0.4); */
    padding: 0 20px;
}

.text-green {
    color: #3bb550;
}

.text-blue {
    color: #235077;
}

.searchBox {
    background: transparent;
    padding: 2px;
}

.searchBox:hover>.searchInput {
    width: 120px;
    padding: 0 6px;
}

.searchBox:hover>.searchButton {
    background: white;
    color: #3bb550;
}

.searchButton {
    color: #3bb550;
    float: right;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.searchInput {
    border: none;
    background: white;
    outline: none;
    float: left;
    padding: 0;
    color: black;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}

@media screen and (max-width: 620px) {
    .searchBox:hover>.searchInput {
        width: 150px;
        padding: 0 6px;
    }
}


/* Page Title */

.page-title {
    height: 50vh;
}

.page-title .container {
    margin-top: 20vh;
}

@media screen and (max-width: 992px) {
    .page-title {
        height: 30vh;
    }
    .page-title .container {
        margin-top: 10vh;
    }
}

@media(max-width:404px) {
    .strategic-policy {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .call {
        font-size: smaller;
    }
    .phone_text {
        font-size: smaller;
    }
    .email_text {
        font-size: smaller;
    }
}

@media(max-width:504px) {
    .call {
        font-size: smaller;
    }
    .phone_text {
        font-size: smaller;
    }
    .email_text {
        font-size: smaller;
    }
    .news-update {
        width: 100%;
        text-align: center;
    }
    .link_post {
        margin: 20px 0;
    }
    .content-post {
        margin-top: 30px;
    }
}

@media(max-width:993px) {
    #hero {
        margin-top: 50px;
    }
}