.text-blue {
 color: var(--secondary-color);
 transition: color .3s ease-in-out;
}

.text-blue:hover {
 color: var(--primary-color);
}

.page-section {
 padding-top: 10rem;
 padding-bottom: 10rem;
}

.bg-cover {
 background-size: cover;
 background-position: 50%;
 background-repeat: no-repeat;
}

.overlay {
 position: relative;
}

.overlay::before {
 position: absolute;
 content: '';
 height: 100%;
 width: 100%;
 top: 0;
 left: 0;
 background: #000;
 opacity: .6;
}

.page-title {
 position: relative;
 z-index: 999;
}

.section-title-border {
 position: relative;
 height: 5px;
 width: 30px;
 background: var(--secondary-color);
 border-radius: 10px;
 margin-bottom: 20px;
}

.section-title-border::before {
 position: absolute;
 content: "";
 height: 100%;
 width: 50%;
 background: var(--primary-color);
 border-radius: 10px;
 right: -60%;
 top: 0;
}

.section-title-border::after {
 position: absolute;
 content: "";
 height: 100%;
 width: 25%;
 background: var(--secondary-color);
 border-radius: 10px;
 right: -100%;
 top: 0;
}


/* Main Section Css */
.services-banner {
    background-image: url(../img/blog/ship-container-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    object-fit: cover;
    position: relative;
}

.menu-item ul li a{
    text-decoration: none;
}

.services-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #cb252ad5, #2f2e7ad5);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 99;
}

.services-content h1 {
    font-size: 3rem;
    letter-spacing: -.021rem;
    line-height: 1.2;
    margin-bottom: 54px;
    color: white;
    font-weight: 600;
}

.services-content p {
    font-size: 1.5rem;
    letter-spacing: -0.120rem;
    font-weight: 300;
    color: rgb(248, 248, 248);
}

.services-item {
    padding-top: 2rem;
}

.services-item ul {
    list-style: none;
    padding-left: 0;
}

.services-item ul li i {
    margin-right: 0.6rem;
}

.services-item ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.firm-item ul li a{
    color: black;
}

.services-item ul li a:hover {
    opacity: .8;

}

.services-banner-two{
    background-image: url(../img/banner/pr.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    object-fit: cover;
    position: relative;
}

.services-banner-two:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #cb252ad5, #2f2e7ad5);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}


.services-banner-three{
    background-image: url(../img/banner/banking.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    object-fit: cover;
    position: relative;
}

.services-banner-three:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #cb252ad5, #2f2e7ad5);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
/* END */

/* Left Menu Css */
.menu-item {
    padding-top: 2.5rem;
}

.menu-item ul {
    list-style: none;
    padding-left: 0;
}

.menu-item ul li {
    padding: 1rem 0;
    border-top: 1px solid var(--secondary-color);
}

.menu-item ul li:last-child {
    border-bottom: 1px solid var(--secondary-color);
}

.menu-item ul li a {
    color: var(--primary-color);
    font-weight: 400;
    transition: all .3s ease-in-out;
    text-transform: capitalize;
    font-size: 1rem;
}

.menu-item ul li a:hover {
    color: var(--seconery-color);
}
/* END */


/* Blog Section Css */
.blog-box {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    text-align: left;
}

.blog-content p {
    font-size: 1rem;
    /*padding: 1rem 0;*/
}

.blog-content span {
    color: var(--secondary-color);
}

.blog-content a,
i {
    color: var(--primary-color);
}

.ancor-icon a {
    transition: all .3s ease-in-out;
}

.blog-content a:hover,
i:hover {
    color: var(--secondary-color);
}

.blog-image {
    padding: 0;
}

.blog-image img {
    object-fit: cover;
    max-height: 320px;
    width: 100%;
}

.ancor-icon a{
    text-decoration: none;
}

/* END */

