@import url(./fonts.css);

:root {
    --heading-color: #231F20;
    --text-color: #484848;
    --menu-color: #363636;
    --light-color: #FAFAFA;
    --design-color: #F58220;
    --footer-bg-color: #313131;
    --footer-heading-color: #FFFFFF;
    --footer-icon-color: #CACACA;

    --font-size: 15px;
    --line-height: 16.32px;
}

html {
    overflow-x: hidden;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

    font-size: var(--font-size);
    line-height: var(--line-height);

    font-family: 'AR';

    background-image: url(../img/section/banner.png);
    background-position: top 0 right 0;
    background-repeat: no-repeat;
    background-size: 50% 700px;

    background-color: var(--light-color);
}

a {
    text-decoration: none;
}

#headerContainer:has(>.sticky_header) {
    height: 155px;
}

header {
    padding: 40px 0;
}

header nav>ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: end;
}

header nav>ul>li:first-child {
    width: 48px;
}

header nav>ul>li:nth-child(2) {
    width: 80px;
}

header nav>ul>li:nth-child(3) {
    width: 88px;
}

header nav>ul>li:nth-child(4) {
    width: 93px;
}

header nav>ul>li:nth-child(5) {
    width: 76px;
}

header nav>ul>li:nth-child(6) {
    width: 96px;
}

header nav>ul>li {
    text-align: center;
    margin: 0px 10px;

    /* position: relative; */
}

header nav>ul>li>a {
    cursor: pointer;
}

header nav>ul>li>.down {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1228px;
    display: flex;
    flex-flow: row wrap;
    background-color: var(--light-color);
    box-shadow: -1px 1px 4px 0px #BB9DCA40;
    z-index: -1000;
    border-radius: 12px;

    visibility: hidden;
    opacity: 0;

    transition: 0.4s all ease-out;
}

header nav>ul>li>.down::before,
header nav>ul>li>.down::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 124px;
    height: 124px;
    background: #F582204D;
    border-radius: 140px 0px 12px 0px;
}

header nav>ul>li>.down::after {
    width: 18px;
    height: 18px;
    bottom: 132px;
    right: 41px;
    border-radius: 100px;
}

header nav>ul>li:hover {
    padding-bottom: 15px;
    margin-bottom: -15px;
    z-index: 1;
}

header nav>ul>li:hover>.down {
    display: flex;
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

body:has(header nav>ul>li:hover>.down) .dropdown_layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #c2c2c24d;
    width: 100%;
    height: 100%;
}

.dropdown_menu {
    padding: 50px 30px 20px 30px;

    display: flex;

    flex-flow: row wrap;
    align-content: center;
    position: relative;
}

/* .dropdown_menu::before {
    content: "Services";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    line-height: 65.28px;
    font-family: 'ASB';
    color: #CD9FD4;
} */

.down_menu {
    position: relative;
}

.down_menu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18px;
    width: 1px;
    height: 100%;
    background-color: var(--footer-bg-color);
    border-radius: 10px;
    opacity: 0.26;
}

.dropdown_menu>* {
    height: 100%;
    align-items: stretch;
}

.down_menu:nth-child(1),
.down_menu:nth-child(2),
.down_menu:nth-child(3) {
    margin-bottom: 28px;
}

.down_menu>.menu_heading {
    margin-bottom: 8px;
}

.down_menu>.menu_heading>* {
    margin-bottom: 0;
    text-align: start;

    font-family: 'ASB';
    position: relative;
    z-index: 1;
}

.down_menu>.menu_heading>*::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -5px;
    background-color: var(--design-color);
    width: 18px;
    height: 18px;
    border-radius: 100px;
    z-index: -10;
}

.down_menu>ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.down_menu>ul>li {
    text-align: start;

    font-size: var(--font-size);
    line-height: 30px;
    font-family: 'DR';
}

.down_menu>ul>li>* {
    color: var(--footer-bg-color);
}

.down_menu>ul>li>*:hover {
    font-family: 'DEB';
}

.drop_down_img {
    text-align: start;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.drop_down_img>* {
    width: 100%;
    height: 100%;
    margin-left: -10px;
    border-radius: 12px 0 0 12px;
    transform: scale(1.1);
}

.remove_line::before {
    display: none;
}

/* .menu_solution::before{
    content: 'Solutions';
}
.menu_industries::before{
    content: 'Industries';
}
.menu_company::before{
    content: 'Company';
}
.menu_resources::before{
    content: 'Resources';
} */

header nav>ul>li>a {
    color: var(--menu-color);
    font-size: var(--font-size);
    line-height: var(--line-height);

    display: block;
}

header nav>ul>li:hover>a {
    display: inline-block;
    font-family: 'AB';
    color: var(--menu-color);
}

.logo {
    display: block;
}

header nav>ul>li:last-child {
    margin-right: 0;
}

header nav>ul>li.active {
    background-image: url(../img/icon/menu-icon.svg);
    background-repeat: no-repeat;
    background-position: top 100% center;
    background-size: 10px 10px;
    padding-bottom: 10px;
    margin-bottom: -10px;
    /* background-size: 100%; */
}

/* header nav>ul>li.active::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
} */

header nav>ul>li.active>a {
    font-family: 'AB';
    color: var(--menu-color);
}

/* banner start */

.banner {
    padding: 30px 0;
    overflow: hidden;
}

header {
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(159.3deg, rgba(238, 165, 200, 0.88) 20.94%, rgba(176, 113, 218, 0.88) 78.53%);
    width: 670px;
    height: 700px;
    display: none;
}

.banner-title {
    background-color: #F5A020;
    padding: 6px 15px 6px 40px;
    border-radius: 5px;
    width: 237px;
    min-height: 30px;

    display: flex;
    align-items: center;

    position: relative;

    margin-bottom: 20px;
}

.banner-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 2px;
    height: 16px;
    background-color: var(--heading-color);
    border-radius: 10px;
    transform: translateY(-50%);
}

.banner-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 22px;
    width: 2px;
    height: 16px;
    background-color: var(--heading-color);
    border-radius: 10px;
    transform: translateY(-50%);
}

.banner-title>span {
    color: var(--light-color);
    font-size: 18px;
}

.banner_heading {
    margin-bottom: 20px;
}

.banner_heading>* {
    margin-bottom: 0;
    font-size: 60px;
    line-height: 65.28px;
    color: var(--heading-color);
    font-family: 'AB';
}

.home_banner_heading>* {
    color: #231F20 !important;
}

.banner_para {
    margin-bottom: 28px;
}

.banner_para>* {
    margin-bottom: 0;
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--heading-color);
}

.banner_link>* {
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;

    font-size: 18px;
    line-height: 19.58px;
    color: var(--design-color);
    font-family: 'AM';
    position: relative;
}

.banner_link>*>img {
    margin-left: 14px;
}

.banner_link>*:hover {
    color: var(--design-color);
}

.banner_link>*::before {
    content: "";
    position: absolute;
    top: calc(100% + 4.5px);
    left: 0;
    width: 41px;
    height: 2px;
    background-color: var(--design-color);
    border-radius: 10px;
}

.banner_img {
    text-align: end;
    margin-right: 20px;
    margin-bottom: 70px;
    height: 455px;
}

.banner_img>* {
    /* position: absolute;
    top: 0;
    right: 0; */
    margin: 0 0 0 auto;
    animation: bannerIcon 240s linear infinite;
    position: absolute;
    bottom: 5%;
    left: 55%;
    width: 950px;
    height: 950px;
    z-index: -1;
}

@keyframes bannerIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

g[mask="url(#mask1_1_2)"],
g[mask="url(#mask3_1_2)"] {
    stroke: #DDB0E4;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 8s linear infinite;
}

g[mask="url(#mask3_1_2)"] {
    animation-duration: 7s;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.icon_dots>path {
    animation: dotsbounce 2s linear infinite;
}

.dotsselect>path {
    animation: opacityani 2s linear infinite;
}

.dotsselect1>path {
    animation: opacityani1 3s linear infinite;
}

.dotsselect2>path {
    animation: opacityani2 2.5s linear infinite;
}

.dots-1 {
    animation: dotsbounce1 4s linear infinite;
}

.dots-2 {
    animation: dotsbounce2 5s linear infinite;
}

@keyframes opacityani {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacityani1 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacityani2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes dotsbounce {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes dotsbounce1 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.54005;
    }

    100% {
        opacity: 0;
    }
}

@keyframes dotsbounce2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.410342;
    }

    100% {
        opacity: 0;
    }
}

/* banner end */

/* icon section start */

.icon_section {
    padding: 97px 0 70px;
}

.icon_section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.icon_section ul>li {
    cursor: pointer;
}

.icon_section ul>li>* {
    transition: 0.2s all ease-out;
    filter: grayscale(100);
    transform: scale(1);
}

.icon_section ul>li:hover>* {
    transform: scale(1.1);
    filter: none;
}

/* icon section end */

/* Dependable Partners section start */

.dependable_section {
    padding: 70px 0;
}

.dependable_section_heading>* {
    margin-bottom: 0;

    font-size: 40px;
    font-family: 'AB';
    color: var(--heading-color);
    line-height: 43.52px;
}

.dependable_section_para>* {
    margin-bottom: 0;

    font-size: 14px;
    line-height: var(--line-height);
    font-family: 'DR';

    color: #7D7D7D;
}

.dependable_section_para>*>b {
    font-family: 'DB';
    color: var(--heading-color);
}

/* Dependable Partners section end */

/* four card section start */

.card__ {
    width: calc(100% / 4 - 26.29px);

    border: 1px solid #CACACA;
    background-color: var(--light-color);
    border-radius: 10px;

    padding: 30px 30px 25px;

    min-height: 242px;
    cursor: pointer;
}

.card__:first-child {
    margin-left: 0;
}

.card__:last-child {
    margin-right: 0;
}

.card__Icon {
    display: inline-grid;
    place-content: center;

    background: linear-gradient(159.3deg, #EEA5C8 20.94%, #B071DA 78.53%);

    border-radius: 10px;

    width: 50px;
    height: 50px;

    margin-bottom: 20px;
}

.card__heading {
    margin-bottom: 10px;
}

.card__heading>* {
    margin-bottom: 0;

    font-size: 20px;
    line-height: 21.76px;
    color: var(--heading-color);
    font-family: 'AB';
}

.card__para>* {
    margin-bottom: 0;

    font-size: 13px;
    line-height: 16.93px;
    color: var(--heading-color);
    font-family: 'DR';
}

/* four card section end */

/* what we do section start */

.what_we_do_section {
    padding-top: 98px;
    padding-bottom: 38.5px;
}

.what_we_do_heading>* {
    margin-bottom: 0;

    font-size: 50px;
    line-height: 54.4px;
    color: var(--heading-color);
    font-family: "AB";
}

.what_we_do_para>* {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 23.44px;
    color: #7D7D7D;
    font-family: 'DR';
}

/* what we do section end */

/* gallery section start */

.cards_section {
    padding: 38.5px 0 77px;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery>.hover_cards__ {
    gap: 21px;
    max-width: 100%;
    columns: 4 273px;
}

.hover_card {
    background-color: var(--light-color);

    border-radius: 7px;

    padding: 40px 28px;
    margin: 0 0 22px;

    transition: 0.4s box-shadow ease-in;
    cursor: pointer;
}

.hover_card:hover {
    box-shadow: 0px 0px 22.6px 4px #0000001C;
}

.hover_card:nth-child(1),
.hover_card:nth-child(2) {
    height: 308px;
}

.hover_card:nth-last-child(2) {
    height: 361px;
}

.hover_card:nth-child(2),
.hover_card:nth-child(4),
.hover_card:nth-child(6),
.hover_card:nth-child(8) {
    margin-bottom: 0;
}

.hover_card:nth-child(4) {
    height: 233px;
}

.hover_card_heading {
    margin-bottom: 22px;
}

.hover_card_heading>* {
    margin-bottom: 0;

    font-size: 20px;
    line-height: 21.76px;
    text-align: center;
    color: #2C2C2C;

    font-family: 'AB';
}

.hover_card_para>* {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 18.23px;
    font-family: 'DR';
    text-align: justify;
    color: #909090;
}

/* gallery section end */

/* who we are start */

.who_we_are_section {
    position: relative;
    background-color: #F3F3F3;

    padding-top: 58px;
    padding-bottom: 135px;
    z-index: 1;
}

.who_we_are_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 697px;
    height: calc(100% - 79px);
    background-image: url(../img/section/who-we-are.png);
    background-repeat: no-repeat;
    background-position: top 0 right 0;
    z-index: 1;
}

.we_are_section_img>* {
    width: 100%;
    height: 100%;
}

.who_we_are_heading {
    margin-bottom: 29px;
}

.who_we_are_para>p {
    text-align: justify;
}

.who_we_are_para>p:first-child {
    margin-bottom: 19px;
}

.who_we_are_para {
    width: 90%;
}

/* who we are end */

/* your partners section start */

.your_partners_section {
    background: linear-gradient(159.3deg, rgba(238, 165, 200, 0.92) 20.94%, rgba(176, 113, 218, 0.92) 78.53%), url(../img/section/your-partner.png);
    background-repeat: no-repeat;
    background-position: top 0 left 0;
    background-size: cover;
    padding: 90px 0;
    position: relative;
}

.your_partners_section::before {
    content: "";
    position: absolute;
    bottom: 96px;
    left: 50%;
    width: 353px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--design-color);
    transform: translateX(-50%);
}

.your_partners_section_heading {
    margin-bottom: 53px;
}

.your_partners_section_heading>* {
    color: var(--light-color);
}

.your_partners_section_para {
    margin-bottom: 40px;
}

.your_partners_section_para>* {
    color: var(--light-color);
    font-size: 20px;
    line-height: 26.04px;
}


/* your partners section end */

/* business industries section start */

.business_industries_section {
    padding: 125px 0 calc(50px - 19px);
}

.business_industries_section_heading {
    margin-bottom: calc(75px - 19px);
    text-align: center;
}

.business_cards_ {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
}

.business_cards_Item {
    background-color: #F6F6F6;
    border-radius: 24px;

    min-height: 280.99px;
    max-height: 280.99px;

    width: calc(100% / 4 - 13.25px * 2);
    height: 280.99px;

    margin: 19px 13.25px;
    padding: 57px 35px 71px;

    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-content: end;

    transition: 0.4s box-shadow ease-in;
    cursor: pointer;
}

.business_cards_Item:hover {
    box-shadow: 0px 11px 16px 0px #00000014;
}

.business_cards_Item_icon {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
}

.business_cards_Item_icon>* {
    margin: 0 auto;
}

.business_cards_Item_heading {
    width: 100%;
}

.business_cards_Item_heading>* {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 19.58px;
    font-family: 'AM';
    color: var(--text-color);
    text-align: center;

    text-transform: capitalize;
}

/* business industries section end */

/* our advantage system section start */

.our_advantage_system_section {
    padding: 50px 0;
}

.our_advantage_system_section_img>* {
    width: 100%;
    margin-left: -61px;
}

.our_advantage_system_section_Item_content {
    margin-left: -61px;
}

.our_advantage_system_section_main {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.our_advantage_system_section_main>.our_advantage_system_section_Item:first-child {
    width: calc(845px - 22px);
}

.our_advantage_system_section_main>.our_advantage_system_section_Item:last-child {
    width: calc(100% - 865px);
}

.our_advantage_system_section_heading {
    margin-bottom: 30px;
}

.our_advantage_system_section_para {
    width: 100%;
    padding-left: 11px;
}

.our_advantage_system_section_para>* {
    margin-bottom: 19px;

    font-size: 15px;
}

/* our advantage system section end */

/* get in touch section start */

.get_in_touch_section {
    background-color: var(--footer-bg-color);
    padding: 90px 0;

    position: relative;
}

.get_in_touch_section::before,
.get_in_touch_section::after {
    content: "";
    position: absolute;
    top: -110px;
    left: 35.5px;
    width: 6.67px;
    height: 269px;
    background-color: var(--design-color);
    border-radius: 10px;
}

.get_in_touch_section::after {
    left: 48.83px;
}

.get_in_touch_section_heading {
    margin-bottom: 20px;
}

.get_in_touch_section_heading>*,
.get_in_touch_section_para>* {
    color: var(--light-color);

    text-align: center;
}

.get_in_touch_section_para {
    margin-bottom: 35px;
}

.get_in_touch_section_link {
    text-align: center;
}

.get_in_touch_section_link>* {
    text-decoration: none;

    color: var(--design-color);

    font-size: 18px;
    line-height: 19.58px;
    font-family: 'AM';

    position: relative;

    background-color: transparent;
    border: none;
    padding: 0;
}

.get_in_touch_section_link>*:hover {
    color: var(--design-color);
}

.get_in_touch_section_link>*::before {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 42px;
    height: 2px;
    border-radius: 100px;
    background-color: var(--design-color);
}

.get_in_touch_section_link>*>img {
    margin-left: 10px;
    width: 12px;
}

/* get in touch section end */

/* line start */

.line {
    width: 100%;
    height: 1px;
    opacity: 1;
    background-color: #7E7E7E;
    margin: 0;
}

/* line end */

/* footer start */

footer {
    background-color: var(--footer-bg-color);
    padding: 70px 0 45px;
}

.footer_logo {
    margin-bottom: 10px;
    width: 230px;
    height: 35px;
}

.footer_para {
    margin-bottom: 35px;
}

.footer_para>* {
    width: 85%;

    margin-bottom: 0;

    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--light-color);
    font-family: "DR";
}

.footer_icons>* {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.footer_icons>*>li {
    width: 35px;
    height: 35px;
    border-radius: 100px;

    background-color: #3A3A3A;

    display: grid;
    place-content: center;

    margin: 0 9.43px;
    cursor: pointer;
}

.footer_icons>*>li>a>img {
    transition: 0.2s all ease-out;
    transform: scale(0.9);
    mix-blend-mode: luminosity;
}

.footer_icons>*>li:hover>a>img {
    transform: scale(1.1);
    mix-blend-mode: unset;
}

.footer_heading {
    margin-bottom: 25px;
}

.footer_heading>* {
    margin-bottom: 0;

    font-size: 30px;
    line-height: 32.64px;
    font-family: 'AB';

    color: var(--footer-heading-color);
}

.footer_links>* {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer_links>*>li {
    font-size: var(--font-size);
    line-height: 30px;
    font-family: 'DL';

}

.footer_links>*>li>* {
    color: var(--light-color);

    position: relative;
}

.footer_links>*>li>*::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--design-color);
    border-radius: 2px;

    transition: 0.2s all ease-out;
}

.footer_links>*>li>*:hover::before {
    width: 75%;
}

.footer_para_input {
    margin-bottom: 20px;
}

.footer_para_input>* {
    width: 100%;
}

.footer_form>*>input {
    background-image: url(../img/icon/message.svg), url(../img/icon/input-arrow.svg);
    background-repeat: no-repeat;
    background-position: top 11px left 15px, top 10px right 10px;
    background-size: 20px 18px, 20px 20px;

    width: 100%;
    border: 1px solid #707070;

    padding: 11px 36px 11px 50px;

    background-color: transparent;
    border-radius: 5px;

    outline: none;
    caret-color: #707070;
    color: #707070;
}

.footer_form>*>input::placeholder {
    color: #707070;
}

.footer_form>* {
    position: relative;
}

.footer_form>*::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 36px;
    width: 2px;
    height: 29px;
    background-color: #707070;
    transform: translateY(-50%);

    border-radius: 10px;
}

/* footer end */

/* copy right section start */

.copy_right_section {
    padding: 30px 0;
    background-color: var(--footer-bg-color);
}

.copy_right_para>* {
    margin-bottom: 0;

    font-size: var(--font-size);
    line-height: 25px;
    color: var(--light-color);
    font-family: 'DR';
}

.copy_right_para>*>a {
    text-decoration: none;
    color: var(--light-color);
    font-family: 'DM';
}

/* copy right section end */

/* about page start */

.about_us {
    background-image: url(../img/section/about.png);
    background-size: 53% 100%;
}

.about_banner {
    margin-top: 30px;
    padding: 57px 0;
}

.about_banner_title {
    background-color: #BB9DCA;
}

.about_banner_title::before,
.about_banner_title::after {
    background-color: var(--design-color);
}

.about_banner_para>* {
    margin-bottom: 25px;
    line-height: 19.53px;

    font-family: 'DR';

    text-align: justify;
}

.about_banner_para>*>span {
    font-family: 'DSB';
    display: block;
}

.about_banner_para>*>b {
    font-family: 'DM';
}

.about_banner .banner_heading>* {
    color: var(--heading-color);
}

.about_img>* {
    animation: about-banner ease-in-out infinite 3s;
}

@keyframes about-banner {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.about_get_line>.get_in_touch_section::before,
.about_get_line>.get_in_touch_section::after {
    display: none !important;
}

/* about page end */

/* digital-bg start */

.digital_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/digital-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.commerce_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/commerce-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.intellegence_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/intellegence-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.modernization_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/modernization-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.solutions_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/solutions-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.services_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/services-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.industries_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/industries-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.contact_bg {
    background-image: url(../img/icon/banner-dots.png), url(../img/section/contact-bg.png);
    background-repeat: no-repeat;
    background-size: 400px 359px, 100% 100%;
}

.under_working_bg {
    background-image: none;
    background-repeat: unset;
    background-size: unset;
    background: linear-gradient(259.04deg, #FECE00 0%, #E29500 100%);
}

.banner-upper {
    margin-bottom: 7px;
}

.banner-upper>* {
    margin-bottom: 0;

    font-size: 30px;
    line-height: 32.64px;
    font-family: 'AR';
    color: #093E7E;
}

.banner-upper>*>img {
    margin-left: 10px;
}

.banner_heading>* {
    font-size: 60px;
    line-height: 65.28px;
    font-family: 'ASB';

    color: #7086A1;
}

.digital_banner {
    background-image: url(../img/section/digital.svg);
    background-repeat: no-repeat;
    background-position: bottom 0 center;
    padding: 205px 0;
}

.retail_banner {
    background-image: url(../img/section/commerce.svg);
}

.data_ai_banner {
    background-image: url(../img/section/intellegence.svg);
}

.modernization_banner {
    background-image: url(../img/section/modernization.svg);
}

.solutions_banner {
    background-image: url(../img/section/solutions.svg);
}

.services_banner {
    background-image: url(../img/section/services.svg);
}

.industries_banner {
    background-image: url(../img/section/industries.svg);
}

.contact_banner {
    background-image: url(../img/section/contact-us.svg);
}

.under_working_banner {
    background-image: url(../img/section/under-working.svg);
}

.section_bg_white {
    background-color: var(--light-color);
    padding: 40px 0;
}

.content_card_heading {
    margin-bottom: 11px;
}

.content_card_heading>* {
    margin-bottom: 0;

    font-size: 50px;
    line-height: 54.4px;
    font-family: 'AB';
    color: var(--heading-color);

    text-transform: capitalize;
}

.content_card_down_heading {
    margin-bottom: 30px;
}

.content_card_down_heading>* {
    margin-bottom: 0;

    font-size: 24px;
    line-height: 26.11px;
    font-family: 'AB';
    color: #3C035B;

    text-transform: capitalize;
}

.content_card_para {
    width: 94%;
    margin-bottom: 35px;
}

.content_card_para>* {
    margin-bottom: 0;

    font-size: 16px;
    line-height: 20.83px;
    font-family: 'DR';
    text-align: justify;
    color: var(--text-color);
}

.content_card_list_heading {
    margin-left: 23px;
    margin-bottom: 9px;
}

.content_card_list_heading>* {
    margin-bottom: 0;

    font-size: 20px;
    line-height: 21.76px;
    font-family: 'AB';
    color: #676767;

    text-transform: uppercase;
}

.content_card_list {
    margin-left: -24px;
    margin-bottom: 47px;
}

.content_card_list>* {
    background-color: #F1F0F0;
    border-radius: 10px;
    padding-top: 21px;
    padding-bottom: 21px;
    padding-right: 23px;

    margin-bottom: 0;
}

.content_card_list>*>li {
    margin-left: 23px;

    font-size: 16px;
    line-height: 29px;
    font-family: 'DR';
    text-align: justify;
    color: var(--heading-color);
}

.content_card_list>*>li::marker {
    font-size: 10px;
}

.content_card {
    border: 1px solid #CACACA;
    width: 180px;
    height: 180px;
    border-radius: 10px;

    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-top: 38px;
    margin-bottom: 30px;

    cursor: pointer;
    background: transparent;
    transition: 0.4s background-image ease-out;
}

.content_card:hover {
    background-image: linear-gradient(159.3deg, #EEA5C8 20.94%, #B071DA 78.53%);
    border: 1px solid transparent;
}

.content_card:hover>.content_card_icon {
    background: transparent;
}

.content_card:hover>.content_card_icon>* {
    transform: scale(1.8);
}

.content_card:hover>.content_cards_heading>* {
    color: var(--light-color);
}

.content_card_icon {
    margin-bottom: 21px;

    background: linear-gradient(159.3deg, #EEA5C8 20.94%, #B071DA 78.53%);
    border-radius: 10px;
    width: 52.35px;
    height: 52.35px;

    display: grid;
    place-content: center;
}

.content_card_icon>* {
    transition: 0.3s all ease-out;
}

.content_cards_heading>* {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 19.58px;
    font-family: 'AM';
    text-align: center;
    color: var(--text-color);
}

.content_div {
    margin-top: 19px;
}

.icon_heading_upper {
    margin-bottom: 50px;
}

.icon_heading_upper>* {
    margin-bottom: 0;

    font-size: 40px;
    line-height: 43.52px;
    font-family: 'ASB';
    color: var(--heading-color);
    text-align: center;
}

/* digital-bg end */

/* new waves section start */

.new_waves_section {
    background-color: var(--light-color);
    padding: 60px 0 50px 0;
}

.icon_heading_upper_2 {
    margin-bottom: 28px;
}

.icon_down_heading {
    margin-bottom: 50px;
}

.icon_down_heading>* {
    margin-bottom: 0;

    font-size: 24px;
    line-height: 31.25px;
    text-align: center;
    font-family: 'DR';
    color: #EEA5C8;
}

.new_card {
    border: 1px solid #CACACA;
    border-radius: 10px;
    width: 180px;
    height: 180px;

    display: flex;
    flex-flow: column wrap;
    align-items: center;

    text-align: center;
    padding-top: 38px;
    padding-inline: 15px;
    cursor: pointer;

    transition: 0.4s all ease-out;
}

.new_card:hover {
    background-color: #F58220;
    box-shadow: 0px 10px 20px 0px #00000021;
    border: 1px solid #F58220;
}

.new_card:hover>.new_card_icon {
    background-color: #F9F9F9;
    transform: scale(1.2);
}

.new_card:hover>.new_card_icon>svg {
    transform: scale(1.3);
}

.new_card:hover>.new_card_icon>svg * {
    fill: #F58220;
}

.new_card_icon {
    width: 52.35px;
    height: 52.35px;
    border-radius: 10px;
    background-color: #B6B6B6;

    display: grid;
    place-content: center;
    margin-bottom: 21px;
    transition: 0.4s transform ease-out;
}

.new_card_icon>* {
    transition: 0.3s all ease-out;
}

.new_card:hover>.new_card_heading>* {
    color: var(--light-color);
}

.new_card_heading>* {
    margin-bottom: 0;

    font-size: 16px;
    line-height: 17.41px;
    text-align: center;
    font-family: 'AM';
    color: var(--text-color);
}

/* new waves section end */

/* Digital Commerce section start */

.content_card_heading_commerce {
    margin-bottom: 30px;
}

.content_card_para_commerce {
    width: 85%;
    margin-bottom: 25px;
}

.commerce_bg .banner-upper>* {
    color: #F2560D;
}

.commerce_bg .banner-upper>*>svg * {
    fill: #F2560D;
}

.commerce_bg .banner_heading>* {
    color: #FFA286;
}

/* Digital Commerce section end */

/* Business Intellegence section start */

.intellegence_bg .banner-upper>* {
    color: #101A63;
}

.intellegence_bg .banner-upper>*>svg * {
    fill: #101A63;
}

.intellegence_bg .banner_heading>* {
    color: var(--light-color);
}

/* Business Intellegence section end */

/* Data Modernization section start */

.modernization_bg .banner-upper>* {
    color: #101A63;
}

.modernization_bg .banner-upper>*>svg * {
    fill: #101A63;
}

.modernization_bg .banner_heading>* {
    color: var(--light-color);
}

/* Data Modernization section end */

/* header start */

.sticky_header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    padding: 20px 0;
    box-shadow: -1px 1px 4px 0px #BB9DCA40;
}

.sticky_header .down {
    top: 60px;
}

/* header end */

/* solutions page start */

.services_section {
    padding: 75px 0;
}

.solutions_banner .banner_heading>* {
    color: var(--light-color);
}

.solutions_banner_down_div_text {
    margin-bottom: 15px;
}

.solutions_banner_down_div_text>* {
    font-size: 15px;
}

.solutions_section_heading {
    margin-bottom: 50px;
}

.solutions_section_card_item {
    padding: 35px 15px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    /* transition: 0.4s all ease-out; */
}

.solutions_section_card>*:nth-child(1)>* {
    border-bottom: 1px solid #E4E4E7;
}

.solutions_section_card>*:nth-child(2)>* {
    border: 1px solid #E4E4E7;
    border-top: none;
}

.solutions_section_card>*:nth-child(3)>* {
    border-bottom: 1px solid #E4E4E7;
}

.solutions_section_card>*:nth-child(5)>* {
    border: 1px solid #E4E4E7;
    border-top: none;
    border-bottom: none;
}

.solutions_section_card>*:nth-child(1)>*:hover {
    border-radius: 10px 0 0 10px;
}

.solutions_section_card>*:nth-child(2)>*:hover {
    border-radius: 10px 10px 0 0;
}

.solutions_section_card>*:nth-child(3)>*:hover {
    border-radius: 0 10px 10px 0;
}

.solutions_section_card>*:nth-child(4)>*:hover {
    border-radius: 10px 0 0 10px;
}

.solutions_section_card>*:nth-child(5)>*:hover {
    border-radius: 0 0 10px 10px;
}

.solutions_section_card>*:nth-child(6)>*:hover {
    border-radius: 0 10px 10px 0;
}

.solutions_section_card_item:hover {
    background: linear-gradient(159.3deg, #FFC642 20.94%, #FF9F81 78.53%);
}

.solutions_section_card_item_icon {
    margin-bottom: 20px;
}

.solutions_section_card_item_heading {
    margin-bottom: 10px;
}

.solutions_section_card_item_heading>* {
    margin-bottom: 0;

    font-size: 21px;
    font-family: 'DB';
    line-height: 28px;
    color: #404040;
}

.solutions_section_card_item_content>* {
    margin-bottom: 0;

    font-size: 16px;
    line-height: 21px;
    font-family: 'DR';
    color: #404040;
}

.solution_footer_upper_div_heading {
    margin-bottom: 10px;
}

.solution_footer_upper_div_heading>* {
    margin-bottom: 0;

    font-size: 50px;
    font-family: 'AB';
    color: var(--design-color);
}

.solution_footer_upper_div_content>* {
    margin-bottom: 0;

    font-size: 18px;
    font-family: 'DR';
    color: #B6B6B6;
}

.solution_footer_upper_section {
    padding: 110px 0;
    background-color: var(--light-color);
}

.solution_footer_upper_card_div {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 1;
}

.solution_footer_upper_card_div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    height: 2px;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 873 2'%3E%3Cpath d='M0.5 1H873' stroke='%23CACACA' stroke-dasharray='6 6'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}


.solution_footer_upper_card_div>* {
    margin: 0 33px;

    background-color: var(--light-color);
}

/* solutions page end */

/* services section start */

.services_banner .banner_heading>* {
    color: var(--light-color);
}

.services_footer_upper_div_heading>* {
    color: #3C035B;
}

.services_section_card_item:hover {
    background: linear-gradient(159.3deg, #EEA5C8 20.94%, #B071DA 78.53%);
}

.services_footer_upper_section {
    padding-bottom: 75px;
}

.new_services_section {
    padding-top: 0;
    padding-bottom: 110px;
}

/* services section end */

/* industries section start */

.industries_section {
    padding: 90px 0;
}

.industries_banner .banner_heading>* {
    color: var(--light-color);
}

.industries_section_card_item {
    background-color: #F8F8F8;

    padding: 35px 10px;
    min-height: 309px;
    max-height: 309px;
    height: 100%;

    text-align: center;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: space-between;
    border-radius: 10px;
    cursor: pointer;

    transition: 0.4s all ease-out;
}

.industries_section_card_item:hover {
    background-color: var(--design-color);
}

.industries_section_card_item:hover>.industries_section_card_item_icon>svg {
    transform: scale(1.2);
}

.industries_section_card_item:hover>.industries_section_card_item_icon>svg>* {
    fill: var(--design-color);
}

.industries_section_card_item:hover>.industries_section_card_item_heading>* {
    color: var(--footer-heading-color);
}

.industries_section_card_item:hover>.industries_section_card_item_heading_2::before {
    background-color: var(--footer-heading-color);
}

.industries_section_card_item>* {
    width: 100%;
}

.industries_section_card_item_icon {
    display: grid;
    place-content: center;
    width: 96px;
    height: 96px;
    padding: 25px 15px;
    background-color: var(--footer-heading-color);

    border-radius: 10px;
}

.industries_section_card_item_icon>svg {
    transition: 0.3s all ease-out;
}

.industries_section_card_item_heading>* {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 22px;
    font-family: 'DB';
    color: #404040;
}

.industries_section_card_item_heading_2 {
    position: relative;
}

.industries_section_card_item_heading_2::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -10px;
    width: calc(100% + 20px);
    height: 1px;
    background-color: #D1D1D1;
}

.industries_section_card_item_heading_2>* {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 21px;
    font-family: 'DB';
    color: #404040;
}

/* .banner_link>* {
    overflow: hidden;
}

.banner_link>*:hover>img {
    animation: arrowanimate 0.3s linear;
}

@keyframes arrowanimate {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, -100%);
    }
} */

/* industries section end */

/* blogs page start */

.blogs_bg {
    background-color: var(--light-color);
    background-image: url(../img/section/bubble.png);
    background-size: 100%;
    background-position: top 90px center;
}

.blog_header>header {
    background-color: var(--light-color);
    padding-bottom: 15px !important;
}

.blogs_banner {
    background: none;

    height: calc(600px - 73px);
    padding: 90px 0;
}

.blogs_banner_upper_heading {
    margin-bottom: 20px;
}

.blogs_banner_upper_heading>* {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 20px;
    color: #3C035B;

    font-family: 'DB';
}

.blogs_banner_heading {
    margin-bottom: 24px;
}

.blogs_banner_heading>* {
    margin-bottom: 0;

    font-size: 48px;
    line-height: 60px;
    color: #3C035B;
    font-family: 'ASB';
}

.blogs_banner_content {
    margin-bottom: 40px;
}

.blogs_banner_content>* {
    margin-bottom: 0;

    font-size: 20px;
    line-height: 30px;
    color: #3C035B;

    font-family: 'DR';
}

.blogs_banner_input input {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background-color: var(--footer-heading-color);

    padding: 12px 16px 12px 44px;

    font-size: 16px;
    line-height: 24px;

    color: #667085;
    font-family: 'DR';
    outline: none !important;
    width: 320px;
    height: 48px;

    background-image: url(../img/icon/search.svg);
    background-repeat: no-repeat;
    background-position: center left 18.5px;
}

.blogs_banner_input input::placeholder {
    color: #667085;
    font-size: 16px;
    line-height: 24px;
    font-family: 'DR';
}

.blogs_section {
    transform: translateY(-40px);
    position: relative;
    z-index: 1;
}

.blogs_section::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--footer-heading-color);
    z-index: -1;
}

.blogs_section_card_img {
    margin-bottom: 32px;
}

.blogs_section_card_img>img {
    border-radius: 10px;
    width: 100%;
}

.blogs_section_card_upper_heading {
    margin-bottom: 12px;
}

.blogs_section_card_upper_heading>* {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 20px;
    color: #3C035B;
    font-family: 'DB';

    text-decoration: none;
}

.blogs_section_card_heading {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;
}

.blogs_section_card_heading>h3 {
    margin-bottom: 0;

    font-size: 24px;
    line-height: 32px;
    color: #101828;
    font-family: 'DB';

    text-decoration: none;

    width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs_section_card_content>* {
    margin-bottom: 0;

    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-family: 'DR';

    text-decoration: none;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blogs_section_card_2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 200px;
    margin-bottom: 32px;
    margin-left: 18px;
}

.blogs_section_card_2:last-child {
    margin-bottom: 0;
}

.blogs_section_card_2>.blogs_section_card {
    width: calc(100% - 320px - 18px);
}

.blogs_section_card_2>.blogs_section_card_img {
    width: 320px;
    margin-right: 18px;
    margin-bottom: 0;
}

.blogs_section_card_2>.blogs_section_card_img>* {
    width: 100%;
    border-radius: 10px;
}

.blogs_section_card_2 .blogs_section_card_heading>* {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: inherit;
}

/* blogs page end */

/* blogs post section start */

.blogs_post_section {
    padding: 75px 0 90px;
}

.blogs_post_card {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.blogs_post_section_heading {
    margin-bottom: 23px;
}

.blogs_post_section_heading>* {
    margin-bottom: 0;

    font-size: 24px;
    line-height: 32px;
    color: #101828;
    font-family: 'DB';
}

.blogs_post_card_img {
    margin-bottom: 32px;
}

.blogs_post_card_img>* {
    border-radius: 10px;
    width: 100%;
}

.blogs_post_card_upper_heading {
    margin-bottom: 12px;
}

.blogs_post_card_upper_heading>* {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 20px;
    color: #6941C6;
    font-family: 'DB';
}

.blogs_post_card_heading {
    margin-bottom: 12px;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.blogs_post_card_heading>h3 {
    margin-bottom: 0;

    font-size: 24px;
    line-height: 32px;
    color: #101828;
    font-family: 'DB';

    width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs_post_card_heading>img {
    width: 10px;
    height: 10px;

    margin-bottom: auto;
    margin-top: 10px;
}

.blogs_post_card_content>* {
    margin-bottom: 0;

    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-family: 'DR';

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pagination {
    padding-top: 20px;
    border-top: 1px solid #EAECF0;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.pagination>li>a {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;

    border: none;
    margin: 0 2px !important;
    background-color: transparent;

    color: #667085 !important;
    border-radius: 8px;

    font-size: 16px;
    line-height: 20px;
    font-family: 'DR';
}

.pagination>li>a:hover {
    background-color: transparent !important;
    color: #7F56D9 !important;
    font-family: 'DB';
}

.pagination>li.active>a {
    background-color: #F9F5FF !important;


    color: #7F56D9 !important;
    font-size: 18px;
    line-height: 20px;
    font-family: 'DB';
}

.prev_btn {
    margin-right: auto;
}

.next_btn {
    margin-left: auto;
}

.pagination>.next_btn>*,
.pagination>.prev_btn>* {
    width: 100px;
    padding: 0 !important;
    margin: 0 !important;

    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.pagination>.next_btn>* {
    font-family: 'DM';
    justify-content: end;
}

.pagination>.next_btn>*>img {
    margin-left: 12px;
    transform: rotate(180deg);
}

.pagination>.prev_btn>* {
    font-family: 'DM';
    justify-content: start;
}

.pagination>.prev_btn>*>img {
    margin-right: 12px;
}

.pagination>.prev_btn>*:hover {
    font-family: 'DM';
    color: #667085 !important;
}

.pagination>.next_btn>*:hover {
    font-family: 'DM';
    color: #667085 !important;
}

/* blogs post section end */

/* contact page start */

.contact_section {
    padding: 100px 0;
}

.contact_section_heading {
    margin-bottom: 30px;
}

.contact_section_heading>* {
    margin-bottom: 0;

    font-size: 48px;
    line-height: 60px;
    color: #101828;
    font-family: 'ASB';
}

.contact_section_content {
    margin-bottom: 30px;
}

.contact_section_content>* {
    margin-bottom: 0;

    font-size: 20px;
    line-height: 30px;
    color: #667085;
    font-family: 'DR';
}

.contact_section_content>*>a {
    color: #6941C6;
    font-family: 'DB';
}

.form-label {
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    font-family: 'DM';
}

.form-control,
textarea {
    background-color: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    padding: 12px 16px;

    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-family: 'DR';

    min-height: 48px;
    max-height: 48px;
    outline: none !important;
}

.form-group {
    margin-bottom: 20px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.form_checkbox {
    /* border: 1px solid; */
    /* border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133)); */
    background-color: #FFFFFF;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border-radius: 6px;
    opacity: 0.5;
}

.form_checkbox:checked {
    opacity: 1;
}

.form_btn {
    background-color: #BB9DCA;
    border-radius: 8px;
    width: 100%;
    height: 48px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    padding: 12px 20px;

    display: grid;
    place-content: center;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-family: 'AB';
}

textarea {
    width: 100%;
    min-height: 128px;
    max-height: 128px;
    resize: none;
}

.contact_section_img {
    height: 100%;
}

.contact_section_img>* {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
    border-radius: 12px;
}

/* contact page end */

/* contact social section start */

.contact_social_section {
    background-color: var(--light-color);
    padding-bottom: 100px;
}

.contact_social_section_heading {
    margin-bottom: 6px;
}

.contact_social_section_heading>* {
    margin-bottom: 0;

    font-size: 50px;
    color: #383838;
    font-family: 'AB';

    text-align: center;
}

.contact_social_section_content {
    margin-bottom: 30px;
}

.contact_social_section_content>* {
    margin-bottom: 0px;

    font-size: 15px;
    color: #383838;
    font-family: 'DR';
    text-align: center;
}

.contact_social_section_icons {
    margin-bottom: 30px;
}

.contact_social_section_icons>ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact_social_section_icons>ul>li {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    background-color: #B6B6B6;
    border-radius: 100px;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 9px;
}

.contact_social_section_icons>ul>li:hover {
    background-color: #121214;
}

.contact_social_section_icons>ul>li>a {
    display: block;
    text-align: center;
}

.contact_social_section_icons>ul>li>a>img {
    margin: 0 auto;
}

.contact_social_section_content:last-child {
    margin-bottom: 0;
}

/* contact social section end */

/* about start */

.about_img {
    margin-left: 20px;
    margin-right: 0;
}

.about_img>* {
    position: unset;
    width: unset;
    height: unset;
}

/* about end */

/* modal start */

.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-bottom: none;
    justify-content: end;
}

.modal-header>* {
    background-color: #ffffff;
    mix-blend-mode: difference;
    margin: 12px 12px -31px 0 !important;
}

.modal-body.modal-dialog-scrollable .contact_section_form {
    padding: 15px 25px;
}

.modal-body.modal-dialog-scrollable .contact_section_form .contact_section_content>* {
    font-size: 16px;
}

.modal-body.modal-dialog-scrollable .contact_section_form .form_btn {
    margin-top: 50px;
}

.modal.fade {
    padding-right: 0 !important;
}

.modal.fade::-webkit-scrollbar {
    width: 0;
}

/* modal end */

/* under working section start */

.under_working_banner .banner_heading>* {
    color: var(--footer-bg-color);
}

.banner_link>* {
    background-color: transparent;
    border: none;
    padding: 0;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

* {
    outline: none !important;
}

/* under working section end */

/* side bar start */

.sidebar {
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    transition: 0.4s all ease-out;
    opacity: 0;
    visibility: hidden;
    padding: 40px 0;
}

.sidebar.active {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.close {
    text-align: end;
}

.close>* {
    width: 30px;
}

.sidebar>.container,
.sidebar>.container>.row {
    height: 100%;
}

.sidebar ul {
    height: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    overflow-y: auto;
}

.sideBar_down {
    display: none;
    padding-left: 8px;
    margin: 10px 0;
}

.sideBar_dropdown_list>* {
    margin: 10px 0;
    padding-left: 15px;
    position: relative;

    transition: 0.4s all ease-out;
}

.sideBar_dropdown_list>*.sideBar_dropdown::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 10' fill='none'%3e%3cpath d='M0 8.38197V1.61803C0 0.874652 0.782315 0.391157 1.44722 0.723608L8.21115 4.10557C8.94819 4.4741 8.94819 5.5259 8.21114 5.89443L1.44721 9.27639C0.782313 9.60884 0 9.12535 0 8.38197Z' fill='black'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center left 0;
    width: 10px;
    height: 10px;

    transition: 0.4s all ease-out;
}

.sideBar_dropdown_list>*>a {
    font-size: 22px;
    line-height: 30px;
    font-family: 'DB';
    color: var(--menu-color) !important;
}

li.menu_active>a {
    font-family: 'DB';
}

.sideBar_down_heading>* {
    font-size: 18px;
    line-height: 22px;
    font-family: 'DB';
    color: var(--footer-bg-color);
}

.sideBar_down>ul {
    padding-left: 8px;
    margin: 10px 0;
}

.sideBar_down>ul>li {
    margin: 6px 0;
}

.sideBar_down>ul>li>a {
    font-size: 18px;
    line-height: 22px;
    font-family: 'DR';
    color: var(--text-color);
}

.sideBar_dropdown_div {
    margin-top: 50px;

    height: calc(100% - 35px - 50px);
}

.sideBar_dropdown>a {
    position: relative;
}

.sideBar_dropdown>a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--design-color);
    transition: 0.4s all ease-out;
}

.sideBar_dropdown.menu_active>a::before {
    width: 75%;
}

.sideBar_dropdown.menu_active::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 10' fill='none'%3e%3cpath d='M0 8.38197V1.61803C0 0.874652 0.782315 0.391157 1.44722 0.723608L8.21115 4.10557C8.94819 4.4741 8.94819 5.5259 8.21114 5.89443L1.44721 9.27639C0.782313 9.60884 0 9.12535 0 8.38197Z' fill='%23F58220'/%3e%3c/svg%3e");
    transform: rotate(90deg);
}

body .sidebar.active {
    overflow: hidden;
}

/* side bar end */

/* banner vector start */

.banner_vector {
    display: none;
}

.banner_vector>* {
    animation: animatedvector 4s infinite linear;
}

@keyframes animatedvector {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* banner vector end */

/* banner home start */

.home_page {
    background-size: 50% 100vh;
    overflow-x: hidden;
}

.home_banner {
    height: calc(100vh - 115px);
}

.home_banner>.container,
.home_banner>.container>.row {
    height: 100%;
}

/* banner home end */