 /* Common Css */
        body {
            padding: 0px;
            margin: 0px;
            font-family: "Poppins", sans-serif;
        }

        * {
            box-sizing: border-box;
            padding: 0px;
            margin: 0px;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            padding: 0px 20px;
            margin: 0 auto;
        }

        /* Header Css */
        .header {
            background: linear-gradient(90deg, rgba(11, 60, 139, 1) 0%, rgba(0, 32, 84, 1) 100%);
        }

        .nav {
            padding: 18px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav .logo {
            width: 342px;
            height: 91px;
        }

        /* Main Section Css */
        .main {
            display: flex;
            justify-content: space-between;
        }

        .main .sidebar {
            background-color: #EEF4FF;
            margin-right: 45px;
            text-align: center;
            padding: 30px 0px;
        }

        .contact .phone,
        .contact .email,
        .contact .web,
        .location {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 20px;
        }

        .contact a {
            color: rgb(0, 32, 84);
            text-decoration: none;
            padding-left: 10px;
            font-weight: 500;
        }

        .sidebar .person_image img {
            padding: 0px 30px;
            width: 100%;
            height: auto;
        }

        .sidebar_content .title_name {
            padding-top: 30px;
            position: relative;
            margin-bottom: 10px;
            padding-left: 0px;
        }

        .sidebar_content .title_name::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(to right, rgba(0, 32, 84, 0) 0%, rgba(0, 32, 84, 1) 50%, rgba(0, 32, 84, 0) 100%);
        }

        .sidebar_content h5 {
            color: #002054;
            font-weight: 600;
            font-size: 16px;
            padding-bottom: 10px;
            padding: 0px 30px;
        }

        .contact_us_text {
            margin: 0px 30px;
        }

        .sidebar_content p, ul li {
            font-weight: 500;
        }

        .sidebar .address {
            padding: 10px 30px 30px 30px;
        }

        .bottom_content {
            padding: 0px 30px;
        }

        .bottom_content {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.33) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.33) 100%);
            padding: 16px 0px;
            margin: 20px 0px;
        }

        .bottom_content ul {
            margin-left: 30px;
            text-align: left;
            padding: 0px 30px;
        }

        .bottom_content ul li {
            padding: 4px;
        }

        .person_image {
            width: 450px;
        }

        .location {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.33) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.33) 100%);
            padding: 16px 0px;
            margin: 34px 0px;
        }

        .right_side .title {
            font-size: 68px;
            line-height: 80px;
            font-weight: 400;
            color: #002054;
            padding: 40px 0px 24px 0px;
        }

        .right_side h3 {
            color: #AA0103;
            font-weight: 400;
            font-size: 32px;
            border-bottom: 2px solid #002054;
            padding-bottom: 12px;
        }

        .features {
            padding: 30px 0px;
        }

        .feature {
            padding-bottom: 30px;
        }

        .title_text {
            display: flex;
            align-items: center;
        }

        h4 {
            color: #002054;
            font-weight: 600;
            font-size: 24px;
            padding-left: 10px;
        }

        .feature p,
        .who_we_are p {
            padding-top: 10px;
        }

        .who_we_are {
            padding-bottom: 60px;
        }

        .who_we_are h4 {
            padding-left: 0px;
        }

        /* Footer Css */
        .footer {
            background: linear-gradient(90deg, rgba(11, 60, 139, 1) 0%, rgba(0, 32, 84, 1) 100%);
            text-align: center;
            padding: 60px 0px;
        }

        .footer p {
            padding-top: 20px;
            color: #fff;
            font-weight: 300;
        }

        @media screen and (max-width: 767px) {
            .main {
                flex-flow: wrap;
            }

            .sidebar {
                width: 100%;
                margin-right: 0px !important;
            }
        }

        @media screen and (max-width: 991px) {
            .person_image {
                width: 100%;
            }

            .right_side .title {
                font-size: 42px;
                line-height: 50px;
            }
        }