    /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
    
    body {
        font-family: "Open Sans", sans-serif;
        color: #313030;
    }
    
    a {
        color: #3e3a71;
        text-decoration: none;
    }
    
    a:hover {
        color: #1e1a5c text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Raleway", sans-serif;
    }
    
    p {
        text-align: justify;
    }
    /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
    
    .back-to-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 996;
        background: #3e3a71;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
    }
    
    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }
    
    .back-to-top:hover {
        background: #1e1a5c;
        color: #fff;
    }
    
    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
    /*LOADER-----------------------*/
    
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #fff;
    }
    
    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #3e3a71;
        border-top-color: #e2eefd;
        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);
        }
    }
    /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
    
    @media screen and (max-width: 768px) {
        [data-aos-delay] {
            transition-delay: 0 !important;
        }
    }
    /*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
    
    #topbar {
        background: #444;
        font-size: 14px;
        padding: 0;
        padding-left: 60px;
        color: rgba(102, 102, 102, 0.8);
        height: 40px;
    }
    
    #topbar .social-links i {
        font-style: normal;
        color: #fff;
    }
    
    #topbar .social-links i a,
    #topbar .social-links i span {
        padding-left: 3px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    #topbar .social-links i a {
        line-height: 0;
        transition: 0.3s;
    }
    
    #topbar .social-links i a:hover {
        color: #a3a3a3;
    }
    
    #topbar2 {
        background: #444;
        font-size: 14px;
        padding: 0;
        color: rgba(255, 255, 255, 0.8);
        height: 40px;
    }
    
    #topbar2 .contact-info a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0 8px;
        display: inline-block;
        line-height: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.8);
        transition: 0.6s;
    }
    
    #topbar2 .contact-info a:hover {
        color: #a3a3a3;
    }
    
    #topbar2 .contact-info a:first-child {
        border-left: 0;
    }
    
    @media (max-width:850px) and (min-width:450px) {
        #topbar {
            padding: 0;
            padding-left: 0;
        }
        #topbar2 .contact-info a {
            font-size: 10px;
            margin: 2px;
            padding: 2px;
        }
    }
    
    @media (max-width:440px) {
        #topbar {
            padding: 0;
            padding-left: 0;
        }
        #topbar .social-links i a,
        #topbar .social-links i span {
            padding: 0;
            margin: 0;
            font-size: 8px;
        }
        #topbar .social-links i a {
            font-size: 8px;
        }
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    
    #header {
        height: 80px;
        transition: all 0.5s;
        z-index: 997;
        background: #fff;
        box-shadow: 3px 2px 15px rgba(0, 0, 0, 0.4);
    }
    
    #header.header-fixed {
        box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.4);
    }
    
    #header .logo img {
        padding: 5px;
        margin: 5px;
        max-height: 80px;
    }
    
    .scrolled-offset {
        margin-top: 70px;
    }
    
    #main {
        z-index: 3;
    }
    /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
    /**
* Desktop Navigation 
*/
    
    .navbar {
        padding: 0;
    }
    
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    
    .navbar li {
        position: relative;
    }
    
    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 22px;
    }
    
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2px;
        font-size: 14px;
        font-weight: 600;
        color: #3e3a71;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    
    .navbar a i,
    .navbar a i:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2px;
        font-weight: 600;
        font-style: normal;
        color: #3e3a71;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    
    .navbar a i,
    .navbar a:focus i {
        font-size: 15px;
        line-height: 0;
        margin-left: 5px;
    }
    
    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #3e3a71;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }
    
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #3e3a71;
    }
    
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 22px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }
    
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: #2a2a2a;
    }
    
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: rgb(112, 112, 112);
    }
    
    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    
    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
    
    @media (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
            left: -90%;
        }
        .navbar .dropdown .dropdown:hover>ul {
            left: -100%;
        }
    }
    /**
  * Mobile Navigation 
  */
    
    .mobile-nav-toggle {
        color: white;
        background: #3e3a71;
        border-radius: 3px;
        font-size: 38px;
        cursor: pointer;
        display: none;
        line-height: 0;
        transition: 0.5s;
    }
    
    .mobile-nav-toggle.bi-x {
        color: white;
    }
    
    @media (max-width: 991px) {
        .mobile-nav-toggle {
            display: block;
        }
        .navbar ul {
            display: none;
        }
    }
    
    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(17, 17, 17, 0.9);
        transition: 0.3s;
        z-index: 999;
    }
    
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #2a2a2a;
    }
    
    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
        color: #3e3a71;
    }
    
    .navbar-mobile>ul>li {
        white-space: nowrap;
        padding: 0;
    }
    
    .navbar-mobile a:hover:before,
    .navbar-mobile li:hover>a:before,
    .navbar-mobile .active:before {
        visibility: hidden;
    }
    
    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }
    
    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }
    
    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }
    
    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }
    
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
        color: #3e3a71;
    }
    
    .navbar-mobile .dropdown>.dropdown-active {
        display: block;
    }
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    
    #hero {
        width: 100%;
        height: 90vh;
        background: url("../img/006.jpg") top center;
        background-size: cover;
        margin-bottom: -100px;
        position: relative;
    }
    
    #hero:before {
        content: "";
        background: rgba(62, 58, 113, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    
    #hero .container {
        position: relative;
    }
    
    #hero h3 {
        margin: 0;
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        text-transform: uppercase;
        color: white;
        text-decoration: underline;
        font-family: "Poppins", sans-serif;
    }
    
    #hero h4 {
        color: #fff;
        margin: 10px 0 0 0;
        font-size: 24px;
    }
    
    #hero .smal {
        padding-top: 30px;
    }
    
    #hero .smal h5 {
        color: rgb(226, 226, 226);
        font-size: 22px;
        padding: 4px;
        font-weight: 600;
    }
    
    #hero .smaltext {
        padding-top: 30px;
    }
    
    #hero .smaltext h4 {
        font-size: 28px;
    }
    
    #hero .smal .btn-get-started {
        font-family: "Raleway", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 35px;
        margin-top: 30px;
        border-radius: 50px;
        transition: 0.5s;
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
    }
    
    #hero .smm .btn-get-started i {
        font-size: 14px;
    }
    
    #hero .smm .btn-get-started :hover {
        color: #3e3a71;
        background: #fff;
    }
    
    #hero .smm .btn-get-started:hover {
        background: #fff;
        color: #3e3a71
    }
    
    @media (min-width: 1024px) {
        #hero {
            background-attachment: fixed;
        }
    }
    
    @media (max-width: 992px) and (min-width:600) {
        #hero {
            margin-bottom: 0;
            height: 70vh;
        }
        #hero .container {
            padding-bottom: 63px;
        }
        #hero h3 {
            font-size: 28px;
            line-height: 36px;
        }
        #hero h4 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 10px;
        }
    }
    
    @media (max-height: 600px) {
        #hero {
            height: 110vh;
        }
    }
    
    @media(max-width:600px) {
        #hero h3 {
            font-size: 28px;
            line-height: 36px;
            text-align: center;
        }
        #hero h4 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
            text-align: center;
        }
        #hero .smal h5 {
            text-align: center;
        }
        #hero .smm {
            align-items: center;
            text-align: center;
            justify-content: center;
        }
    }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
    
    section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .section-bg {
        background-color: #fff9f7;
    }
    
    .section-title {
        padding-bottom: 30px;
    }
    
    .section-title h2 {
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #3e3a71;
    }
    
    .section-title h2::before {
        content: "";
        width: 60px;
        height: 1px;
        display: inline-block;
        background: #b1b1b1;
        margin: 4px 10px;
    }
    
    .section-title h2::after {
        content: "";
        width: 60px;
        height: 1px;
        display: inline-block;
        background: #b1b1b1;
        margin: 4px 10px;
    }
    
    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #2a2c39;
        text-align: center;
    }
    /*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
    
    .breadcrumbs {
        padding: 15px 0;
        background: #f4f2f2;
        margin-bottom: 40px;
    }
    
    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 500;
    }
    
    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 10px 0;
        margin: 0;
        font-size: 14px;
    }
    
    .breadcrumbs ol li+li {
        padding-left: 10px;
    }
    
    .breadcrumbs ol li+li::before {
        display: inline-block;
        padding-right: 10px;
        color: #635551;
        content: "/";
    }
    /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
    
    #about {
        padding-top: 170px;
    }
    
    #about .section h2 {
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        color: #3e3a71;
    }
    
    #about .section h2::after {
        content: "";
        width: 120px;
        height: 1px;
        display: inline-block;
        background: #8a8a8a;
        margin: 4px 10px;
    }
    
    #about .section p {
        margin: 0;
        margin-bottom: 10px;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #2a2c39;
    }
    
    #about .content h3 {
        font-weight: 600;
        font-size: 26px;
    }
    
    #about .content ul {
        list-style: none;
        padding: 0;
    }
    
    #about .content ul li {
        padding-left: 28px;
        position: relative;
    }
    
    #about .content ul li+li {
        margin-top: 10px;
    }
    
    #about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: #08b908;
        line-height: 1;
    }
    
    #about .content p:last-child {
        margin-bottom: 0;
    }
    /*---------------------CUSTOM ---*/
    
    .features .tab-content {
        margin-top: 30px;
    }
    
    .features .tab-pane h3 {
        font-weight: 600;
        font-size: 26px;
        color: #3e3a71;
    }
    
    .features .tab-pane p span {
        color: #858585;
    }
    
    .features .tab-pane ul {
        list-style: circle;
        padding: 0;
    }
    
    .features .tab-pane ul li {
        padding-bottom: 10px;
    }
    
    .features .tab-pane ul a {
        font-size: 16px;
        padding-right: 4px;
        color: #0d4880;
    }
    
    .features .tab-pane ul a:hover {
        font-size: 16px;
        padding-right: 4px;
        color: #777777;
    }
    
    .features .tab-pane p:last-child {
        margin-bottom: 0;
    }
    
    .features img {
        margin-top: 14%;
    }
    /*ADVANCED----------*/
    
    .morr .content {
        background-color: #e4e4e4;
        padding: 40px;
        margin: 10px;
        height: 390px;
    }
    
    @media (max-width :600px) {
        .morr .content {
            background-color: white;
        }
    }
    
    .morr h3 {
        font-size: 14px;
        font-weight: 700;
        color: #3e3a71;
        text-transform: uppercase;
    }
    
    .morr h2 {
        font-size: 24px;
        font-weight: 700;
        color: #2a2c39;
    }
    
    .morr p {
        margin: 15px 0 30px 0;
        line-height: 24px;
    }
    /*VALUES----------*/
    
    .values .box {
        padding: 30px;
        box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
        text-align: center;
        transition: 0.3s;
        height: 100%;
    }
    
    .values .box img {
        padding: 30px 50px;
        transition: 0.5s;
        transform: scale(1.1);
    }
    
    .values .box h3 {
        font-size: 18px;
        color: #3e3a71;
        font-weight: 600;
        margin-bottom: 14px;
    }
    
    .values .box:hover {
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    }
    
    .values .box:hover img {
        transform: scale(1);
    }
    /*-------------------CONTENT OF MISION*/
    
    .features .feature-box {
        padding: 24px 20px;
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
        transition: 0.3s;
        height: 100%;
    }
    
    .features .feature-box h3 {
        font-size: 18px;
        color: #3e3a71;
        font-weight: 700;
        margin: 0;
    }
    
    .features .feature-box i {
        line-height: 0;
        background: #ecf3ff;
        padding: 4px;
        margin-right: 10px;
        font-size: 24px;
        border-radius: 3px;
        transition: 0.3s;
    }
    
    .features .feature-box:hover i {
        background: #3e3a71;
        color: #fff;
    }
    
    .features .feture-tabs {
        margin-top: 120px;
    }
    
    .features .feture-tabs h3 {
        color: #3e3a71;
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .features h2 {
        font-size: 24px;
        font-weight: 700;
        color: #3e3a71;
    }
    
    .features p {
        margin: 15px 0 30px 0;
        line-height: 24px;
    }
    
    @media (max-width: 768px) {
        .features .feture-tabs h3 {
            font-size: 28px;
        }
    }
    
    .features .feture-tabs .nav-pills {
        border-bottom: 1px solid #eee;
    }
    
    .features .feture-tabs .nav-link {
        background: none;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 600;
        color: #3e3a71;
        padding: 12px 0;
        margin-right: 25px;
        margin-bottom: -2px;
        border-radius: 0;
    }
    
    .features .feture-tabs .nav-link.active {
        color: #3e3a71;
        border-bottom: 3px solid #3e3a71;
    }
    
    .features .feture-tabs .tab-content h4 {
        font-size: 18px;
        margin: 0;
        font-weight: 700;
        color: #012970;
    }
    
    @media (max-width: 768px) {
        .features .feature-icons h3 {
            font-size: 28px;
        }
    }
    
    .features .feature-icons .content .icon-box {
        display: flex;
    }
    
    .features .feature-icons .content .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: #012970;
    }
    
    .features .feature-icons .content .icon-box i {
        font-size: 44px;
        line-height: 44px;
        color: #0245bc;
        margin-right: 15px;
    }
    
    .features .feature-icons .content .icon-box p {
        font-size: 15px;
        color: #848484;
    }
    /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
    
    .services .icon-box {
        padding: 50px 20px;
        margin-top: 35px;
        margin-bottom: 25px;
        text-align: center;
        height: 120px;
        position: relative;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .services .icon {
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        transition: 0.2s;
        border-radius: 50%;
        border: 6px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        width: 72px;
        height: 72px;
        background: #3e3a71;
    }
    
    .services .icon i {
        color: #fff;
        font-size: 24px;
        line-height: 0;
    }
    
    .services .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
        text-transform: uppercase;
    }
    
    .services .title a {
        color: #343a40;
    }
    
    .services .icon-box:hover .icon {
        background: #fff;
        border: 2px solid #3e3a71;
    }
    
    .services .icon-box:hover .icon i {
        color: #3e3a71;
    }
    
    .services .icon-box:hover .title a {
        color: #3e3a71;
    }
    
    .services .description {
        line-height: 24px;
        font-size: 14px;
    }
    /*CALL ACTION*/
    
    #call-to-action {
        overflow: hidden;
        background: linear-gradient(rgba(58, 58, 113, 0.65), rgba(29, 205, 89, 0.2)), url(../img/001.jpg) fixed center center;
        background-size: cover;
        padding: 80px 0;
        margin-bottom: 15px;
    }
    
    #call-to-action .cta-text {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }
    
    @media (min-width: 769px) {
        #call-to-action .cta-btn-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
    }
    
    #call-to-action .cta-btn {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 30px;
        border-radius: 25px;
        transition: background 0.5s;
        margin: 10px;
        border: 2px solid #fff;
        color: #fff;
    }
    
    #call-to-action .cta-btn:hover {
        background: #ffffff;
        border: 2px solid #ffffff;
        color: #3e3a71;
    }
    /*TRADE FINANCE ---*/
    
    .serv .service-box {
        box-shadow: 10px 10px 10px 10px rgba(1, 41, 112, 0.08);
        height: 100%;
        padding: 10px 10px;
        transition: 0.3s;
    }
    
    @media (max-width:600px) {
        .serv .section-title h2 {
            font-size: 16px;
        }
    }
    
    .serv .service-box .icon {
        font-size: 30px;
        padding: 10px 20px;
        position: relative;
        margin-bottom: 25px;
        display: inline-block;
        line-height: 0;
        transition: 0.3s;
    }
    
    .serv .service-box h3 {
        color: #3e3a71;
        font-weight: 700;
    }
    
    @media (max-width:600px) {
        .serv .service-box h3 {
            font-size: 18px;
        }
    }
    
    .serv .service-box .read-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .serv .service-box .read-more i {
        line-height: 0;
        margin-left: 5px;
        font-size: 18px;
    }
    
    .serv .service-box p span {
        color: rgb(30, 132, 139);
        font-weight: 700;
    }
    
    .serv .service-box {
        border-bottom: 3px solid #3e3a71;
    }
    
    .serv .service-box .icon {
        color: #3e3a71;
    }
    
    .serv .service-box .read-more {
        color: #3e3a71;
    }
    
    .serv .service-box .read-more:hover {
        color: #aaaaaa;
    }
    
    .serv .service-box:hover {
        box-shadow: none;
    }
    /*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
    
    .values .card {
        border: 0;
        padding: 160px 20px 20px 20px;
        position: relative;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    .values .card-body {
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        transition: ease-in-out 0.4s;
        border-radius: 5px;
    }
    
    .values .card-title {
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .values .card-title a {
        color: #473d3a;
    }
    
    .values .card-text {
        color: #4b4949;
    }
    
    .values .read-more a {
        color: #656262;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        transition: 0.4s;
    }
    
    .values .read-more a:hover {
        text-decoration: underline;
    }
    
    .values .card:hover .card-body {
        background: #3e3a71;
    }
    
    .values .card:hover .read-more a,
    .values .card:hover .card-title,
    .values .card:hover .card-title a,
    .values .card:hover .card-text {
        color: #fff;
    }
    
    .values h3 {
        padding-top: 30px;
        color: #3e3a71;
    }
    
    .values .imm img {
        margin-top: 10%;
    }
    
    .values p {
        color: #888888;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
    }
    
    .values ul li {
        color: #444;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
    }
    
    @media (max-width:600px) {
        .values .section-title h2 {
            font-size: 14px;
        }
    }
    /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
    
    .testimonials {
        padding: 80px 0;
        background: url("../img/007.jpg") no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
    }
    
    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .testimonials .section-header {
        margin-bottom: 40px;
    }
    
    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }
    
    .testimonials .testimonial-item .testimonial-img {
        width: 100px;
        border-radius: 50%;
        border: 6px solid rgba(255, 255, 255, 0.15);
        margin: 0 auto;
    }
    
    .testimonials .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #fff;
    }
    
    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: rgba(255, 255, 255, 0.4);
        font-size: 26px;
    }
    
    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }
    
    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }
    
    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
        color: #eee;
    }
    
    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }
    
    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    
    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #3e3a71;
    }
    
    @media (min-width: 992px) {
        .testimonials .testimonial-item p {
            width: 80%;
        }
    }
    /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
    
    .portfolio #portfolio-flters {
        padding: 0;
        margin: 0 auto 35px auto;
        list-style: none;
        text-align: center;
        border-radius: 50px;
        padding: 2px 15px;
    }
    
    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 20px 12px 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #313030;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 50px;
    }
    
    .portfolio #portfolio-flters li:hover,
    .portfolio #portfolio-flters li.filter-active {
        color: #3e3a71;
        background: #fff1ed;
    }
    
    .portfolio #portfolio-flters li:last-child {
        margin-right: 0;
    }
    
    .portfolio .portfolio-item {
        margin-bottom: 30px;
    }
    
    .portfolio .portfolio-container .portfolio-item img {
        width: 400px;
        height: 300px;
    }
    
    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
    }
    
    .portfolio .portfolio-item .portfolio-info h4 {
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        color: #473d3a;
    }
    
    .portfolio .portfolio-item .portfolio-info p {
        color: #7f6d68;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .portfolio .portfolio-item .portfolio-info .preview-link,
    .portfolio .portfolio-item .portfolio-info .details-link {
        position: absolute;
        right: 40px;
        font-size: 24px;
        top: calc(50% - 18px);
        color: #635551;
    }
    
    .portfolio .portfolio-item .portfolio-info .preview-link:hover,
    .portfolio .portfolio-item .portfolio-info .details-link:hover {
        color: #3e3a71;
    }
    
    .portfolio .portfolio-item .portfolio-info .details-link {
        right: 10px;
    }
    
    .portfolio .portfolio-item .portfolio-links {
        opacity: 0;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }
    
    .portfolio .portfolio-item .portfolio-links a {
        color: #fff;
        margin: 0 2px;
        font-size: 28px;
        display: inline-block;
        transition: 0.3s;
    }
    
    .portfolio .portfolio-item .portfolio-links a:hover {
        color: #ffa587;
    }
    
    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }
    /*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
    
    .faq .accordion-collapse {
        border: 0;
    }
    
    .faq .accordion-button {
        padding: 15px 15px 20px 0;
        font-weight: 600;
        border: 0;
        font-size: 18px;
        color: #444444;
        text-align: left;
    }
    
    .faq .accordion-button:focus {
        box-shadow: none;
    }
    
    .faq .accordion-button:not(.collapsed) {
        background: none;
        color: #3e3a71;
        border-bottom: 0;
    }
    
    .faq .accordion-body {
        padding: 0 0 25px 0;
        border: 0;
    }
    
    .faq #customers {
        font-family: Arial, Helvetica, sans-serif;
        border-collapse: collapse;
        width: 100%;
    }
    
    .faq #customers td,
    #customers th {
        border: 1px solid #ddd;
        padding: 8px;
    }
    
    .faq #customers tr:nth-child(even) {
        background-color: #f2f2f2;
    }
    
    .faq #customers tr:hover {
        background-color: #ddd;
    }
    
    .faq #customers th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        background-color: #3e3a71;
        color: white;
    }
    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    
    .contact .info-box {
        color: #444444;
        background: #3e3a71;
        padding: 30px;
        border-radius: 3px;
        margin-bottom: 20px;
    }
    
    .contact .info-box a {
        color: white;
    }
    
    .contact {
        margin-bottom: 20px;
    }
    
    .contact h4 {
        font-family: 'Times New Roman', Times, serif;
        text-align: center;
        color: rgb(158, 158, 158);
        margin-bottom: 15px;
    }
    
    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
        color: white;
    }
    
    .contact .info-box h3 {
        font-size: 20px;
        color: white;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }
    
    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 12px;
        margin-bottom: 0;
        font-family: "Poppins", sans-serif;
        color: white;
    }
    
    form {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        background: #fff;
        padding-top: 0%;
        margin-top: 0;
        outline: none;
    }
    
    form .banner2 h3 {
        text-align: center;
        color: #3e3a71;
        font-weight: 700;
        font-size: 20px;
        text-transform: uppercase;
    }
    
    input:focus,
    select:focus,
    textarea:focus {
        border: none;
        border: 1px solid #3e3a71;
        box-shadow: none !important;
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -o-box-shadow: none !important;
        -ms-box-shadow: none !important;
        outline: none;
    }
    
    textarea {
        width: 100%;
    }
    
    p.top-info {
        margin: 10px 0;
    }
    
    input,
    select {
        margin-bottom: 10px;
        border-radius: 3px;
    }
    
    input {
        width: calc(100% - 10px);
        padding: 5px;
        border: none;
        border: 1px solid #3e3a71;
        height: 40px;
    }
    
    select {
        width: 100%;
        padding: 7px 0;
        background: transparent;
        border: none;
        border: 1px solid #3e3a71;
    }
    
    .item2 p {
        color: #2f2e41;
        font-weight: 600;
    }
    
    .item2 p span {
        color: #a9a9a9;
        font-weight: 500;
    }
    
    form p {
        color: #2f2e41;
        font-weight: 600;
    }
    
    form p span {
        color: #a9a9a9;
        font-weight: 500;
    }
    
    .item2 {
        position: relative;
        margin: 10px 0;
    }
    
    .question2 input {
        width: auto;
        margin: 0;
        border-radius: 50%;
    }
    
    .question2 input,
    .question2 span {
        vertical-align: middle;
    }
    
    .question2 label {
        display: inline-block;
        margin: 5px 20px 15px 0;
    }
    
    .question2 a {
        text-decoration: underline;
        font-size: 14px;
    }
    
    .item2 label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    
    @media (min-width: 568px) {
        .name-item2,
        .city-item2 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .name-item2 input,
        .city-item2 input {
            width: calc(50% - 20px);
        }
        .city-item2 select {
            width: calc(50% - 8px);
        }
    }
    
    button {
        text-align: center;
        display: inline-block;
        position: relative;
        margin: 0.5em;
        padding: 0.87em;
        background: #3e3a71;
        overflow: hidden;
        text-decoration: none;
        font-size: 15px;
        outline: none;
        color: #FFF;
        border: 2px solid #3e3a71;
        border-radius: 50px;
        width: 130px;
        transition: 0.4s;
        align-items: center;
        justify-content: center;
    }
    
    button:hover {
        background: #fff;
        color: #3e3a71;
        border: 2px solid #3e3a71;
    }
    /*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
    
    .blog {
        padding: 20px 0;
    }
    
    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .entry .entry-img {
        max-height: 440px;
        margin: -30px -30px 20px -30px;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .blog .entries .entry-title {
        font-size: 28px;
        font-weight: bold;
        padding: 0;
        margin: 0 0 20px 0;
        color: #3e3a71;
    }
    
    .blog .entries .entry-title h2 {
        color: #3e3a71;
    }
    
    .blog .entry .entry-content p {
        line-height: 24px;
    }
    
    .blog .entries .entry-content a {
        font-weight: 550;
        color: #3e3a71;
    }
    
    .blog .entries .entry-content h3 {
        font-size: 22px;
        margin-top: 30px;
        font-weight: bold;
        color: #3e3a71;
    }
    
    .blog .blog-author img {
        width: 120px;
        margin-right: 20px;
    }
    
    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .pp {
        padding: 10px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .sidebar .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0 0 0 0;
        margin: 0 0 15px 0;
        color: #473d3a;
        position: relative;
    }
    
    .blog .pp .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0 0 0 0;
        margin: 0 0 15px 0;
        color: #3e3a71;
        position: relative;
    }
    
    .blog .sidebar .sidebar-item {
        margin-bottom: 30px;
        text-align: justify;
        text-justify: inter-word;
    }
    
    .blog .sidebar .sidebar-item a {
        font-weight: 550;
        color: #3e3a71;
    }
    
    .blog .sidebar .sidebar-item h4 {
        text-align: none;
        text-justify: none;
    }
    
    .blog .pp .sidebar-item p {
        font-size: 18px;
    }
    
    .blog .pp .sidebar-item ol li {
        font-size: 18px;
    }
    
    .blog .pp img {
        width: 100%;
        margin-right: 20px;
        margin-bottom: 10px;
        transition: all 0.7s;
    }
    
    .blog .pp img:hover {
        transform: scale(1.02);
    }
    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    
    #footer {
        color: #e2e2e2;
        font-size: 14px;
        background: #fff;
    }
    
    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #3e3a71;
    }
    
    #footer .footer-top .footer-contact {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-contact h4 {
        font-size: 30px;
        margin: 0 0 30px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
    }
    
    #footer .footer-top .footer-contact p {
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 0;
        font-family: "Raleway", sans-serif;
        color: #ffffff;
    }
    
    #footer .footer-top .footer-contact p i {
        color: #ffffff;
        margin-right: 5px;
    }
    
    #footer .footer-top .footer-contact p a {
        color: #ffffff;
        margin-right: 5px;
    }
    
    #footer .footer-top h4 {
        font-size: 18px;
        font-weight: bold;
        color: #e2e2e2;
        position: relative;
        padding-bottom: 12px;
    }
    
    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 10px;
    }
    
    #footer .footer-top .footer-links ul i {
        padding-right: 2px;
        color: #ffa587;
        font-size: 18px;
        line-height: 1;
        margin-right: 5px;
    }
    
    #footer .footer-top .footer-links ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        color: white;
    }
    
    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 0;
    }
    
    #footer .footer-top .footer-links ul a {
        color: #ffffff;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
    }
    
    #footer .footer-top .footer-contact p a:hover {
        text-decoration: none;
        color: #dbdbdb;
    }
    
    #footer .footer-top .footer-links ul a:hover {
        text-decoration: none;
        color: #dbdbdb;
    }
    
    #footer .footer-top .ss-links {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .ss-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #footer .footer-top .ss-links ul i {
        padding-right: 2px;
        color: #106eea;
        font-size: 18px;
        line-height: 1;
    }
    
    #footer .footer-top .ss-links ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }
    
    #footer .footer-top .ss-links ul li:first-child {
        padding-top: 0;
    }
    
    #footer .footer-top .ss-links ul a {
        color: #777777;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
    }
    
    #footer .credits {
        font-size: 13px;
        color: #313030;
    }
    
    #footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #ffffff;
        color: #3e3a71;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 10px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }
    
    #footer .social-links a:hover {
        background: #1e1a5c;
        color: #fff;
        text-decoration: none;
    }
    
    #footer .copyright {
        text-align: center;
    }
    
    #footer .copyright p {
        padding-top: 10px;
        color: #2a2a2a;
        text-align: center;
    }
    
    #footer .copyright a {
        color: #3e3a71;
        text-align: center;
        margin-top: 0;
        font-size: 14px;
    }
    
    #footer .credits p {
        color: #2a2a2a;
        text-align: center;
    }