:root  {
    --primary-color: #003366;
    --primary-black-color: #222;
    --black-content-text-color: #333;
    --grey-color: #666666;
    --font-family: "Poppins", 'Font Awesome 6 Free', "Font Awesome 6 Brands", sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #000;
    padding: 0 20px;
    font-weight: 400;
    font-family: var(--font-family);
    line-height: 1.5;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    transition: .3s ease; 
}


body.open, html.open {
    overflow: hidden;
}

@media(min-width: 990px) {
    .container {
        width: 1100px;
    }
    
}

@media(max-width: 990px) {
    body {
        padding: 0 10px;    
    }
}

.row>* {
    flex-shrink: 1;
}

h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
}

/*-- sub-banner title --*/

#sub-banner .sub-title p,
#sub-banner .news-title p {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.3;
}

h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

h2.align-left {
    text-align: left;
    margin-bottom: 24px;
}

h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

h4 {
    font-size: 30px;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}


@media(max-width: 990px) {
    h1 {
        font-size: 46px;
    }
    
    h2,
    #sub-banner .sub-title p,
    #sub-banner .news-title p {
        font-size: 36px;
    }
    
    h3 {
        font-size: 32px;
    }
    
    h4 {
        font-size: 28px;
    }
}

@media(max-width: 576px) {
    #sub-banner .news-title p {
        font-size: 30px;
    }
}

a {
    text-decoration: none;
    color: #fff;
}

a, a:hover,
.btn, .btn:hover,
:before, :hover:before {
   transition: .3s ease; 
}


ul, li, ol {
    list-style-type: none;
}


/*-- Buttons --*/

.btn, .contact-btn {
    font-size: 14px;
    font-weight: 500;
    border-radius: 100em;
    margin-top: 10px;
    width: fit-content;
}

.banner-btn {
    color: #FFF;
    background: var(--primary-color);
    padding: 14px 16px 14px 12px;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
}

.banner-btn:before {
    content: '\f061';
    margin-right: 10px;
    width: 25px;
    font-weight: 900;
    padding: 2px;
    color: #fff;
    background: var(--grey-color);
    border-radius: 100em;
    display: inline-block;
}

.banner-btn:hover {
    color: #fff;
    background: var(--grey-color);
    padding: 14px 12px 14px 16px;
    flex-direction: row-reverse;
}

.banner-btn:hover:before {
    margin-right: 0;
    margin-left: 10px;
    color: #FFF;
    background: var(--primary-color);
}

.contact-btn {
    color: #fff;
    background: var(--primary-black-color);
    padding: 14px 16px 14px 12px;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    margin-top: 32px;
}

.contact-btn:before {
    content: '\f061';
    margin-right: 10px;
    width: 25px;
    font-weight: 900;
    padding: 2px;
    color: #FFF;
    background: var(--primary-color);
    border-radius: 100em;
    display: inline-block;
}

.contact-btn:hover {
    color: #FFF;
    background: var(--primary-color);
    padding: 14px 12px 14px 16px;
    flex-direction: row-reverse;
}

.contact-btn:hover:before {
    margin-right: 0;
    margin-left: 10px;
    color: #fff;
    background: var(--primary-black-color);
}


.border-btn {
    color: #fff;
    background: var(--primary-black-color);
    padding: 10px 10px 10px 16px;
}

.border-btn:after {
    content: '\f061';
    margin-left: 10px;
    width: 25px;
    font-weight: 900;
    padding: 2px;
    color: #FFF;
    background: var(--primary-color);
    border-radius: 100em;
    display: inline-block;
}

.border-btn:hover {
    background: var(--primary-color);
    color: #FFF;
}

.border-btn:hover:after {
    background: var(--grey-color);
    color: #fff;
}

.yellow-border-btn {
    color: #FFF;
    background: var(--primary-color);
    padding: 10px 10px 10px 16px;
    margin-top: 24px;
    border: 1px solid var(--primary-color);
}

.yellow-border-btn:after {
    color: #fff;
    background: var(--primary-black-color);;
}

.yellow-border-btn:hover {
    background: var(--grey-color);
    color: #fff;
    border: 1px solid var(--primary-black-color);
}

.yellow-border-btn:hover:after {
    background: var(--primary-color);
    color: #FFF;
}


.more-btn {
    border-color: #fff;
}

.more-btn:after {
    content: '\f061';
    margin-left: 10px;
    width: 25px;
    font-weight: 900;
    padding: 2px;
    color: var(--primary-black-color);
    background: var(--primary-color);
    border-radius: 100em;
    display: inline-block;
    transform: rotate(90deg);
}


@media(min-width: 990px) {
    .pc-btn {
        display: block;
    }
    
    .mobile-btn {
        display: none;
    }
}

@media(max-width: 990px) {
    .pc-btn {
        display: none;
    }
    
    .mobile-btn {
        display: block;
    }
}

/*-- Buttons end --*/


/*----- Breadcrumb ----*/

.breadcrumb {
    padding: 0;
}

.breadcrumb-item {
    font-size: 12px;
    font-weight: 300;
}

.breadcrumb-item a {
    color: var(--primary-black-color);
    cursor: pointer;
}

.breadcrumb-item.active {
    font-weight: 500;
}

@media(max-width: 576px) {
    .breadcrumb-item.active {
        width: 300px;
        text-indent: -14px;
        padding-left: 24px;
    }
    
    .breadcrumb-item.active span {
        padding-left: 6px;
    }
    
}

@media(max-width: 500px) {
    .breadcrumb-item.active {
        width: 260px;
    }
}

@media(max-width: 414px) {
    .breadcrumb-item.active {
        width: 240px;
    }
}






/*----- Breadcrumb end ----*/




.img-responsive {
    max-width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.section {
    padding: 80px 0;
}

@media(max-width: 576px) {
    .section {
        padding: 60px 0;
    }
}

.white-section {
    position: relative;
    background: #fff;
}

.grey-section {
    position: relative;
    /*background: #fafafa;*/
    background: var(--grey-color);
    color: #FFF;
}

.black-section {
    position: relative;
    background: var(--primary-black-color);
    margin-top: -40px;
    padding-bottom: 120px;
    border-radius: 30px 30px 0 0;
    color: #fff;
}



/*-- Header --*/

#header {
    padding: 20px 0;
}

.header {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.company-logo {
    position: relative;
    width: 270px;
    top: 50%;
    left: 0;
    /*transform: translateY(-50%);*/
    z-index: 9;
    text-align: right;
}

@media(max-width: 990px) {
    .company-logo {
        /*position: absolute;*/
        top: 0;
        transform: unset;
    }
}

.company-logo img {
    max-width: 100%;
    object-fit: cover;
}


@media(max-width: 990px) {
    #header {
        padding: 20px 0;
    }
    
    .company-logo img {
        height: 50px;
    }
}

/*-- nav --*/
.nav-section {
    position: relative;
    width: 80%;
    max-width: 900px;
}

#navbarNav {
    width: fit-content;
    color: #FFF;
    padding: 6px 36px;
    background-color: var(--grey-color);
    border-radius: 100em;
    margin: auto;
}

.navbar-nav {
    flex-flow: row;
    gap: 40px;
}

.navbar-nav > .dropdown, 
.navbar-nav > li {
    position: unset;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-nav > li > a {
    padding: 10px;
}


@media(max-width: 990px) {
    /*#navbarNav.open .navbar-nav > .dropdown, */
    /*#navbarNav.open .navbar-nav > li {*/
    #navbarNav .navbar-nav > .dropdown, 
    #navbarNav .navbar-nav > li {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-bottom: 1px solid #555;
        margin: 0;
        padding: 1rem 0;
    }
    
    #navbarNav.open .navbar-nav > .dropdown,
    #navbarNav.open .navbar-nav > li:nth-last-child(2) {
        /*border-bottom: 1px solid #303E4B;*/
    }
}

.navbar-nav .dropdown-menu {
    position: absolute;
    width: 100%;
    /*transform: translateY(-20px);*/
    transition: opacity .22s ease, left 0s ease, transform .3s ease;
    left: -9999px;
    opacity: 0;
    background: var(--primary-black-color);
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
}

@media(max-width: 990px) {
    .navbar-nav .dropdown-menu {
        min-height: auto;
    }
}

.navbar-nav .dropdown.open .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 30px);
    opacity: 1;
    display: block;
    transition: opacity .22s ease,left 0s ease,transform .3s ease;
    box-shadow: 0 0px 2px rgb(255 244 41 / 50%);
}

@media(max-width: 990px) {
    /*#navbarNav.open .navbar-nav .dropdown.open .dropdown-menu {*/
    #navbarNav .navbar-nav .dropdown .dropdown-menu {
        position: relative;
        transform: unset;
        left: 0;
        top: 0;
        display: block;
        opacity: 1;
        background: #1f1f1f;
        padding: 0 1rem;
        border-radius: 0;
    }

    #navbarNav.open .navbar-nav .dropdown.open .dropdown-menu {
        padding: 0;
        border-radius: 0;
        border: 0;
    }
}

.navbar-nav .dropdown a {
    padding: 10px;
}

.navbar-nav > .dropdown > a:after {
    content: '\f078';
    position: absolute;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    transform: rotateZ(0deg) translateY(3px);
    margin-left: 6px;
}

.navbar-nav > .dropdown.open > a:after {
    transform: rotateZ(180deg) translateY(-4px);
}

#navbarNav .sub-dropdown.active .sub-dropdown-menu {
    padding: 0;
}


@media(max-width: 990px) {
    #navbarNav .sub-dropdown.active .sub-dropdown-menu,
    #navbarNav .sub-dropdown.active li {
        padding: 0;
    }
    
    #navbarNav .sub-dropdown.active li a {
        background: var(--primary-black-color);
        padding: 20px 70px 18px 40px;
    }
    
    /*#navbarNav.open .navbar-nav > .dropdown.open > a:after,*/
    /*.sub-dropdown.active a.sub-menu-title:after {*/
    /*    content: '\f068';*/
    /*    width: 60px;*/
    /*    text-align: center;*/
    /*    border-left: 1px solid #414D54;*/
    /*    transform: rotateZ(0deg) translateY(-50%);*/
    /*    top: 50%;*/
    /*    padding: 20px;*/
    /*}*/
}


.dropdown-menu .menu-content {
    display: flex;
}

.dropdown-menu .menu-content:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33%;
    background-color: #111;
    z-index: -1;
}

.dropdown-menu .menu-content:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 33%;
    height: 100%;
    width: 33%;
    background-color: #171717;
    z-index: -1;
    box-shadow: inset -300px 0 300px rgb(0 0 0 / 3%);
}

@media(max-width: 990px) {
    .dropdown-menu .menu-content:before,
    .dropdown-menu .menu-content:after,
    .menu-title {
        display: none;
    }
}

.menu-title {
    float: left;
    padding: 40px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.menu-title,
.menu-content .menu-list {
    position: relative;
    width: 33%;
}

.menu-content .menu-list .menu-list-home {
    padding-top: 40px;
}

@media(max-width: 990px) {
    .menu-content .menu-list .menu-list-home {
        padding-top: 0;
    }
}

.menu-content .menu-list > ul {
    width: 100%;
    padding: 0 0 50px;
}

.menu-content .menu-list li,
.menu-content .menu-list li > .dropdown {
    padding: 0 30px;
}

.menu-content .menu-list li a,
.menu-content .menu-list li > .dropdown a {
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding: 13px 0 10px 0;
    width: 100%;
    color: #fff;
    display: block;
}

.menu-content .menu-list li a:hover,
.menu-content .menu-list li > .dropdown a:hover {
    border-bottom: 1px solid #fff;
    color: var(--primary-color);
}

.navbar-nav li.active > a,
.navbar-nav li a:hover,
.navbar-nav > .dropdown > a:hover,
.navbar-nav > .dropdown > a:hover:after,
.navbar-nav > .dropdown.open > a,
.navbar-nav > .dropdown.open > a:after,
.navbar-nav > .dropdown.active > a,
.navbar-nav > .dropdown.active > a:after,
.menu-content .menu-list .sub-dropdown-menu li.active a,
.navbar-nav > .dropdown.active .menu-list-home.active a {
    color: var(--primary-color);
}

.navbar-nav li.active > a,
.navbar-nav li a:hover,
.navbar-nav > .dropdown > a:hover,
.navbar-nav > .dropdown.active > a,
.menu-content .menu-list .sub-dropdown-menu li.active a,
.navbar-nav > .dropdown.active .menu-list-home.active a {
    font-weight: 500;
}


@media(max-width: 990px) {
    .menu-content .menu-list {
        width: 100%;
    }
    
    .menu-content .menu-list > ul {
        width: 100%;
        padding: 0;
    }
    
    .menu-content .menu-list li, 
    .menu-content .menu-list li > .dropdown {
        position: relative;
        padding: 0;
        border-bottom: 1px solid #414D54;
    }
    
    .menu-content .menu-list li a, 
    .menu-content .menu-list li > .dropdown a {
        width: 100%;
        padding: 20px 70px 18px 10px;
        border-bottom: 0;
    }
    
    .menu-content .menu-list li a:hover, 
    .menu-content .menu-list li > .dropdown a:hover {
        border-bottom: 0;
        background: var(--primary-black-color);
    }
    
    .menu-content .menu-list li.active a,
    .menu-content .menu-list li.active > .dropdown a {
        background: var(--primary-black-color);
    }
    
}

.menu-content .menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
}

@media(max-width: 990px) {
    .menu-close {
        display: none;
    }
}


.menu-content .menu-close:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 24px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
}

.menu-content .menu-close:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 24px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}

li.sub-dropdown .sub-menu-title {
    cursor: pointer;
}

li.sub-dropdown .sub-menu-title:after {
    content: '\f105';
    position: absolute;
    right: 0;
    font-weight: 900;
    font-size: 14px;
}

@media(max-width: 990px) {
    li.sub-dropdown .sub-menu-title:after {
        transform: rotate(90deg);
    }
}

.sub-dropdown.active {
    /*position: relative;*/
}

.menu-content .menu-list .sub-dropdown.active > a {
    color: var(--primary-color);
}

.sub-menu-list {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 40px;
    margin: 0;
    padding: 0;
    background-color: var(--primary-black-color);
    display: none;
}

.sub-dropdown.active .sub-menu-list {
    display: block;
}


@media(max-width: 990px) {
    /*#navbarNav .sub-dropdown.active ul.sub-menu-list {*/
    #navbarNav .sub-dropdown ul.sub-menu-list {
        position: relative;
        padding: 0 2rem;
        top: 0;
        left: unset;
        width: 100%;
        display: block;
        background: #2f2f2f;
    }
    
    #navbarNav .sub-menu-list > .sub-menu-home,
    #navbarNav .sub-menu-list .sub-dropdown-menu{
        padding: 0;
    }

}

.menu-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: .3s ease;
    cursor: pointer;
    color: #fff;
}

.menu-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: .3s ease;
}

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0);
    display: none;
}

@media(max-width: 990px) {
    .menu-overlay {
        background: rgba(0,0,0,.8);
    }
}

.menu-overlay.open {
    z-index: 4;
}

.mobile-nav-top {
    position: fixed;
    transform: translateX(-300px);
    transition: .3s ease;
    display: none;
}

@media(min-width: 991px) {
    .menu-icon {
        display: none;
    }
}

@media(max-width: 990px) {
    .mobile-nav-top {
        position: relative;
        transform: unset;
        float: right;
        display: block;
    }

    .mobile-nav-top.open {
        display: flex;
        top: 0;
        /*left: -15px;*/
        z-index: 9;
        /*width: 300px;*/
        /*height: 68px;*/
        /*background: #fff;*/
        /*justify-content: space-between;*/
        align-items: center;
        /*padding: 20px;*/
        /*transform: translateX(15px);*/
        transition: .3s ease;
    }
    
    .mobile-nav-top.open a {
        color: #fff;
    }
    
    .mobile-nav-top.open a:hover {
        color: var(--primary-color);
    }
    
    .mobile-nav-top.open a i {
        font-size: 20px;
    }
    
    .mobile-nav-top.open .logo {
        width: 50px;
    }
    
    .mobile-nav-top.open .menu-icon.open {
        border-color: var(--primary-color);
        background: var(--primary-black-color);
        color: var(--primary-color);
    }
    
    .mobile-nav-top.open .menu-icon.open:hover {
        border-color: var(--primary-color);
        background: var(--primary-black-color);
        color: var(--primary-color);
    }
}



/*---- mobile menu ----*/

@media(max-width: 990px) {
    .menu {
        display: none;
    }
    
    .menu.open {
        position: absolute;
        display: block;
        z-index: 99;
    }
    
    .nav-section {
        width: 100%;
    }
    
    #navbarNav {
        position: relative;
        width: 100%;
        height: 90vh;
        border-radius: unset;
        padding: 30px;
        background: #111;
        overflow-y: auto;
    }
    
    .navbar-nav {
        flex-flow: column;
        gap: 20px;
    }
}


/*-- nav end --*/

.banner {
    position: relative;
    border-radius: 40px 40px 0 0 ;
    overflow: hidden;
}

@media(max-width: 576px) {
    .banner {
        border-radius: 30px 30px 0 0 ;
    }
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 14.65%, rgba(0, 0, 0, 0.50) 100%);
}

#sub-banner .overlay {
    background: rgba(0, 0, 0, 0.60);
}

.banner .banner-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#sub-banner .banner-image {
    /*height: 640px;*/
    height: 76vh;
    background-position: 50% -40px;
}

@media(max-width: 768px) {
    .banner .banner-image {
        background-attachment: scroll;
    }
    
    #sub-banner .banner-image {
        background-position: 50% 0;
    }
}

.banner-image .container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner .content {
    position: relative;
    width: 650px;
    color: #fff;
}

@media(max-width: 768px) {
    .banner .content {
        width: 100%;
    }
}

.banner .content .line,
.sub-title,
#sub-banner .line {
    position: relative;
    overflow: hidden;
}

.banner .content .line.h1 {
    height: 170px;
}

.banner .content .line.p {
    height: 50px;
}

@media(max-width: 576px) {
    .banner .content .line.p {
        height: 70px;
    }
}

.banner .content .line.a {
    height: 75px;
}

#sub-banner .line {
    height: 130px;
}


.sub-title {
    height: 60px;
}

.banner .content .line .text,
.sub-title .text,
#sub-banner .line .text {
    position: absolute;
}

.banner .content h1 {
    text-shadow: 0 4px 10px rgba(0,0,0,.2);
    margin-bottom: 20px;
    /*text-transform: uppercase;*/
}

.banner .content p {
    font-size: 24px;
    color: #eee;
}

@media(max-width: 576px) {
    .banner .content p {
        font-size: 20px;
    }
}

/*-- Page content --*/

.main-section {
    position: relative;
    width: 100%;
    border-radius: 40px 40px 0 0;
    background: #fff;
    overflow: hidden;
    margin-top: -40px;
}

@media(max-width: 576px) {
    .main-section {
        border-radius: 30px 30px 0 0;
    }
}

.home-intro {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 40px;
}

.home-intro .left-img {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.home-intro .left-img img {
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
}

.intro-text {
    width: 100%;
    color: var(--black-content-text-color);
}

@media(max-width: 990px) {
    .home-intro {
        flex-flow: column;
    }
    
    .home-intro .left-img {
        width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 20px;
    }
}


/*-- Article --*/

.home-article {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.home-article .row {
    gap: 25px;
    justify-content: center;
    margin: 60px 0;
}

.home-article .item,
.blogs .news-article {
    padding: 0;
    width: calc(100% / 3 - 17px);
}

.home-article .post-content,
.news-article .post-content {
    display: flex;
    flex-flow: column;
    gap: 20px;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
    color: var(--primary-black-color);
    transition: .3s ease;
}

.home-article .post-content {
    border: 1px solid #eee;
}

.preview-image {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
}

.preview-image .p-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: grayscale(50%); 
}

.preview-content-all {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.preview-content-all p {
    margin-bottom: 0;
}

.author-date {
    font-weight: 300;
    font-size: 14px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    max-height: 66px;
}


.preview-content {
    font-size: 14px;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    max-height: 80px;
}

.post-more {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 14px;
}

.post-more i {
    margin-left: 8px;
}

.item:hover .preview-image .p-img {
    filter: grayscale(0); 
}

.item:hover .post-content {
    background: var(--primary-black-color);
    color: #fff;
    transition: .3s ease;
}

.item:hover .post-title {
    color: var(--primary-color);
    transition: .3s ease;
}

.item:hover .post-more {
    font-weight: 500;
}

@media(max-width: 1200px) {
    .preview-image {
        height: 210px;
    }
}

@media(max-width: 990px) {
    .home-article .item {
        width: 100%;
    }
    
    .blogs .news-article {
        width: calc(100% / 2 - 20px)
    }
    
    .home-article .post-content {
        flex-flow: row;
    }
    
    .preview-image {
        width: 240px;
        height: 200px;
    }
    
    .blogs .news-article .preview-image {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .blogs .news-article {
        width: 100%;
    } 
    
    .home-article .post-content,
    .blogs .news-article .post-content {
        flex-flow: column;
    }
    
    .preview-image {
        max-width: 100%;
        width: 100%;
        height: 240px;
    }
}



/*--- News cursor ---*/

.cursor {
  position: fixed;
  width: 60px;
  height: 60px;
  margin-top: -35px;
  margin-left: -35px;
  border-radius: 100%;
  background: #fff;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  cursor: none;
  opacity: 0;
}

.cursor::before {
	content: "Read more";
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	border-radius: 100%;
	opacity: 1;
	color: #222;
}

.cursor.active {
	opacity: .9;
	transform: scale(1.2);
	background: var(--primary-color);
	transition: .5s cubic-bezier(0.5, -1.27, 0.3, 2.33) transform,
		.5s cubic-bezier(0.5, -1.27, 0.3, 2.33) opacity;
	backdrop-filter: blur(1.5px);
	box-shadow: 0px 0px 6px 6px var(--primary-color);
}




/*---- Footer ----*/

#footer {
    padding: 40px;
}

#footer .container {
    display: flex;
    flex-flow: column;
    gap: 40px;
    color: #fbfbfb;
    font-size: 14px;
}

#footer a,
.breadcrumb-item a {
    position: relative;
    width: fit-content;
    white-space: nowrap;
}

#footer a:after,
#footer a.dropdown-menu-title:before,
.breadcrumb-item a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #FFF;
    bottom: -1px;
    left: 0;
    opacity: 0;
    transition: .3s ease;
}

#footer a:hover:after,
#footer a.dropdown-menu-title:hover:before,
.breadcrumb-item a:hover:after {
    opacity: 1;
}

#footer .braind-section,
#footer .disclaimer-section,
#footer .privacy-section {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

#footer .braind-section {
    align-items: center;
}


@media(max-width: 990px) {
    #footer .disclaimer-section,
    #footer .privacy-section {
        flex-flow: column;
        gap: 40px;
    }
    
    #footer .privacy-section {
        gap: 30px;
    }
}

@media(max-width: 576px) {
    #footer .braind-section {
        flex-flow: column;
        gap: 20px;
        align-items: start;
    }
}

#footer .braind-section .logo {
    /*height: 192px;*/
    width: 270px;
}

#footer .braind-section .logo img {
    height: 100%;
}

#footer .braind-section .right-logos {
    display: flex;
    flex-flow: row;
    gap: 30px;
    height: 70px;
}

@media(max-width: 576px) {
    #footer .braind-section .right-logos {
        height: 60px;
    }
}

#footer .braind-section .right-logos img {
    height: 100%;
}

#footer .disclaimer-text {
    max-width: 100%;
    width: 660px;
}

#footer .disclaimer-section .links {
    display: flex;
    gap: 80px;
}

.sitemap .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.sitemap ul {
    padding: 0;
}

.sitemap ul li,
.sitemap .dropdown {
    margin-bottom: 10px;
}

.sitemap .dropdown .dropdown-menu-title:after {
    display: none;
}

.Privacy-links {
    display: flex;
    gap: 24px;
    width: 660px;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .Privacy-links {
        flex-flow: column;
        gap: 10px;
    }
}

.powered a {
    font-weight: 600;
}

/*---- Footer end ----*/

.service-content .pin-spacer {
    width: 120% !important;
}

.our-service-left-content .pin-spacer {
    width: 100% !important;
}

.service-section {
    position: relative;
    /*height: 100vh;*/
}

.service-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    color: #fff;
    display: flex;
    /*gap: 40px;*/
    justify-content: flex-end;
}

.our-service-left {
    width: 100%;
}

.our-service-left-content {
    position: relative;
}

.our-service-title {
    position: absolute;
    height: 100vh;
}

.service-content .left-content {
    position: relative;
    width: 100%;
    padding-top: 100px;
    padding-right: 20px;
}

.our-service-title .left-content {
    /*position: absolute !important;*/
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-right: 20px;
}

.serive-bg {
    position: absolute;
    top: 0;
    left: calc(-50vw + 570px);
    width: 48vw;
    height: 100vh;
    background-color: var(--primary-black-color);
    border-radius: 0 30px 0 0;
    overflow: hidden;
}

.serive-bg img {
    opacity: 16%;
    width: 100%;
    height: 100%;
}

.home-service.service-card {
    width: calc(100% / 2 - 10px);
}

@media(max-width: 1200px) {
    .service-content {
        max-width: 960px;
    }
    
    .serive-bg {
        left: calc(-50vw + 500px);
    }
}

@media(max-width: 990px) {
    
    .service-content .left-content {
        padding: 100px 40px 0;
        height: 400px;
    }
    
    .our-service-title .left-content {
        position: relative !important;
    }
    
    .service-content {
        flex-flow: wrap;
    }
    
    .serive-bg {
        width: 100%;
        height: 100%;
        left: 0;
    }
    
    .home-service.service-card {
        margin: 0;
    }
}

@media(max-width: 576px) {
    .service-content .left-content {
        height: 500px;
    }
    
    .home-service.service-card {
        width: 90%;
    }
}

.service-content .left-text {
    position: relative;
    width: 100%;
    padding-right: 40px;
    /*z-index: 1;*/
}

.our-service-left .left-text {
    width: 90%;
    margin: auto;
    padding-right: 20px;
}

.left-text p {
    color: #ddd;
}

.service-content .right-content {
    width: 100%;
    color: var(--primary-black-color);
    padding: 40px 0;
}

.our-service-right  {
    width: 100%;
}

.our-service-right .right-content {
    width: 90%;
    margin: auto;
}

.our-service-mobile {
    display: none;
}

@media(max-width: 990px) {
    .our-service-pc {
        display: none;
    }
    
    .our-service-mobile {
        display: block;
    }
}

.our-service-content {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
}

.service-content .right-content .row {
    gap: 20px;
    /*padding-bottom: 60px;*/
}

.service-card {
    width: 100%;
    background: #fbfbfb;
    border-radius: 30px;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    gap: 15px;
    align-items: center;
    justify-content: start;
    padding: 30px 18px;
    text-align: center;
    font-size: 14px;
    color: var(--primary-black-color);
}


@media(max-width: 990px) {
    .service-card {
        width: 90%;
        margin: auto;
        /*margin-left: 10%;*/
    }
    
    .service-content .left-text {
        padding-right: 0;
    }
    
    .service-content .right-content {
        padding: 60px 0;
    }
    
    .service-content .right-content .row {
        width: 90%;
        margin: auto;
    }
    
    .our-service-content {
        min-height: auto;
    }
}

@media(max-width: 576px) {
    .service-content .right-content .row {
        justify-content: center;
        gap: 24px;
    }
}

.service-card .card-title {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.service-card .card-title .icon {
    width: 60px;
}

.service-card .card-title p {
    font-weight: 600;
    font-size: 18px;
}

.service-card:hover {
    background: var(--primary-black-color);
    box-shadow: 0 0 2px 1px var(--primary-color);
    color: #fff;
}

.service-card:hover .card-title p {
    color: var(--primary-color);
}

.service-card:hover .card-title .icon {
    filter: brightness(0) invert(1);
}

.service-right-content .service-card {
    background: #fff;
    flex-flow: row;
    align-items: flex-start;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 24px;
}

.service-right-content .service-card:last-child {
    border: 0;
}

.service-right-content .card-icon {
    flex: none;
    width: 50px;
    height: 50px;
    color: #fff;
    background: var(--primary-black-color);
    border-radius: 50%;
    padding: 10px;
}

.service-right-content .card-icon .icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.service-right-content .card-content .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

.service-right-content .service-card:hover {
    background: var(--primary-black-color);
    border-radius: 30px;
    border-bottom: 0;
    color: #fff;
}

.service-right-content .service-card:hover .title {
    color: var(--primary-color);
}

.service-right-content .service-card:hover  .card-icon {
    background: #fff;
}

.service-right-content .service-card:hover .card-icon .icon {
    filter: brightness(1) invert(0);
}


/*---- Testimonial ----*/

.testimonial-section {
    display: flex;
    gap: 50px;
}

.testimonial-section .right-text {
    width: 60%;
}

.testimonial-section .left-text {
    margin-top: 40px;
}

.testimonial-section .right-text .icon {
    width: 80px;
    height: 80px;
    fill: #fff;
}

@media(max-width: 990px) {
    .testimonial-section {
        flex-flow: wrap;
        justify-content: center;
    }
    
    .testimonial-section h2.align-left,
    .testimonial-section .left-text p {
        text-align: center;
    }
    
    .testimonial-section .right-text {
        width: 100%;
    }
    
    .testimonial-section .right-text .btn {
        margin: 30px auto 0;
    }
}

.testimonialsSwiper {
    margin-left: 30px;
}

.testimonialsSwiper .swiper-slide p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 24px;
}

.testimonialsSwiper .swiper-slide p.name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.testimonialsSwiper .swiper-slide p.title {
    color: #eee;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

.swiper-btn {
    display: flex;
    flex-flow: row;
    gap: 20px;
    justify-content: end;
    align-items: center;
    margin-top: 30px;
}

.swiper-fade .swiper-slide {
    opacity: 0 !important;
}

.swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}

.swiper-control-btn {
    position: relative;
    color: #fff;
    width: 40px;
    height: 40px;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 100em;
    transition: .3s ease;
}

.swiper-control-btn:after {
    font-size: 20px;
    font-weight: 900;
    font-family: var(--font-family);
}

.swiper-button-next:after {
    content: '\f061';
}

.swiper-button-prev:after {
    content: '\f060';
}

.swiper-control-btn:hover {
    background: var(--primary-color);
    color: #FFF;
    border: 1px solid var(--primary-color);
}

/*---- Testimonial end ----*/

/*---- Footer Contact ----*/

.contact-section {
    border-radius: 30px;
    overflow: hidden;
    margin-top: -40px;
}

.contact-section .row {
    flex-flow: row;
    justify-content: space-between;
    gap: 40px;
}

.contact-content {
    width: 35%;
    color: var(--black-content-text-color);
    display: flex;
    flex-flow: column;
    gap: 40px;
}

.contact-content h2 {
    text-align: left;
    color: var(--primary-black-color);
    margin-bottom: 24px;
}

.contact-form {
    width: 60%;
}

.contact-form form {
    display: flex;
    flex-flow: column;
    gap: 32px;
}

.info-box {
    font-size: 16px;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box .title {
    font-weight: 600;
    font-size: 18px;
}

.info-box .phone,
.info-box .email {
    font-weight: 500;
}

.info-box a {
    font-weight: 400;
    color: var(--black-content-text-color);
    text-decoration: underline;
    margin-left: 6px;
}

.info-box.media .media-icons {
    display: flex;
    gap: 16px;
}

.info-box.media a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    padding: 2px;
    background: var(--primary-black-color);
    border-radius: 100em;
    border: 2px solid var(--primary-black-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0;
}

.info-box.media a:hover {
    background: var(--primary-color);
    color: #FFF;
}

.form-field:not(.submit) {
    display: inline-flex;
    flex-flow: column-reverse;
    gap: 10px;
}

.form-field label {
    color: var(--primary-black-color);
}

.form-field input,
.form-field textarea,
.form-field select {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 10px 24px;
}

.form-field textarea {
    height: auto;
    padding: 20px;
}

.form-field input:active,
.form-field input:focus-visible {
    border-color: var(--primary-black-color);
    outline: 0;
}

.form-field input::placeholder {
  color: #888;
}


@media(max-width: 990px) {
    .contact-content .title {
        width: 100%;    
    }
    
    .contact-content .title h2,
    .contact-content .title p {
        text-align: center;
    }
    
    .contact-section .row {
        flex-flow: column;    
    }
    
    .contact-form .row {
        flex-flow: wrap;
        gap: 0;
    }
    
    .contact-content,
    .contact-form,
    .info-box.media {
        width: 100%;
        flex-flow: wrap;
    }
    
    .info-box {
        width: 46%;
    }
}

@media(max-width: 768px) {
    .info-box {
        width: 100%;
    }
}




/*---- Footer Contact end ----*/


/*---- About Team ----*/

.about-section h3,
.about-section p,
.about-team h4 {
    text-align: center;
}

.about-team {
    background: #fafafa;
}

.about-team p {
    color: var(--primary-black-color);
    margin-bottom: 10px;
}

.about-title {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.small-title {
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--primary-black-color);
    border-radius: 100em;
    padding: 10px 16px;
}


.team-members {
    text-align: center;
    padding-top: 20px;
}

.team-members .row {
    justify-content: center;
}


.team-members .row > div {
    margin: 30px 0;
}

.team-members .photo img {
    object-fit: cover;
    border-radius: 100em;
}

.team-members .team-image {
    width: 210px;
    height: 210px;
    border-radius: 100em;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    margin: 0 auto 16px;
    display: block;
}

.team-members .team-image.profile-selected {
    filter: grayscale(0);
}

@media(max-width: 576px) {
    .team-members .team-image  {
        width: 150px;
        height: 150px;
    }
}

.team-members .moreinfo .title {
    color: #999;
    font-size: 14px;
}


/****************************************************\
			About Team - Click to open
\****************************************************/

.set .row{
    margin-bottom: 0;
}

.set > .container > .row {
    width: 100%;
    display:flex;
}

@media(max-width: 576px) {
    .set > .container > .row {
        flex-wrap: nowrap;
        margin: 0;
    }
}

.set .title {
    margin-bottom: 0;
    font-size: 14px;
}

.profile {
	position: relative;
}

.profile .row {
    width: 100%;
    flex-flow: row;
    justify-content: left;
    gap: 40px;
}

.profile .row > * {
    width: auto;
}

.profile .row .content {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.profile .row .content .social {
    display: flex;
    flex-flow: row;
    gap: 10px;
    margin: 10px 0 20px;
}

.profile .row .content .social a {
    background: var(--primary-black-color);
    /*border: 1px solid var(--primary-black-color);*/
    border-radius: 100em;
    height: 30px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    gap: 8px;
    cursor: pointer;
}

.profile .row .content .social a:hover {
    background: var(--grey-color);
    color: var(--primary-black-color);
}

.profile .row .content .social a img {
    max-width: 38px;
}

.profile .row .content .social a:has(img) {
    background: unset;
}

.profile .row .content .social a:has(img):hover {
    background: unset;
}

.profile .row .photo {
    margin-right: 30px;
}

.profile .photo img {
    width: 200px;
    height: 200px;
}

@media(max-width: 768px) {
    .profile .row {
        flex-flow: column;
        padding: 0 20px;
    }
    
    .team-members .profile .row .photo,
    .profile .row .content {
        margin: 0;
    }
    
}

.opengroup {
    height: auto !important;
}

.bio {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #222;
    padding: 2em 0;
    text-align: left;
}


@media(min-width:768px){
	#team .set:not(:last-child){
		padding-bottom: 30px;
	}
}

.set_wrapper:last-child .set:last-child .content-display{
	border-bottom:none;
}

.set:last-child .bio{
	border-bottom: none;
}

@media(max-width: 767px){
	.bio {
		padding: 3em 0;
	}
}


.profile .close-icon {
    float: right;
    font-size: 1.6rem;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

.moreinfo:hover {
    cursor: pointer;
}

.moreinfo img {
    min-width: 100%;
    height: 100%;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#sets .not-selected {
	opacity: 0.5;
}

a.moreinfo:hover {
	opacity: 1;
}

.profile .bio p {
   margin-bottom: 15px;
}

.profile .bio p.title {
	font-weight: 400;
}

.profile .bio ul li {
   color: #222;
}

.set .alias {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    transition: .3s ease;
}

@media(max-width: 767px){
	.set .container .row.row-eq-height .alias {
		padding: 0 1em;
		width: 50%;
	}
}

.profile .bio .title,
.profile .bio .adviser-profile {
    font-size: 14px;
}

.profile .bio ul li:before {
    content: '\f111';
    font-family: 'FontAwesome';
    position: relative;
    top: -2px;
    left: -13px;
    font-weight: 900;
    font-size: 7px;
    line-height: 1;
}

/*-- Team member Click to open end --*/

.video-section .all-content {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 40px;
}

.video-section .all-content .left-content {
    width: 100%;
}

.video-section .video {
    position: relative;
    padding-bottom: 60%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-section .video a {
    position: relative;
    display: block;
}

.video-section .video iframe {
    position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%);
	background-color: #000;
}

.video-section .all-content .right-content {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.video-section .all-content .right-content h4 {
    line-height: 1.5;
}

.video-section .all-content .right-content p {
    color: #fbfbfb;
}

.right-content .btn {
    margin-top: 0;
}

@media(max-width: 768px) {
    .video-section .all-content {
        flex-flow: column;
    }
}

/*---- pause button animation ----*/

@keyframes smallScale {
    from {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 244, 40, 1);
		opacity: 1;
    }
    
    to {
        transform: scale(1.6);
        box-shadow: 0 0 10px rgba(255, 244, 40, 0);
		opacity: 0;
    }
}


.play-button,
.play-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.play-button {
    background: var(--primary-color);
	border-radius: 50%;
	width: 66px;
    height: 66px;
    opacity: 1;
}

.play-button i {
    color: #222;
    font-size: 24px;
    z-index: 1;
}

.play-button:before,
.play-button:after {
    content: '';
    background: rgba(255, 244, 40, 0.15);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	/*backdrop-filter: blur(10px);*/
	animation: smallScale 3s infinite;
}

.play-button:after {
    animation-delay: .5s;
}


/*---- Insurance advice ----*/

#service-list h5 {
    text-align: center;
    margin-bottom: 40px;
}

#service-list h6 {
    font-size: 20px;
    margin: 30px 0 10px;
}

.service-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-flow: column;
    gap: 16px;
}

.service-box .box-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: .2;
}

.service-box .box-bg img {
    height: 100%;
}

.service-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #111;
}

.service-box > * {
    position: relative;
    line-height: 1.5;
}

.service-box .sub-title {
    height: auto;
    font-weight: 300;
    font-size: 14px;
}

.service-box h4 {
    width: 200px;
    line-height: 1.4;
    margin: 0;
}


.service-box .btn {
    margin: 0;
}


/*---- News ----*/

#searchLoadingImg {
    width: 100%;
    text-align: center;
}

.blogs {
    padding-top: 40px;
}

.blogs .row {
    gap: 25px
}

.blogs .news-article {
    margin-bottom: 35px;
}

.news-article:hover .post-content {
    background: #111;
    color: #fff;
}

.news-article .preview-image .p-img {
    filter: grayscale(100%);
}

.news-article:hover .post-title {
    color: var(--primary-color);
}

.news-article:hover .preview-image .p-img {
    filter: grayscale(0%);
}

.news-article:hover > * {
    transition: .3s ease;
}

.load-more {
    display: flex;
    justify-content: center;
}


/*---- News Article ----*/

.main-article {
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    margin-top: -40px;
}

.article-info .top {
    margin-bottom: 30px;
}

.article-info .top .date {
    font-weight: 500;
}


.article-area h4 {
    max-width: 800px;
    text-align: center;
    margin: auto;
}

.article-area .cover {
    max-width: 100%;
    width: 600px;
    height: 400px;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
}

@media(max-width: 990px) {
    .article-area .cover img {
        width: 100%;
        height: 100%;
    }
}

.article-area {
    font-size: 18px;
}

.article-area ol,
.article-area ul {
    padding-left: 20px;
}

.article-area ol li {
    list-style-type: auto;
}

.article-area li {
    margin-bottom: 10px;
}

.article-area h5 {
    margin: 30px 0 10px;
    font-size: 20px;
}

.article-table {
    width: 100%;
    font-size: 16px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
}

.article-table thead {
    background: var(--primary-black-color);
    color: #fff;
}

.article-table thead th {
    padding: 20px;
    font-weight: 600;
}

.article-table tbody tr {
    background: #fff;
    transition: .3s ease;
    /*border-left: 1px solid var(--primary-black-color);*/
    /*border-right: 1px solid var(--primary-black-color);*/
}

.article-table tbody tr:hover {
    background: #f1f1f1;
}

.article-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--primary-black-color);
}

.article-table thead th:first-child {
    border-top-left-radius: 20px;
}

.article-table thead th:last-child {
    border-top-right-radius: 20px;
}

.article-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.article-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.article-table tbody tr td:first-child {
    border-left: 1px solid var(--primary-black-color);
}

.article-table tbody tr td:last-child {
    border-right: 1px solid var(--primary-black-color);
}

.article-important {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 20px 30px 10px;
    margin: 20px 0;
    font-size: 14px;
}

.article-important .title {
    font-size: 16px;
    font-weight: 600;
}

.article-important p,
.article-disclaimer p {
    margin-bottom: 10px;
}

.article-disclaimer {
    margin: 20px 0;
}

.article-disclaimer p {
    font-size: 14px;
}

.article-disclaimer p strong {
    font-weight: 600;
}

/*---- Map ----*/
#map,
#map2 {
    width: 100%;
    height: 320px;
    border-radius: 16px;
}

/*---- Map end ----*/


/*---- Contact us ----*/

.main-contact .row {
    justify-content: space-between;
}

.main-contact .contact-content {
    width: 50%;
}

.main-contact .contact-form {
    width: 45%;
    padding-top: 20px;
}

@media(max-width: 990px) {
    .main-contact .row {
        justify-content: center;
    }
    
    .main-contact .contact-content,
    .main-contact .contact-form {
        width: 100%;
    }
    
    .main-contact .contact-form {
        margin-top: 80px;
    }
}

@media(max-width: 768px) {
    .main-contact form .row:nth-child(2),
    .contact-form form .row:nth-child(2) {
        flex-flow: row;
        
    }
}

@media(max-width: 576px) {
    .main-contact form .row:nth-child(2),
    .contact-form form .row:nth-child(2) {
        flex-flow: column;
        gap: 30px;
        
    }
}

.main-contact .office-box {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

@media(max-width: 990px) {
    .main-contact .office-box {
        width: 100%;
    }
}

.office-box .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.office-box .title span {
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
}

.office-box .detail {
    display: flex;
    flex-flow: column;
}

.office-box .address p,
.office-box p.phone,
.office-box p.email {
    font-weight: 500;
}

.office-box .address p span {
    font-weight: 400;
}

.office-box .address p a {
    color: var(--primary-black-color);
    font-size: 14px;
    margin-left: 10px;
}
.office-box .phone a,
.office-box .email a {
    color: var(--primary-black-color);
    text-decoration: underline;
    font-weight: 400;
}

.office-box .phone a:hover,
.office-box .email a:hover {
    font-weight: 500;
}

.team-member-1-widget { 
    display: flex;
}

.team-member-1-widget .p-profile__logo {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.team-member-1-widget .p-profile__logo img {
    height: 200px;
}

#what-we-do li::before {
    content: '\f061';
    width: 25px;
    font-weight: 900;
    padding: 2px;
    color: #FFF;
    display: inline-block;
}

#our-fees.main-section a {
    color: var(--primary-color);
}

#our-fees.main-section a:hover {
    text-decoration: underline;
}