/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Immersive AI
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {

    font-family: "Nunito Sans", sans-serif;
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #41f681;
    --e-global-color-text: #000000db;
    --e-global-color-bright-blue: #4d30fb;
    --e-global-color-black: #000000;
}

h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 800;
}

h3 {
    font-size: 35px;
    line-height: 50px;
    font-weight: 700;
}

h4 {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
}

h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
}

h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    font-weight: 500;
    font-size: 19px;
    line-height: 30px;
    color: var(--e-global-color-text);
}

.text-size-16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.btn-size-18 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

a {
    font-size: 18px;
    line-height: 16px;
    font-weight: 600;
}

.default-btn {
    padding: 5px 5px 5px 22px;
    border-radius: 10px;
    display: inline-block;
    color: var(--e-global-color-primary);
    background: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}

.default-btn:hover {
    background: var(--e-global-color-black);
    color: var(--e-global-color-primary);
}

.default-btn i {
    color: var(--e-global-color-bright-blue);
    background-color: var(--e-global-color-primary);
    padding: 14px 19px;
    border-radius: 8px;
    margin-left: 28px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.default-btn:hover i {
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-primary);
}

.default-btn-two {
    padding: 5px 5px 5px 22px;
    border-radius: 10px;
    display: inline-block;
    color: var(--e-global-color-primary);
    background: var(--e-global-color-black);
    transition: all 0.3s ease-in-out;
}

.default-btn-two:hover {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
}

.default-btn-two i {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-primary);
    padding: 14px 19px;
    border-radius: 8px;
    margin-left: 28px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.default-btn-two:hover i {
    color: var(--e-global-color-primary);
    background-color: var(--e-global-color-black);
}

.hover-effect {
    transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Home Page Header Section Style */

header {
    position: relative;
    border-bottom: 1px solid #0104470f;
    z-index: 2;
    background-color: var(--e-global-color-primary);
}

.navbar-collapse ul {
    text-align: center;
    align-items: center;
    display: inherit;
}

.navbar-nav .nav-item a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--e-global-color-black) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: var(--e-global-color-bright-blue) !important;
}

.navbar-nav .active>a {
    color: var(--e-global-color-bright-blue) !important;
}

.navbar-brand {
    margin-left: 0;
    margin-right: 115px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar {
    padding: 12px 0;
}

.navbar-nav li {
    margin: 0px 10px;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 6px;
}

.navbar-nav .nav-item .talk_btn {
    font-weight: 600 !important;
    padding: 6px 10px 6px 25px !important;
    border-radius: 10px;
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .talk_btn:hover {
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-black);
}

.navbar-nav .nav-item .talk_btn i {
    color: var(--e-global-color-bright-blue);
    background-color: var(--e-global-color-primary);
    padding: 14px 19px;
    border-radius: 8px;
    margin-left: 22px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .talk_btn:hover i {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-primary);
}

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

.navbar-nav .dropdown-menu {
    width: 300px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 57px;
    padding: 0;
    border: none;
    margin: 0;
    border-radius: 0;
    border: 1px solid #e6e9f3;
}

.navbar-nav .drop-down-pages li {
    margin: 0;
}

.navbar-nav .drop-down-pages .nav-item a {
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    padding: 6px 15px;
    color: var(--e-global-color-black) !important;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.navbar-nav .nav-item .dropdown-item:hover {
    color: var(--e-global-color-bright-blue) !important;
    background-color: transparent !important;
}

.navbar-nav .drop-down-pages .active>a {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-nav .drop-down-pages .active>a:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

/* Home Page Banner Section Style */

.banner-section-outer .banner-section {
    padding: 100px 0px;
    z-index: 1;
    background-color: var(--e-global-color-primary);
}

.banner-section-outer .banner-section .banner-section-content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;
    margin-bottom: 25px;
    color: var(--e-global-color-black);
}

.banner-section-outer .banner-section .banner-section-content .banner_content_wrapper {
    margin-bottom: 40px;
}

.banner-section-outer .banner-section .banner-section-content p {
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
}

.banner-section-outer .banner-section .banner_image .banner_main_image {
    position: relative;
    z-index: 1;
}

.banner-section-outer .banner-section .banner_image .banner_main_image img {
    border-radius: 55px;
    width: 100%;
}

.banner-section-outer .top-btn figure {
    bottom: 0px;
    left: 5px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.banner-section-content h6 {
    color: var(--e-global-color-bright-blue);
}

/* Home Page Banner Section end */

/* Home Page About Us Section Style */

.aboutus_section {
    background-color: #e9edf7;
    padding: 90px 0;
    overflow: hidden;
}

.aboutus_image {
    position: relative;
    z-index: 1;
}

.aboutus_image .aboutus_main_image {
    position: relative;
    z-index: 1;
}

.aboutus_image .aboutus_main_image img {
    border-radius: 35px;
    width: 100%;
}

.aboutus_image .aboutus_image_shape {
    bottom: -38px;
    left: -40px;
}

.aboutus_image .image_box_wrapper {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    padding: 25px 8px 30px 25px;
    border-radius: 20px;
    position: absolute;
    bottom: 95px;
    right: 0;
    z-index: 1;
    width: 52%;
}

.aboutus_image .image_box_wrapper:hover {
    background-color: var(--e-global-color-accent);
    background-image: none;
}

.aboutus_image .image_box_wrapper .box_image {
    padding-top: 8px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper {
    padding-left: 15px;
    display: inline-block;
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper {
    margin-bottom: 8px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper span {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    color: var(--e-global-color-white);
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper .plus {
    margin-left: -1px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-color-white);
}

.aboutus_content {
    position: relative;
    z-index: 1;
    padding-left: 25px;
    padding-top: 8px;
}

.aboutus_content h6 {
    color: var(--e-global-color-bright-blue);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.aboutus_content h2 {
    color: var(--e-global-color-black);
    margin-bottom: 25px;
}

.aboutus_content p {
    color: var(--e-global-color-text);
    text-align: justify;
}

.aboutus_content ul li {
    position: relative;
    margin-bottom: 16px;
    float: left;
    margin-right: 50px;
}

.aboutus_content ul li:last-child {
    margin-bottom: 45px;
}

.aboutus_content ul li i {
    border: 1px solid var(--e-global-color-secondary);
    border-radius: 100%;
    background-color: transparent;
    color: var(--e-global-color-secondary);
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    width: 26px;
    position: absolute;
    top: 4px;
    left: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-top-style: none;
    border-right-style: none;
}

.aboutus_content ul li p {
    padding-left: 40px;
    font-weight: 500;
    color: var(--e-global-color-text);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.aboutus_content ul li p:hover {
    color: var(--e-global-color-accent);
}

/* Home Page About Us Section end */


/* Home Page Statistics Section Style */

.statistics_section {
    background-color: var(--e-global-color-primary);
    padding: 90px 0;
    overflow: hidden;
}

.statistics_section .statistics_content {
    position: relative;
    z-index: 1;
}

.statistics_section .statistics_content h3 {
    color: var(--e-global-color-white);
}

.statistics_section .statistics_box {
    position: relative;
    background-color: transparent;
    padding: 30px 25px 30px 25px;
    border-radius: 20px;
    height: 100%;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.statistics_box .feature_img img {
    width: 90px;
}

.statistics_section .statistics_box p {
    font-size: 18px;
    text-align: center;
}

.statistics_section .statistics_box .span_wrapper {
    margin-bottom: 10px;
}

.statistics_section .statistics_box .span_wrapper span {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

/* Home Page Statistics Section end */


/* Home Page Services Section Style */

.services_section {
    background-image: url(..//images/bg-img/services.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0px;
}

.services_section .services_content h6 {
    color: var(--e-global-color-bright-blue);
    margin-bottom: 16px;
    letter-spacing: 1.1px;
}

.services_content h6 {
    color: var(--e-global-color-bright-blue);
}

.services_section .services_box {
    background-color: var(--e-global-color-primary);
    padding: 30px 20px 30px 20px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.services_section .services_box img {
    width: 70px;
}

.services_section .services_box figure {
    margin-bottom: 25px;
}

.services_section .services_box h5 {
    transition: all 0.3s ease-in-out;
}

.services_section .services_box p {
    line-height: 28px;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--e-global-color-text);
}

.services_section .services_box .btn_wrapper a {
    color: var(--e-global-color-black);
    transition: all 0.3s ease-in-out;
}

.services_section .services_box .btn_wrapper a i {
    font-size: 14px;
    line-height: 12px;
    margin-left: 6px;
}

.services_section .services_box .btn_wrapper a:hover {
    color: var(--e-global-color-bright-blue);
}

.services_section .services_background_shape {
    top: -225px;
    right: 55px;
}

.services_section .services_right_shape {
    top: 250px;
    right: 0;
}

.services_section .services_right_shape img {
    opacity: 0.18;
}

/* Home Page Services Section end */


/* Home Page Who We Are Section Style */

.who_we_are_section {
    background-color: #e9edf7;
    padding: 90px 0px;
    overflow: hidden;
}

.who_we_are_section .who_we_are_left_content {
    position: relative;
    z-index: 1;
}

.who_we_are_left_content p {
    text-align: justify;
}

.who_we_are_left_content img {
    width: 100%;
    border-radius: 35px;
}

/* Home Page Combo Section Style */

.combo_section {
    background-color: var(--e-global-color-primary);
    padding: 90px 0;
    border-bottom: 1px solid #e6e9f3;
}

.problem_solving_img img {
    width: 100%;
}

.combo_section p {
    text-align: justify;
}

.round-img img {
    width: 45px;
}

/* Home Page Combo Section end */

/* Home Page Footer Section Style */

.footer-section {
    position: relative;
    background-color: #e9edf7;
    overflow: hidden;
    padding-top: 80px;
}

.middle-portion {
    margin-bottom: 82px;
    position: relative;
    z-index: 2;
}

.middle-portion h4 {
    color: var(--e-global-color-black);
    margin-bottom: 24px;
}

.middle-portion .about_col h4 {
    margin-bottom: 18px;
}

.middle-portion .about_col figure {
    margin-bottom: 20px;
}

.middle-portion .about_col p {
    line-height: 30px;
    margin-bottom: 25px;
    color: var(--e-global-color-text);
}

.middle-portion ul .icons {
    display: inline-block;
}

.middle-portion ul .icons i {
    color: var(--e-global-color-primary);
    font-size: 16px;
    margin-right: 8px;
    background-color: var(--e-global-color-black);
    border-radius: 7px;
    height: 40px;
    width: 41px;
    line-height: 42px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.middle-portion ul .icons i:hover {
    background-color: var(--e-global-color-bright-blue);
}

.middle-portion li a {
    text-decoration: none;
    color: var(--e-global-color-text);
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
}

.middle-portion .links_col {
    margin-left: 25px;
    padding-top: 10px;
}

.middle-portion .links_col ul li {
    margin-bottom: 12px;
    position: relative;
}

.middle-portion .links_col ul li:last-child {
    margin-bottom: 0;
}

.middle-portion .links_col ul li span {
    line-height: 5px;
    height: 5px;
    width: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    background-color: var(--e-global-color-bright-blue);
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
}

.middle-portion .links_col ul li a {
    padding-left: 22px;
    display: flex;
}

.middle-portion .contact_col {
    padding-top: 10px;
}

.middle-portion .contact_col ul .contact_mail {
    margin-bottom: 14px;
}

.middle-portion .contact_col ul li {
    margin-bottom: 16px;
    position: relative;
}

.middle-portion .contact_col ul li i {
    position: absolute;
    top: 6px;
    left: 0;
    color: var(--e-global-color-black);
}

.middle-portion .contact_col ul li a {
    padding-left: 30px;
}

.middle-portion .contact_col ul li span {
    line-height: 28px;
    color: var(--e-global-color-text);
    padding-left: 30px;
    display: block;
    transition: all 0.3s ease-in-out;
}

.middle-portion .contact_col ul li span:hover {
    color: var(--e-global-color-bright-blue)
}

.middle-portion li a:hover {
    color: var(--e-global-color-bright-blue)
}

.middle-portion .footer-info-content {
    padding-top: 10px;
    position: relative;
}

.middle-portion .footer-info-content input {
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    background-color: #d4d4ff6e;
    border: 1px solid #00000026;
    color: var(--e-global-color-text);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 25px;
}

.middle-portion .footer-info-content input::placeholder {
    color: var(--e-global-color-text);
}

.middle-portion .footer-info-content input:focus {
    outline: none;
    box-shadow: none;
    background-color: #4057fb1f;
    color: var(--e-global-color-text);
}

.middle-portion .footer-info-content .btn {
    position: absolute;
    right: 6px;
    top: 71px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0;
    background-color: var(--e-global-color-black);
    color: #fff;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.middle-portion .footer-info-content .btn:hover {
    background-color: var(--e-global-color-bright-blue);
}

.middle-portion .footer-info-content ul li {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.middle-portion .footer-info-content ul li span {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    padding-left: 33px;
    display: block;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.footer-info-content input[type="checkbox"] {
    position: absolute;
    left: 3px;
    top: 0;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-appearance: none;
    padding: 10px;
    border-radius: 5px;
}

.footer-info-content input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: 1px solid var(--e-global-color-dark-blue);
    border-width: 0 2px 2px 0;
    max-width: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.footer-info-content input[type="checkbox"]:checked:before {
    border-color: var(--e-global-color-white);
}

.bottom-portion {
    border-top: 1px solid #2020252e;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    padding: 20px 0;
}

.copyright p {
    color: var(--e-global-color-text);
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    margin: 0;
}

/* Home Page Footer Section end */

/* breadcrumb section start */
.breadcrumb_section {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 470px;
}

.breadcrumb_heading h2 {
    color: var(--e-global-color-primary);
}

.breadcrumb_heading p {
    font-size: 20px;
    font-weight: 500;
    color: var(--e-global-color-primary);
}

.breadcrumb_list ul li,
.breadcrumb_list ul li a {
    font-size: 18px;
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb_list ul li i {
    font-size: 14px;
    margin-right: 10px;
}

.bg-1 {
    background: linear-gradient(#00000070, #0000005e), url(..///images/breadcrumb/01.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.bg-2 {
    background: linear-gradient(#00000085, #0000009c), url(..///images/breadcrumb/02.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-3 {
    background: linear-gradient(#00000085, #0000009c), url(..///images/breadcrumb/03.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-4 {
    background: linear-gradient(#00000085, #0000009c), url(..///images/breadcrumb/04.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-5 {
    background: linear-gradient(#00000085, #0000009c), url(..///images/breadcrumb/05.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-6 {
    background: linear-gradient(#00000085, #0000009c), url(..///images/breadcrumb/06.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-7 {
    background: linear-gradient(#00000040, #00000054), url(..///images/breadcrumb/07.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-8 {
    background: linear-gradient(#00000096, #00000080), url(..///images/breadcrumb/08.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-9 {
    background: linear-gradient(#00000096, #00000080), url(..///images/breadcrumb/09.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-10 {
    background: linear-gradient(#00000096, #00000080), url(..///images/breadcrumb/10.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-11 {
    background: linear-gradient(#00000096, #00000080), url(..///images/breadcrumb/11.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-12 {
    background: linear-gradient(#00000096, #00000080), url(..///images/breadcrumb/12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-13 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/13.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-14 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/14.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-14 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/14.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-15 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/15.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-16 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/16.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.bg-17 {
    background: linear-gradient(#0000009c, #00000099), url(..///images/breadcrumb/17.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

/* breadcrumb section end */

/* Problem solving Page Section Style */

.problem_solving {
    padding: 70px 0px;
    border-bottom: 1px solid #e6e9f3;
}

.sub-banner-section-outer {
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.banner_image .banner_main_image img {
    width: 100%;
    border-radius: 35px;
}

.banner-section-content ul {
    margin: 0;
    padding: 0;
}

.banner-section-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    margin-top: 6px;
    font-weight: 500;
    color: var(--e-global-color-text);
}

.author {
    position: relative;
}

.author blockquote {
    font-size: 30px;
    font-style: italic;
    max-width: 600px;
    text-align: center;
    color: var(--e-global-color-bright-blue);
}

.author::before {
    content: '';
    position: absolute;
    left: 0px;
    top: -58px;
    height: 50px;
    width: 50px;
    opacity: 0.5;
    background-image: url(..//images/costome-img/quote.png);
    background-repeat: no-repeat;
}

.author::after {
    content: '';
    position: absolute;
    right: 48px;
    bottom: -10px;
    height: 50px;
    width: 50px;
    transform: rotate(178deg);
    opacity: 0.5;
    background-image: url(..//images/costome-img/quote.png);
    background-repeat: no-repeat;
}

.sub-banner-section-outer .banner-section {
    padding: 132px 0 120px;
    z-index: 1;
}

/* Problem solving Page Section end */

.model-box {
    background: transparent;
    border: 1px solid #0000001a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.tag {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-right: 8px;
    margin-bottom: 5px;
}

.flexible,
.sustainable {
    background-color: var(--e-global-color-black);
}

.not-flexible {
    background-color: var(--e-global-color-bright-blue);
}

.scalable {
    background-color: var(--e-global-color-black);
}

.not-scalable,
.not-sustainable {
    background-color: var(--e-global-color-bright-blue);
}

.divider {
    border: 1px solid #6a7a8a4a;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.Systems-main-box {
    background: #75787d14;
    padding: 40px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.Systems-box {
    border: 1px solid #0a06262b;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

.Systems-box h3 {
    color: var(--e-global-color-text);
}

/* services page section style */

.ai-services-wrapper {
    padding: 90px 0px;
    border-bottom: 1px solid #2125292b;
}

.service-divider-box {
    border: 1px solid #88888840;
    padding: 20px;
    border-radius: 10px;
    background: #e6e9f321;
    height: 100%;
    transition: all linear 0.4s;
}

.service-divider-box:hover {
    background: #cfd6ed;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-divider-box p {
    font-size: 18px;
}

.service-divider-box-2 {
    border: 1px solid #88888869;
    padding: 15px;
    border-radius: 10px;
    background: #e6e9f378;
    height: 100%;
}

.service-divider-box-2 img {
    width: 100%;
    border-radius: 10px;
}

.service-divider-box p span {
    color: var(--e-global-color-bright-blue);
}

.services-icon-img img {
    width: 50px;
}

.service-divider-box img {
    max-width: 65px;
}

/* services page section end */


/* Faq's page Section Style */

.faq_section {
    padding: 90px 0px;
}

.accordian-section {
    position: relative;
}

.accordian-section .heading {
    text-align: center;
}

.accordian-section .accordion-card button.btn.btn-link {
    color: var(--e-global-color-white);
    border-radius: 15px 15px 0 0;
}

.accordian-section .accordian-inner .accordion-card .btn {
    padding: 20px 65px 20px 30px;
    text-decoration: none;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    background: #4d30fb21;
}

.accordian-section .accordion-card button.btn.btn-link.collapsed {
    color: var(--e-global-color-white);
    border-radius: 15px;
}

.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    border: none;
    background: none;
}

.accordian-section .accordian-inner .card-body {
    padding: 0px 25px 25px 30px;
}

.accordian-section .accordian-inner .card-body p {
    color: var(--e-global-color-text);
}

.accordian-section .accordian-inner .card-body ul li {
    list-style: none;
    font-size: 18px;
    margin-top: 6px;
}

.accordian-section .accordion-card button.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.accordian-section .accordian-inner .accordion-card {
    margin-bottom: 32px;
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    border-radius: 15px;
}

.accordian-section .accordion-card .btn-link:before {
    content: "\f106";
    position: absolute;
    right: 10px;
    top: 16px;
    font-family: 'Font Awesome 6 FREE';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 8px;
    text-align: center;
}

.accordian-section .accordion-card .collapsed:before {
    content: "\f105";
    color: var(--e-global-color-primary);
    background-color: var(--e-global-color-bright-blue);
    border-radius: 8px;
    text-align: center;
}

.accordian-section .accordian-inner .accordion-card:last-child {
    margin-bottom: 0;
}

/* Faq's page Section Style end*/

/* Capabilities section start */

.mission_vision_section {
    background-color: var(--e-global-color-primary-black);
    padding: 90px 0px;
    border-bottom: 1px solid #e6e9f3;
}

.mission_vision_section .mission_vision_box {
    padding: 30px 20px 30px;
    border-radius: 20px;
    background: #21252914;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.mission_vision_section .mission_vision_box ul li {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 17px;
    margin-top: 10px;
    gap: 10px;
}

.mission_vision_section .mission_vision_box:hover {
    background-image: linear-gradient(-33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
}

.mission_vision_section .mission_vision_box figure img {
    width: 70px;
}

.mission_vision_section .mission_vision_box figure {
    margin-bottom: 20px;
}

/* Capabilities section end */

/* Case Study section start */

.portfolio_section {
    position: relative;
    background-color: var(--e-global-color-primary);
    padding: 90px 0px;
    border-bottom: 1px solid #e6e9f3;
}

.portfolio_section .portfolio_image {
    position: relative;
    margin-bottom: 150px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image figure img {
    border-radius: 20px;
}

.portfolio_section .portfolio_box {
    background-color: #ffffff;
    border: 1px solid #48404045;
    position: absolute;
    width: 89%;
    display: inline-block;
    padding: 22px 35px;
    left: 20px;
    bottom: -100px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_box p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio_section .portfolio_image:hover .portfolio_box p {
    color: var(--e-global-color-bright-blue);
}

.portfolio_section .portfolio_box .btn_wrapper a {
    color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_box .btn_wrapper a i {
    font-size: 12px;
    line-height: 12px;
    margin-left: 8px;
}

.portfolio_section .portfolio_image:hover .portfolio_box .btn_wrapper a {
    color: var(--e-global-color-white);
}

.portfolio_section .portfolio_image .portfolio_box .btn_wrapper a:hover {
    color: var(--e-global-color-bright-blue);
}

.portfolio_section .portfolio_image_box {
    background-color: var(--e-global-color-bright-blue);
    position: absolute;
    display: inline-block;
    padding: 0px 14px 2px;
    left: 20px;
    top: 22px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image:hover .portfolio_image_box {
    background-color: var(--e-global-color-secondary);
}

.portfolio_section .portfolio_image_box span {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-primary);
    letter-spacing: 0.4px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image:hover .portfolio_image_box span {
    color: var(--e-global-color-primary);
}

.portfolio_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 6px !important;
    line-height: 0;
    padding-left: 10px;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot span {
    font-size: 0;
    margin: 0 9px 0 0;
    line-height: 10px;
    height: 5px;
    width: 16px;
    display: block;
    background: #44444c;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-secondary);
}

.portfolio_section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-bright-blue);
    width: 22px;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

.portfolio_section .owl-theme .owl-nav {
    display: none;
}

/* Case Study section start */



.quotes_heading {
    position: relative;
}

.quotes_heading blockquote {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--e-global-color-bright-blue);
}

.quotes_heading::before {
    content: '';
    position: absolute;
    left: -57px;
    top: -18px;
    height: 50px;
    width: 50px;
    opacity: 0.5;
    background-image: url(..//images/costome-img/quote.png);
    background-repeat: no-repeat;
}

.quotes_heading::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: 0px;
    height: 50px;
    width: 50px;
    transform: rotate(178deg);
    opacity: 0.5;
    background-image: url(..//images/costome-img/quote.png);
    background-repeat: no-repeat;
}














/* About Page Features Section Style */

.feature_section {
    padding: 150px 0 182px;
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.feature_image {
    position: relative;
    z-index: 1;
}

.feature_image .feature_main_image img {
    border-radius: 35px;
}

.feature_image .feature_second_image {
    bottom: -98px;
    right: -2px;
}

.feature_image .feature_second_image img {
    border-radius: 35px;
    border-top: 10px solid var(--e-global-color-black);
    border-left: 10px solid var(--e-global-color-black);
}

.feature_content {
    position: relative;
    z-index: 1;
    padding-left: 35px;
    padding-top: 30px;
}

.feature_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.feature_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 44px;
    font-size: 42px;
}

.feature_content p {
    color: var(--e-global-color-text);
    margin-bottom: 30px;
}

.feature_content ul li {
    position: relative;
    margin-bottom: 26px;
}

.feature_content ul li:last-child {
    margin-bottom: 38px;
}

.feature_content ul li figure {
    float: left;
    padding-top: 8px;
}

.feature_content ul li .feature_content_wrapper {
    display: inline-block;
    padding-left: 15px;
}

.feature_content ul .second_li .feature_content_wrapper {
    padding-left: 25px;
}

.feature_content ul li .feature_content_wrapper .first_p {
    color: var(--e-global-color-white);
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

.feature_content ul li .feature_content_wrapper .first_p:hover {
    color: var(--e-global-color-secondary);
}

.feature_content .btn_wrapper .default-btn {
    padding: 8px 8px 8px 42px;
}

.feature_section .feature_background_shape {
    top: 0;
    left: 0;
}

.feature_section .feature_top_shape {
    top: 0;
    right: 0;
}

/* Contact Page Banner Section Style */

.contact-banner-section-outer .banner-section .banner-section-content .btn_wrapper {
    padding: 16px 22px;
}

/* Contact Page Contact Info Section Style */

.contact_info_section {
    padding: 90px 0px;
    background-color: var(--e-global-color-primary);
}

.contact_info_section .contact_info_content {
    margin-top: -10px;
}

.contact_info_section .contact_info_content h6 {
    color: var(--e-global-color-bright-blue);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.contact_info_section .contact_info_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 52px;
}

.contact_info_section .contact_info_box {
    background: #4a2ef014;
    border-radius: 20px;
    padding: 40px 42px 32px 50px;
    margin-bottom: 30px;
    width: 91%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact_info_section .contact_info_box figure {
    float: left;
    width: 20%;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper {
    display: inline-block;
    width: 80%;
    padding-left: 28px;
    margin-top: -5px;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper h5 {
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p {
    color: var(--e-global-color-text);
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p:hover {
    color: var(--e-global-color-bright-blue);
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p a:hover {
    color: var(--e-global-color-bright-blue);
}

.contact_info_section .contact_info_box:hover h5 {
    color: var(--e-global-color-bright-blue);
}

.contact_info_section .contact_info_form_content {
    border-radius: 10px;
    padding: 40px 40px 40px 40px;
    width: 100%;
    text-align: center;
    margin-top: -5px;
    background: #c2cbe300;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact_info_section .contact_info_form_content input {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    background-color: #20202c0f;
    color: var(--e-global-color-text);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #4d30fb3d;
    width: 100%;
    margin-bottom: 22px;
    outline: none;
    box-shadow: none;
}

.contact_info_section .contact_info_form_content .form-select {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--e-global-color-text);
    background-color: #20202c0f;
    border-radius: 10px;
    appearance: none;
    border: 1px solid #4d30fb3d;
    padding: 12px 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='black' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 25px;
}

.contact_info_section .contact_info_form_content .form-select option {
    color: rgb(0, 0, 0);
}

.contact_info_section .contact_info_form_content .form-select:focus {
    border-color: none;
    outline: 0px;
    box-shadow: none !important;
}

.contact_info_section .contact_info_form_content textarea {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    background-color: #20202c0f;
    border: 1px solid #4d30fb3d;
    color: var(--e-global-color-text);
    padding: 16px 20px;
    resize: none;
    height: 150px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 32px;
    outline: none;
    box-shadow: none;
    overflow: auto;
}

.contact_info_section .contact_info_form_content .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact_info_section .contact_info_form_content .checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 20px !important;
}

.contact_info_section .contact_info_form_content .checkbox a {
    color: #0000EE;
    text-decoration: none;
    font-weight: bold;
}

.contact_info_section .contact_info_form_content .checkbox a:hover {
    text-decoration: underline;
}

.contact_info_section .contact_info_form_content input:focus {
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: var(--e-global-color-text);
}

.contact_info_section .contact_info_form_content button {
    outline: none;
    border: none;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    padding: 7px 7px 7px 25px;
}

.contact_info_section .contact_info_left_shape {
    top: 278px;
    left: 0;
}

.contact_info_section .contact_info_left_shape img {
    opacity: 0.18;
}

/* Contact Page Contact Map Section Style */

.contact_map_section {
    overflow: hidden;
    margin-bottom: -6px;
}

.contact_map_section iframe {
    filter: grayscale(1);
}

.contact_map_section iframe:hover {
    filter: grayscale(0);
}

/* Contact Page Combo Section Section Style */

.tab_section {
    background-color: var(--e-global-color-primary);
    padding: 90px 0px;
    border-bottom: 1px solid #e6e9f3;
}

.tab_image_box {
    padding: 10px;
    border: 2px solid #442bc64d;
    border-radius: 20px;
}

.tab_content_bottom {
    padding: 10px;
}

.tab_image_box img {
    width: 100%;
    border-radius: 35px;
}

.tabs {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
}

.sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tab-btn {
    font-size: 17px;
    font-weight: 600;
    background-color: transparent;
    border: none;
    color: #000000a8;
    cursor: pointer;
    padding: 8px 0;
    margin: 0px 11px;
    outline: none;
    text-transform: capitalize;
}

.tab-btn-active {
    border-bottom: 2px solid var(--e-global-color-bright-blue);
    color: #000 !important;
    background: transparent !important;
}

button:active:focus {
    background: transparent;
}

/* tabs content */
.tab-content {
    display: flex;
    width: 100%;
    display: none;
    padding: 40px;
    background: #00000017;
    border-radius: 30px;
}

.tab-content-active {
    display: block;
}

@media(max-width: 499px) {
    .sidebar {
        display: flex;
        align-items: center;
        justify-content: unset;
        width: 100%;
        overflow: scroll;
    }

    .tab-btn {
        font-size: 16px;
        font-weight: 600;
        background-color: transparent;
        border: none;
        color: #000000c9;
        cursor: pointer;
        outline: none;
        white-space: nowrap;
    }

    .tab-btn-active {
        border-bottom: 2px solid var(--e-global-color-black) !important;
        color: #000;
    }

}