:root {
    --light: #F5F5F5;
    --dark: #202020;
    --primary: 0, 0, 0;
    --secondary: 255, 255, 255;
    --white: #fff;
    --black: #000;
    --back: #e8eef0;
    --gray: #b8b8b8;
    --gray_text: #828282;
    --light_gray_text: #c5c5c5;
    --near-black: #282b2d;
    --dark-back: #4b4b4b;

    --font-awesome: "Font Awesome 6 free";
    --transition-05s: all ease-in-out .5s;
    --transition-08s: all ease-in-out .8s;
}

body {
    background-color: var(--white);
    font-family: "Assistant", serif;
    font-size: 16px;
    color: var(--black);
    line-height: 1.2;
}

main {
    min-height: 80vh;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

img {
    object-fit: cover;
}

svg:focus {
    outline: 0;
    border: 0;
}

.spaceing_top {
    padding-top: 80px;
}

.spaceing_bottom {
    padding-bottom: 80px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 8px;
    line-height: 1;
}


.form-control:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

/* HEADER */


header {
    /* background: var(--black); */
    box-shadow: 0 0px 10px rgb(152 152 152 / 40%);
}

.topbar {
    padding: 12px 0;
    background-color: var(--dark);
}

.topbar .top_nav {
    display: flex;
    justify-content: end;
    align-items: center;
}

.topbar .top_nav .top_link {
    padding: 0 14px;
    font-size: 15px;
    color: var(--white);
}

.topbar .top_nav .top_item:last-child .top_link {
    padding-right: 0;
}

.topbar .social_nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-left: 35px;
}

.topbar .social_nav .social_link {
    padding: 0 10px;
    font-size: 15px;
    color: var(--white);
}

.topbar .social_nav .social_item:first-child .social_link {
    padding-left: 0;
}

.topbar .topbar_right {
    display: flex;
    justify-content: end;
}

.con_list {
    display: flex;
    justify-content: start;
    align-items: center;
}

.topbar .con_list .con_link {
    padding: 0 24px;
    font-size: 15px;
    color: var(--white);
    border-right: 1px solid var(--white);
}

.topbar .con_list .con_link i {
    font-size: 16px;
    color: var(--white);
    margin-right: 6px;
}

.topbar .con_list .con_item:first-child .con_link {
    padding-left: 0;
}

.topbar .con_list .con_item:last-child .con_link {
    border-right: 0;
}

.topbar .con_list .con_link span {
    display: inline-block;
    font-weight: 500;
}



.navbar {
    top: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px 0;
    background: var(--white);
}

.navbar.header-fixed {
    position: fixed;
    background: var(--white);
    border: none;
    animation: slideDown .35s ease-out;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px -8px #0e0d0e14;
}

.form-control {
    font-size: 15px;
    padding: 7px;
    font-weight: 500;
    border-radius: 10px;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

.head-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .head-nav-list {
        flex-flow: column;
    }
}

.head-nav-link {
    transition: var(--transition-05s);
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0;
    margin-right: 25px;
    font-size: 16px;
    letter-spacing: 0px;
    color: var(--black);
    font-weight: 700;
    height: 100%;
}

.navbar-brand {
    width: auto;
    height: 80px;
    position: relative;
    padding: 0;
}

.navbar-brand img {
    object-fit: cover;
}

.navbar-toggler {
    padding: 6px;
    border: none;
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--black);
    width: 1.1em;
    height: 2px;
    position: relative;
    display: block;
}

.navbar-toggler-icon.bar-2 {
    margin: 4px 0;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--black);
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 30px;
    }
}

.twonavsec {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

@media only screen and (max-width: 768px) {
    .twonavsec {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--black);
    transition: var(--transition-05s);
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0;
    margin-right: 25px;
    font-size: 16px;
    letter-spacing: 0px;
    color: var(--black);
    font-weight: 700;
    height: 100%;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    border-bottom: 1px solid var(--black);
    transition: var(--transition-05s);
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-nav .nav-item .nav-link.menu-link[aria-current=page] {
    border-bottom: 1px solid var(--black);
}

.mob_menu_list .nav-link.active,
.mob_menu_list .nav-link.hover,
.mob_menu_list .nav-link.focus {
    border-bottom: 1px solid var(--black);
}

.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--black);
    position: relative;
    vertical-align: middle;
}

.head-brand-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.search-icon {
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--black);
    font-weight: 400;
    cursor: pointer;
}

.dropdown-item {
    font-size: 14px;
    line-height: 30px;
    color: var(--black)
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: inherit;
    background-color: var(--white);
}

@media (max-width: 991px) {

    .head-nav-link,
    .navbar .navbar-nav .nav-item .nav-link {
        color: var(--white);
    }
}

@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        width: 100%
    }
}

@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: none;
        margin-top: auto;
    }
}


/* COMMON CSS */


.common_title {
    font-size: 42px;
    line-height: 50px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
}

.common_sub_title {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.common_sub_title span {
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 800;
    display: inline-block;
    margin-right: 10px;
}

.common_para {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.common-btn {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.common-btn:hover {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

@media (max-width: 1024px) {
    .common_sub_title {
        font-size: 21px;
        line-height: 37px
    }

    .common_sub_title span {
        font-size: 21px;
        line-height: 60px
    }

    .common_title {
        font-size: 42px;
        line-height: 34px
    }
}

@media only screen and (max-width: 768px) {
    .common_sub_title {
        font-size: 18px;
        line-height: 37px
    }

    .common_sub_title span {
        font-size: 24px;
        line-height: 60px
    }

    .common_title {
        font-size: 31px;
        line-height: 34px
    }
}

@media only screen and (max-width: 480px) {
    .common_title {
        font-size: 26px;
        line-height: 34px
    }
}




/* BANNER */

.banner-section>* {
    position: relative;
    z-index: 1
}

.banner-section {
    display: flex;
    align-items: center;
    position: relative;
    --banner-hvh: 70vh;
    --banner-hhp: 100%;
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-section:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--near-black);
}

.banner-box {
    padding-right: 50px;
}

.banner-section .common_title {
    color: var(--white);
}

.banner-section .common_sub_title {
    color: var(--white);
}

.banner-section .common_sub_title span {
    color: var(--white);
}

.banner-section .common-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.banner-section .common-btn:hover {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.backwallimg {
    position: absolute;
    top: 12%;
    left: -13%;
    opacity: 0.5;
}

.backwallimg img {
    height: 340px;
}



.banner_bottom {
    margin-top: -50px;
}

.bbtm-box {
    border-radius: 10px;
    filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, .23));
    background-color: var(--white);
    padding: 25px 30px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.bbtm-ImgTitle {
    display: flex;
    align-items: self-start;
    gap: 14px
}

.bbtm-title h4 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
}

.bbtm-title p {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0;
}

.bbtm-icon {
    width: 85px;
    height: auto;
    object-fit: cover;
}





/* ABOUT */

.about-wrap {
    position: relative;
}

.about-imgLeft {
    overflow: hidden;
    height: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 180px;
}

.about-imgLeft img {
    object-fit: cover;
    margin-left: 4px;
    aspect-ratio: 12/8;
    border-radius: 8px;
    width: 85%;
}

.about-imgRight {
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    position: absolute;
    top: 80%;
    right: 2%;
    height: auto;
    width: 65%;
    border-top: 12px solid var(--white);
    border-left: 12px solid var(--white);
    object-fit: cover;
}

.about-imgRight img {
    object-fit: contain;
    height: auto;
    border-radius: 10px;
}

.about-wrap:after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 7%;
    width: 188px;
    height: 300px;
    background: url('../images/aboutback.png') no-repeat center right / cover;
}

.about-list-box {
    margin-bottom: 2.5rem;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px
}

.about-list li {
    position: relative;
    padding-left: 30px;
    font-size: 19px;
    line-height: 36px;
    color: var(--black);
    font-weight: 400
}

.about-list li:before {
    content: "\f058";
    display: inline-block;
    position: absolute;
    font-family: var(--font-awesome);
    font-weight: 600;
    left: 0;
    top: 0;
    margin-top: 0;
    color: rgba(var(--second-color), 1)
}

.aboutbtngroup {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 768px) {
    .about-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2px
    }

    .about-list li {
        position: relative;
        padding-left: 30px;
        font-size: 18px;
        line-height: 36px;
        color: var(--black);
        font-weight: 400
    }
}

@media only screen and (max-width: 480px) {

    .about-wrap:after {
        z-index: -1;
        content: "";
        position: absolute;
        top: 58%;
        right: 0;
        left: 7%;
        width: 188px;
        height: 272px;
        background: url('../images/aboutback.png') no-repeat center right / cover
    }
}





/* SERVICES */



.services {
    background: url('../images/ser_back.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}


.ser_box {
    padding: 30px 25px;
    border-radius: 10px;
    filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, .23));
    background-color: var(--white);
    height: 100%;
}

.ser_image {
    overflow: hidden;
    margin-bottom: 20px;
}

.ser_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 12/10;
    border-radius: 10px;
    object-fit: cover;
}

.ser_title {
    font-size: 24px;
    line-height: 37px;
    color: var(--black);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ser_para {
    font-size: 18px;
    line-height: 24px;
    color: var(--black);
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    min-height: 72px;
}

.ser_box .btn {
    padding: 12px 28px;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    font-size: 16px;
    text-transform: capitalize;
}

.ser_box .btn:hover {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}


.subproducttitle {
    display: inline-block;
    font-size: 24px;
    line-height: 60px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1024px) {
    .productBox-main {
        height: 562px;
        padding: 12px;
        border-radius: 10px;
        filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, .23));
        background-color: var(--white);
    }

    .productBox-title {
        font-size: 22px;
    }
}



/* FAQ */



.faq button.accordion-button.collapsed,
.faq .accordion-button:not(.collapsed) {
    padding: 20px 25px;
    font-weight: 600;
    background: var(--white);
    font-size: 20px;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--black);
}

.faq .accordion-body {
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
}

.faq .accordion-body p {
    margin-bottom: 0;
}




.call-ban {
    padding: 50px 0;
    background: var(--dark-back);
    position: relative;
}

.call-ban .common_title {
    color: var(--white);
}

.call-ban .common_sub_title {
    color: var(--white);
}

.call-ban .common_sub_title span {
    color: var(--white);
}

.call-ban .common-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.call-ban .common-btn:hover {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.call-ban .btn+.btn {
    margin-left: 10px;
}


.commonsec .backwallimg img {
    height: 210px;
}

.commonsec .backwallimg {
    position: absolute;
    top: 10%;
    left: -6%;
    opacity: 0.5;
}

section.call-ban.commonsec {
    background-color: #282b2d;
    overflow: hidden;
}

.backwallimgsecond {
    position: absolute;
    top: 10%;
    right: -6%;
    opacity: 0.5;
    transform: rotate(180deg);
}

.backwallimgsecond img {
    height: 210px;
}


/* GALLERY */


.artist-title-box {
    text-align: center;
}

.category a h3 {
    color: var(--near-black);
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
}

.newrow {
    margin-bottom: 20px;
}

.galleryimgsec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.artgallery-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: rgba(var(--secondary), 0.4);
    border: 1px solid rgba(var(--secondary), 0);
}

.artgallery-inn {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0px solid var(--white);
    position: relative;
}

.artgallery-inn img {
    aspect-ratio: 12/10;
}

.artgallery-text {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background: rgba(var(--primary), 0.8);
    padding: 10px;
    transition: var(--transition-05s);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.artgallery-main:hover .artgallery-text {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.artgallery-text h4 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.artgallery-text .common-para {
    color: var(--light_gray_text);
    width: 100%;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 20px;
}


/* CONTACT */


.contact_sec {
    background: black no-repeat center center / cover;
}

.contact_sec .common_title {
    color: var(--white);
}

.contact_sec .common_sub_title {
    color: var(--white);
}

.contact_sec .common_sub_title span {
    color: var(--white);
}

.contact_sec .common_para {
    color: var(--white);
}

.contact_sec .common-btn {
    background: var(--white);
    color: var(--black);
    border: 0;
}

.contact_sec .common-btn:hover {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.contactform-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_logo img {
    width: auto;
    height: 120px;
    margin-top: 30px;
}

.form-box {
    margin-bottom: 20px;
}

.HC-form .form-box .form-control,
.HC-form .form-box .form-select {
    border-radius: 10px;
    min-height: 50px;
    padding: 12px;
}

.social-list {
    display: flex;
    align-items: self-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 10px;
}

.social-list li a {
    display: flex;
    align-items: self-start;
    justify-content: center;
    color: rgba(var(--white-color), 1);
    font-size: 24px;

}



/* FOOTER */

.footer-section {
    background: var(--dark);
    padding-top: 50px;
}

.inner-footer {
    padding-bottom: 50px;
}

.footer-box {
    border-right: 1px solid var(--dark-back);
    position: relative;
    height: 100%;
    padding-right: 10px;
}

.footer-box::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: var(--dark);
    width: 2px;
    height: 85%;
}

.inner-footer>*>*:last-child>.footer-box::after {
    display: none;
}

.foot-logo {
    margin-bottom: 20px;
    display: block;
}

.foot-logo img {
    object-fit: cover;
    width: 90px;
}

.foot-para {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--secondary), 0.7);
    line-height: 22px;
    font-size: 15px;
}

.foot-para p {
    margin-bottom: 10px;
}

.foot-para p:last-child {
    margin-bottom: 0px;
}

.footer-section .social_nav {
    display: flex;
    justify-content: start;
    align-items: center;
    /* margin-left: 15px; */
    margin-top: 20px;
}

.footer-section .social_nav .social_link {
    padding: 0 10px;
    font-size: 18px;
    color: var(--white);
}

.footer-section .social_nav .social_item:first-child .social_link {
    padding-left: 0;
}

.foot-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 500;
}

.foot-list li {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    gap: 8px;
}

.foot-list li span {
    color: var(--white);
    font-size: 16px;
}

.foot-list li a {
    transition: var(--transition-05s);
    font-size: 16px;
    color: var(--white);
}

.foot-list.contact-list li a {
    color: var(--white);
}

.foot-list.contact-list li:nth-child(2) {
    align-items: center;
}

.foot-list.contact-list li:nth-child(2) a {
    color: var(--white);
    font-size: 16px;
}

.foot-list li a:hover,
.foot-list li a:focus,
.foot-list.contact-list li:nth-child(2) a:hover,
.foot-list.contact-list li:nth-child(2) a:focus {
    color: var(--white);
}

.copy-box {
    padding: 18px 0;
    border-top: 1px solid rgba(var(--secondary), 0.15);
    text-align: center;
}

.copy-text {
    color: rgba(var(--secondary), 0.9);
    font-weight: 400;
    font-size: 14px;
}

section.contact_sec.spaceing_top.spaceing_bottom.newseccommon {
    position: relative;
}

.contact_sec.newseccommon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    background-color: #0000008a;
}

section.contact_sec.spaceing_top.spaceing_bottom.newseccommon .row {
    z-index: 2;
    position: relative;
}



/* search modal open */
.search-modal .input-box {
    box-shadow: none;
}

.search-modal .input-box {
    border-radius: 0;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #fff;
    color: #ffffff;
    font-weight: 300;
    width: 100%;
    display: inline-block;
    padding: 15px;
    font-size: 1.5625rem;
}

.search-modal .input-box:focus {
    color: #ffffff !important;
}

.modal.csmodal {
    --bs-modal-bg: rgba(255, 255, 255, 0);
    background-color: #6f727cba !important;
    outline: none;
    border: 0;
    --bs-modal-width: 60%;
}

.search-modal input::placeholder {
    color: #ffff;
}

.modal.csmodal .modal-header {
    border-bottom: 0px solid rgba(255, 255, 255, 0);
}

.modal.csmodal .modal-content {
    border: 0;
}

.btn-close.searchmodalbt {
    content: "\58";
    font-family: var(--font-awesome);
    background-repeat: no-repeat;
    background-position: center;
}



/* INNER BANNER */

.inner_banner>* {
    position: relative;
    z-index: 1
}

.inner_banner {
    display: flex;
    align-items: center;
    position: relative;
    --banner-hvh: 52vh;
    --banner-hhp: 100%;
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inner_banner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--near-black);
}

.inner_banner .banner-box {
    padding-right: 50px;
}

.inner_banner .common_title {
    color: var(--white);
}

.inner_banner .common_sub_title {
    color: var(--white);
}

.inner_banner .common_sub_title span {
    color: var(--white);
}

.inner_banner .common-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.inner_banner .common-btn:hover {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}


.inner_banner .backwallimg img {
    height: 340px;
}

.inner_banner .backwallimg {
    position: absolute;
    top: 12%;
    left: -13%;
    opacity: 0.5;
}


.breadcrumb .breadcrumb-item a {
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}



/* CTA */


.servicesection {
    border-top: 10px solid #e1e1e1;
    background-color: var(--dark);
}

.servicesection.spaceing_top {
    padding-top: 40px;
}

.servicesection.spaceing_bottom {
    padding-bottom: 40px;
}

.servicesection .common_sub_title {
    color: var(--white);
}

.servicesection .common_sub_title span {
    color: var(--white);
}

.servicesection .common_title {
    color: var(--white);
    margin-bottom: 40px;
}

.innerservicessec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.innerservicessec p {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .innerservicessec p {
        font-size: 15px;
    }
}

.servicesico {
    width: 80px;
    height: 80px;
}

.servicesico img {
    object-fit: cover;
}




@media (max-width: 1399px) {
    .commonsec .backwallimg {
        left: -10%;
        opacity: 0.25;
    }

    .backwallimgsecond {
        right: -10%;
        opacity: 0.25;
    }



    .backwallimg img {
        height: 270px;
    }

    .inner_banner .backwallimg img {
        height: 270px;
    }

    .backwallimg {
        top: 12%;
        left: -15%;
        opacity: 0.25;
    }

    .inner_banner .backwallimg {
        left: -15%;
        opacity: 0.25;
    }
}
/* new css add 7.55pm */
.nav-item i {
    cursor: pointer;
}

.learnbtnnew {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    height: 100%;
}
.learnbtnnew i{
    font-size: 15px;
}