@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
{}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
{}


@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('../css/fonts/FontAwesome5Free-Regular.eot');
    src: url('../css/fonts/FontAwesome5Free-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/FontAwesome5Free-Regular.woff2') format('woff2'),
        url('../css/fonts/FontAwesome5Free-Regular.woff') format('woff'),
        url('../css/fonts/FontAwesome5Free-Regular.ttf') format('truetype'),
        url('../css/fonts/FontAwesome5Free-Regular.svg#FontAwesome5Free-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    src: url('../css/fonts/FontAwesome5Brands-Regular.eot');
    src: url('../css/fonts/FontAwesome5Brands-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/FontAwesome5Brands-Regular.woff2') format('woff2'),
        url('../css/fonts/FontAwesome5Brands-Regular.woff') format('woff'),
        url('../css/fonts/FontAwesome5Brands-Regular.ttf') format('truetype'),
        url('../css/fonts/FontAwesome5Brands-Regular.svg#FontAwesome5Brands-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 5 Free Solid';
    src: url('../css/fonts/FontAwesome5Free-Solid.eot');
    src: url('../css/fonts/FontAwesome5Free-Solid.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/FontAwesome5Free-Solid.woff2') format('woff2'),
        url('../css/fonts/FontAwesome5Free-Solid.woff') format('woff'),
        url('../css/fonts/FontAwesome5Free-Solid.ttf') format('truetype'),
        url('../css/fonts/FontAwesome5Free-Solid.svg#FontAwesome5Free-Solid') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free";
}

* {
	text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--clr-black);
}
:root {
    --clr-primary: #d82449;
    --clr-secondary: #354da1;
	--clr-accent: #2a2a2a;
    --clr-white: #fff;
    --clr-black: #000;
	--clr-yellow: #FABD02;
	--clr-hex-gray: #0C0C0C;
	--clr-gray: #C7CCD4;
    --ff-body: "Roboto", sans-serif;
	--ff-heading: "Jost", sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
}
dl, ol, ul {
    padding: 0;
    margin: 0;
}
a:hover, a {
	text-decoration: none;
}
a {
    color: var(--clr-primary);
    transition: 0.5s all;
    word-wrap: break-word;
}
a:hover {
    color: var(--clr-red);
}
img {
    max-width: 100%;
}
::selection {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

hedaer, footer ,section, main {
    width: 100%;
    display: block;
}

h1, h2, h3, h4, h5,h6 {
    margin: 0;
    font-weight: 700;
    line-height: normal;
    font-family: var(--ff-heading);
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 32px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
p {
    color: #232323;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    text-transform: none;
}
p:last-child {
    margin-bottom: 0px;
}
section {
    padding: 60px 0;
}
@keyframes rotate {
  0% {
    transform: rotate(-360deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
.container-fluid {
    padding: 0 40px;
}


/**** header   ****/

.header {
    width: 100%;
    position: relative;
    z-index: 1111;
    padding: 5px 0px;
    background-color: #fff;
}
.logo img {
    max-width: 80px;
    object-fit: contain;
    height: auto;
}
.navigation_top_menu {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: space-between;
}
.nav_menu {
    display: flex;
    align-items: center;
}
.nav_menu ul li a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--clr-accent);
}
.social_media ul{
    display: flex;
    align-items: center;
    gap: 8px;
}
.navigation_top_menu .social_media a.button.blue {
    background-color: var(--clr-secondary) !important;
}
.navigation_top_menu .social_media a.button.blue:hover {
    background-color: var(--clr-primary) !important;
}
.navigation_top_menu .social_media a.button.red {
    background-color: var(--clr-primary) !important;
}
.navigation_top_menu .social_media a.button.red:hover {
    background-color: var(--clr-secondary) !important;
}
.header .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
    justify-content: end;
    margin-right: 70px;
}
.header .navbar-toggler {
    display: none;
}

.navigation_top_menu ul li {
    position: relative;
    display: inline-block;
}
.navigation_top_menu ul li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fafafa;
    width: 200px;
    display: block;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    margin-top: 25px;
    text-align: left;
}
.navigation_top_menu ul li ul.sub-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FAFAFA;
    position: absolute;
    left: 16px;
    top: -8px;
}
.navigation_top_menu ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}
.panel  .navigation_top_menu ul li ul.sub-menu li {
    display: block;
    margin: 0;
    padding: 0 0px;
    border-bottom: 1px solid #fff;
}
.panel .navigation_top_menu ul li ul.sub-menu li a {
    padding: 5px 10px;
    display: inline-block;
    width: 100%;
    opacity: 1;
    /* font-size: 14px; */
    /* color: var(--clr-primary); */
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #232323;
}
.navigation_top_menu ul li ul.sub-menu li:hover a {
    /* background-color: var(--clr-primary); */
    /* color: #fafafa; */
    color: var(--clr-secondary);
    text-decoration: underline;
    transition: .15s;
}
.panel navigation_top_menu ul li ul.sub-menu li:hover a {
    opacity: .75;
}
.navigation_top_menu ul li ul.sub-menu li a::before{
	display: none;
}
.navigation_top_menu ul li ul.sub-menu li a::after{
	display: none;
}
.navigation_top_menu ul li ul.sub-menu li.selected a {
	background-color: var(--clr-primary);
	color: #fafafa;
}



.navigation_top_menu ul li a:hover {
    color: var(--clr-primary);
	position: relative;
}
.navigation_top_menu ul.topmanu li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    right: 0;
    width: 12px;
    height: 12px;
    text-align: center;
    margin: 0 auto;
    border-radius: 100%;
    background-color: var(--clr-primary);
}
.navigation_top_menu ul.topmanu li a:hover::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 27px;
    right: 0;
    width: 6px;
    height: 6px;
    text-align: center;
    margin: 0 auto;
    border-radius: 100%;
    background-color: var(--clr-white);
}
.navigation_top_menu ul li.selected a {
    color: var(--clr-primary);
	position: relative;
}
.navigation_top_menu ul li.selected a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    right: 0;
    width: 12px;
    height: 12px;
    text-align: center;
    margin: 0 auto;
    border-radius: 100%;
    background-color: var(--clr-primary);
}
.navigation_top_menu ul li.selected a::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 27px;
    right: 0;
    width: 6px;
    height: 6px;
    text-align: center;
    margin: 0 auto;
    border-radius: 100%;
    background-color: var(--clr-white);
}

/***  banner  section  ***/

body.slides {
    font-family: var(--ff-body);
    font-size: 15px;
    background-color: transparent;
}
.slide.home {
    background-color: transparent;
    padding: 0;
}
.left.middle {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
}
.left.middle.bg_layout {
	width: 100%;
    height: 100%;
    padding: 40px 30px;
    text-align: left !important;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.section_title{
    margin-bottom: 15px;
}
.left.middle.red_gradient_box {
    height: 224px;
    padding: 35px 30px;
    background: linear-gradient(180deg, #E0153F 0%, #B91032 100%);
}
.blue_gradient_box{
	background: linear-gradient(270.07deg, #28429B 0.06%, #1B2F73 99.94%);
}
.right.middle {
    width: 100%;
    height: 100%;
    padding: 25px 30px;
	text-align: left !important;
}
.right.middle.bg_layout {
    width: 100%;
    height: 380px;
    padding: 30px 30px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.right.middle.bg_layout.primary_btn {
    height: 100%;
    padding: 30px 15px 15px 30px;
    background-position: bottom center;
}
.inner_block .section_title{
    width: 25%;
}
.inner_block .text_content{
    width: 54%;
}
.right.middle.bg_layout .text_content {
    width: 34%;
}
.text_content p {
    color: var(--clr-white);
}
.section_title h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
	color: var(--clr-white);
}
.section_title h1 span{
	color: var(--clr-yellow);
}
/*.imgbx {
    width: 100%;
    height: 100%;
    overflow: hidden;
}*/
.imgbx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}
/*.img_colm img:hover {
    transform: scale(1.1);
}*/
.home_section .primary_btn {
    text-align: right;
    display: flex;
    align-items: end;
    justify-content: end;
}
.primary_btn a {
    width: auto;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 8px 15px;
    transition: 0.5s;
    border-radius: 15px;
    color: var(--clr-white);
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--ff-heading);
    background: linear-gradient(270.47deg, #3F3D98 0.38%, #0F88CE 99.62%);
}
.primary_btn a i.fas.fa-chevron-right {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 25px;
    margin-left: 5px;
    border-radius: 100%;
    border: 1px solid #fff;
}
.primary_btn a:hover {
	color: var(--clr-white);
    background: var(--clr-primary);
}
.section_title h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
	color: var(--clr-white);
}
.slide {
    background: transparent;
	width: 100%;
}

/***    ***/

.footer {
    /* position: fixed; */
    bottom: -145px;
    width: 100%;
    z-index: 11;
}
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 11;
    padding-bottom: 40px;
}
.footer_logo img {
    width: 135px;
    object-fit: contain;
    height: auto;
}
.footer_nav {
    width: 100%;
    display: grid;
    gap: 20px;
    padding: 0 10px;
    grid-template-columns: repeat(7, 1fr);
}
.footer_colm h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--clr-black);
}
.footer_colm ul {
    margin-top: 12px;
}
.footer_colm ul li a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--clr-black);
}

/*** 25.05.2024 ***/

.background_layout {
    width: 100%;
    height: 410px;
    display: flex;
    /* padding: 40px 0; */
    align-items: center;
    justify-content: start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.inner_content {
    padding: 20px 40px 0;
}
.section_title h2 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    color: var(--clr-white);
}
.section_title h2 span {
    color: var(--clr-yellow);
}
.background_layout.about_banner {
    height: 345px;
    background-position: bottom center;
}
.about_sec  .text_summary {
    width: 100%;
    padding: 30px 30px 80px;
    position: relative;
}
.about_sec .text_summary::before {
    content: "";
    left: 0;
    right: 0;
    position: absolute;
    width: 94%;
    bottom: 50px;
    margin: 0 auto;
    border-bottom: none;
}
.cxc_data_inner_col {
    width: 100%;
    padding: 35px 0px 0px; 
    position: relative;
}
/*.cxc_data_inner_col::before {
    content: "";
    left: 0;
    right: 0;
    position: absolute;
    width: 94%;
    bottom: 50px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}*/
.box_colm {
    padding: 20px 10px;
}
.box_colm ul {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.box_colm h5 {
    font-size: 18px;
    color: #232323;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.mt-5 {
    margin-top: 50px!important;
}
.industry_news_col {
    width: 100%;
    /* padding: 30px 40px 100px; */
    position: relative;
}
/*.border_bottom_line::before {
    content: "";
    left: 0;
    right: 0;
    position: absolute;
    width: 94%;
    bottom: 50px;
    margin: 0 auto;
    border-bottom: 2px solid #f2f2f2; 
}*/
.industry_news_col ul {
	gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.industry_news_col ul li{
	margin-top: 35px;
}
.industry_news_col h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #232323;
    margin-top: 20px;
}
.industry_news_col h6 {
    color: #263238;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 5px 0 12px;
}
.industry_news_col h6 span {
    position: relative;
    padding-left: 20px;
}
.industry_news_col h6 span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #263238;
}
.industry_news_col p {
    color: #232323;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}
.read_more_btn a {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: var(--clr-primary);
    margin-top: 20px;
	text-decoration: underline;
	font-family: var(--ff-heading);
}
.read_more_btn a:hover {
	color: var(--clr-secondary);
}
.news_box ul li .img_bx img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}
.recent_news_colm ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
.recent_news_colm ul li {
    width: 100%;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 2px solid #f2f2f2;
}
.recent_news_colm ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.recent_news_colm ul li h5 {
    margin: 0;
}
.recent_news_colm ul li h6 {
    color: #263238;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.recent_news_colm ul li .img_bx {
    /* width: calc(100% - 140px); */
}
.recent_news_colm ul li .text_summary {
    width: 100%;
}
.service_inner_col {
    width: 100%;
    /* padding: 30px 40px 100px; */
    position: relative;
}
.category_inner_col {
    gap: 25px;
    display: flex;
    align-items: flex-start;
}
.category_inner_col nav.catergory_bar {
    width: auto;
    height: 100%;
    padding: 20px 20px;
	border-radius: 20px;
    border: none !important;
background: linear-gradient(270.07deg, #28429B 0.06%, #D82449 99.94%);
}
.service_inner_col .nav-tabs {
    display: block;
    margin: 0;
    /* padding: 20px 15px; */
    border: none !important;
    /* background: var(--clr-secondary); */
}
.service_inner_col .nav-tabs .nav-link {
    width: 212px;
    margin: 5px 0;
    border: none !important;
    font-size: 16px;
    padding: 5px 10px;
    line-height: 30px;
    text-align: left;
    font-weight: 500;
    position: relative;
    color: var(--clr-white);
    font-family: var(--ff-heading);
}
.service_inner_col .nav-tabs .nav-link.active {
    color: var(--clr-primary);
	background-color: var(--clr-white);
}
/*.service_inner_col .nav-tabs .nav-link.active::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
    right: 0;
    margin: 0 auto;
}
.service_inner_col .nav-tabs .nav-link:hover::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
    right: 0;
    margin: 0 auto;
}*/
.service_inner_col .nav-tabs .nav-link:hover{
	color: var(--clr-primary);
}
.service_card {
    width: 100%;
    display: flex;
    gap: 20px;
    margin: 15px 0;
}
.service_card .text_summary {
    /* width: calc(100% + 100px); */
}
.service_card h4 {
    color: #232323;
    font-size: 24px;
    line-height: 44px;
    font-weight: 600;
}
.service_card p {
    color: #232323;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}


.section-title h2{
	font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    padding: 0 0 8px;
    color: #232323;
    font-family: var(--ff-heading);
}
.career_page h4{
	font-size: 24px;
    line-height: 44px;
    font-weight: 700;
    color: var(--clr-black);
    font-family: var(--ff-heading);
}
.background_layout.career_banner {
    height: 290px;
    background-position: center;
}
.faq_inner_colm {
    width: 100%;
    padding: 25px 0 0;
    /* box-shadow: 0px 0px 3px 0px #00000040; */
}
.faq_inner_colm .accordion-item {
    margin: 0 0 15px;
    border: none;
    padding: 0;
    display: flex;
    gap: 40px;
    position: relative;
}
.faq_inner_colm .accordion-item h2.accordion-header {
    /* width: calc(100% - 66px); */
}
.faq_inner_colm button.accordion-button {
	width:340px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    padding: 10px 10px 10px 30px;
    color: var(--clr-fff);
	border-radius: 10px !important;
    font-family: var(--ff-heading);
    background-color: var(--clr-secondary);
}
.faq_inner_colm button.accordion-button::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 5px;
    height: 30px;
    background: var(--clr-primary);
}
.faq_inner_colm .accordion-item .collapsed {
    box-shadow: 0px 0px 3px 0px #00000040;
    padding: 10px 10px 10px 30px;
    position: relative;
    background-color: transparent;
    color: var(--clr-black);
}
.faq_inner_colm .accordion-item .collapsed::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 5px;
    height: 30px;
    background: #274199;
}
.faq_inner_colm .accordion-collapse {
    position: relative;
    width: 100%;
}
.faq_inner_colm .accordion-body {
    width: 100%;
    padding: 15px;
    margin-top: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    border-radius: 20px;
    background-color: #FDFDFD;
    box-shadow: 0px 0px 3px 0px #00000040;
}
.faq_inner_colm .accordion-body h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    padding: 0 0 8px;
    color: var(--clr-black);
    font-family: var(--ff-heading);
}
.faq_inner_colm .accordion-body p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    padding: 0 0 10px;
    color: var(--clr-black);
}
.faq_inner_colm .accordion-body p a{
	color: var(--clr-black);
	font-weight: 500;
	transition: 0.5s;
}
.faq_inner_colm .accordion-body p a:hover{
	text-decoration: underline;
}
.faq_inner_colm .accordion-body ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.faq_inner_colm .accordion-body ul li {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    padding: 0 0 8px 25px;
    position: relative;
    color: var(--clr-black);
}
.faq_inner_colm .accordion-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: var(--clr-primary);
}
.faq_inner_colm .accordion-body ul li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--clr-white);
}
.faq_inner_colm .accordion-button::after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    background-image: none;
    width: auto;
    height: auto;
	font-weight: 900;
    color: #fff;
	font-size: 16px;
}
.faq_inner_colm .accordion-button.collapsed::after {
    content: "\f067";
    color: #000;
}
.career_inner_row {
    margin: 8px 0;
    padding: 10px;
    box-shadow: 0px 0px 6px 0px #00000030;
}
.career_form {
    width: 100%;
    padding-left: 30px;
}
.career_form .form-group {
    text-align: right;
    margin-top: 10px;
}
.career_form h2 {
    font-size: 40px;
    font-weight: 700;
    color: #232323;
    line-height: 45px;
	color: var(--clr-secondary);
}
.career_form h2 span{
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    color: var(--clr-secondary);
}
.career_form p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin: 10px 0 0;
    font-family: var(--ff-heading);
}
.career_form form input, .career_form form textarea, .career_form form file {
    width: 100%;
    height: 60px;
    border: none;
    font-size: 14px;
    line-height: 24px;
    padding: 8px;
    font-weight: 400;
    border-radius: 8px;
    color: var(--clr-black);
    /* border-bottom: 2px solid #000; */
    background-color: #f2f2f2;
    border: none;
}
.career_form form textarea {
    height: 100px;
}
.career_form form input[type="submit"] {
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    padding: 8px 15px;
    transition: 0.5s;
    border-radius: 50px;
    color: var(--clr-white);
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    outline: none;
    border: none;
    font-family: var(--ff-heading);
    background: linear-gradient(270.47deg, #3F3D98 0.38%, #0F88CE 99.62%)
}
.career_form form input[type="submit"]:hover {
	background-color: var(--clr-primary);
}
.career_form .form__group {
  position: relative;
  padding: 15px 0 0;
}
.form__field {
  width: 100%;
  border: 0;
  /* border-bottom: 2px solid var(--clr-black); */
  outline: 0;
  font-size: 14px;
  color: var(--clr-black);
  /* padding: 7px 0; */
  background: transparent;
  transition: border-color 0.2s;
}
.form__field::placeholder {
  color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
    font-size: 15px;
    cursor: text;
    top: 30px;
}
label.form__label, .form__field:focus ~ .form__label {
    position: absolute;
    top: 18px;
    left: 0;
    padding: 0 8px;
    display: block;
    transition: 0.5s;
    font-size: 14px;
    line-height: 16px;
    color: var(--clr-black);
}
.form__field:focus ~ .form__label {
    color: var(--clr-black);
    padding: 5px 10px 0;
    width: 100%;
}
.form__field:focus {
    padding: 20px 10px 10px;
    /* border: 2px solid var(--clr-black); */
}
.career_form .form-group.file-upload input {
    width: auto;
    border: none;
    padding: 0;
    height: auto;
}
.career_form .form-group label.form_label {
    font-size: 14px;
    line-height: normal;
    color: #727272;
    font-weight: 400;
    margin-bottom: 10px;
}
.career_form form input[type="file"] {
    /* height: auto; */
    /* border: none; */
    padding-top: 28px;
}
.career_form form .upload_file label.form__label {
    font-size: 14px;
}
.career_form form input[type="checkbox"] {
    width: auto;
    height: auto;
    float: left;
    box-shadow: none;
    border: 1px solid #727272;
}
.career_form .form-group label.form-check-label {
    display: flex;
    padding-left: 15px;
    font-size: 14px;
    line-height: normal;
    color: #727272;
    font-weight: 400;
}
.career_form .form-group input#formFile {
    border-radius: 30px;
    padding: 15px 80px;
    border: 1px solid #B7B7B7;
}

.img_bx {
    overflow: hidden;
}
.img_bx img {
    transition: 0.5s;
}
.img_bx img:hover {
    transform: scale(1.1);
}

.service_card {
    width: 100%;
    display: grid;
    gap: 20px;
    margin: 15px 0;
    grid-template-columns: repeat(2, 1fr);
}
.service_card .text_summary {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #FFF1F4;
}
.category_inner_col .tab-content {
    height: 100%;
}
.category_inner_col .carousel_slide {
    float: right;
    width: 100%;
    height: 100%;
    transform: none;
    overflow: visible;
}
.category_inner_col .carousel-indicators {
    bottom: -80px;
}
.category_inner_col .carousel-indicators button {
    height: 5px;
    background-color: var(--clr-secondary);
    opacity: 1;
    width: 25px;
}
.category_inner_col .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--clr-primary);
}
.category_inner_col .img_bx {
    width: 100%;
    height: 100%;
    text-align: right;
}
.category_inner_col .img_bx img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: 20px;
}
.background_layout.contact_banner {
    height: 80px;
}
.contact_form {
    padding: 0 30px 0 0;
}
.contact_page .mt-5 {
    margin-top: 30px!important;
}
.map_frame iframe {
    height: 350px;
    width: 100%;
    max-height: 100% !important;
}
.background_layout.why_cxc_banner {
    height: 255px;
}
.background_layout.industry_banner {
	height: 230px;
	background-position: top;
}
.faq_inner_colm #collapse179 {
    top: -65px;
}
.faq_inner_colm #collapse180 {
    top: -130px;
}
.recent_news_colm ul li .img_bx img {
    width: 170px;
    height: 86px;
}
.header .navbar-collapse.navigation li::after {
	display: none;
}

.panel .sections .menu li a {
    /* padding: 22px 7px; */
}
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: flex;
    border: none;
    padding: 18px;
    width: 58%;
    top: 60px;
    gap: 18px;
    right: 0;
    display: grid;
    align-items: baseline;
    border-radius: 0;
    background-color: #FAFAFA;
    grid-template-columns: repeat(4, 1fr);
}
.header .navbar-collapse ul li.grid_menu_show:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu ul {
    /* gap: 0 20px; */
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
}
.dropdown-menu ul li {
    margin: 0;
}
.dropdown-menu ul li h5 {
    font-size: 15px;
    color: #D8254A;
    line-height: 30px;
    /* font-weight: 600; */
    letter-spacing: 0.5px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    /* color: #232323; */
}
.dropdown-menu ul li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #232323;
    padding: 0;
    background-color: transparent;
}
.dropdown-menu ul li a:hover {
    color: var(--clr-secondary);
	text-decoration: underline;
}
.dropdown-menu ul li img {
    margin-top: 15px;
}

.dropdown-menu ul li a.dropdown-item::before {
	display: none;
}
.dropdown-menu ul li a.dropdown-item::after {
	display: none;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}
.service_page .primary_btn {
    text-align: right !important;
}
.career_form .form__group p {
    margin: 0;
}
.career_form .form-group span.wpcf7-spinner {
    display: none;
}
.cxc_data_inner_col  p {
    font-size: 12px;
    line-height: 24px;
}

.news_box {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
	position: relative;
}
.news_box .carousel-item .img_bx {
    height: 220px;
    width: 100%;
}
.news_box .carousel-item .img_bx img {
    width: 100%;
}
.news_box .carousel-indicators [data-bs-target] {
    background-color: #000;
}
.news_box .carousel-indicators {
    bottom: -10px;
    margin-bottom: 0;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
    padding: 0;
    perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-card-back {
    background-color: #354da1;
    color: white;
    transform: rotateY(180deg);
    padding: 21px;
    height: 100%;
    position: relative;
}
.flip-card-front .img_bx {
    position: relative;
    height: 100%;
}
.flip-card-front .img_bx::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgb(53 77 161 / 48%);
}
.sec_red .flip-card-front .img_bx::before {
    background-color: rgb(216 36 73 / 48%);
}
.flip-card-back.text_summary {
    background-color: #d82449;
}
.sec_red .flip-card-back {
    background-color: #d82449;
}
.flip-card-front .img_bx img {
    height: 100%;
    object-fit: cover;
}
.flip-card-front h5 {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    margin: 0 !important;
    width: 100%;
    color: #fff;
}
.cxc_data_inner_col p{
	color: #fff;
}
.box_colm.colm_2 {
    display: none;
}
.navigation_top_menu .social_media ul li a:hover::before {
    background-color: transparent;
}
.navigation_top_menu .social_media ul li a:hover::after {
    background-color: transparent;
}
.dropdown-menu ul:nth-child(2) li {
    margin-bottom: 6px;
}
.dropdown-menu ul:nth-child(4) li {
    margin-bottom: 6px;
}
.right.middle.bg_layout .text_content p {
    text-align: justify;
}
#fancybox-outer #fancybox-content {
    border-color: #354da1;
    border-width: 5px !important;
    padding: 15px;
}
.news_box #carouselExampleIndicators {
    transform: none !important;
}


.industry_news_sec  .item {
    position: relative;
    margin: 0 10px;
}
.industry_news_sec .item::before {
    left: 0;
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    /* background-color: rgb(40 66 155 / 57%); */
	background-color: rgb(0 0 0 / 32%);
}
.industry_news_sec  .text_summary {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}
.blog-left-side .img_bx img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.blog-left-side h5 {
    color: var(--clr-primary);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 10px 0 5px;
}
.blog-left-side h6 {
    color: #263238;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin: 5px 0 10px;
}
.industry_news_sec .img {
    position: relative;
}
.industry_news_sec  .text_summary h5 {
    color: #fff;
    margin: 0;
}
.industry_news_sec  .text_summary h6 {
    color: #fff;
}
.industry_news_sec h6 span::before {
    background-color: #fff;
}
.industry_news_sec  .text_summary a {
    color: #fff;
}
.industry_news_sec .item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.industry_news_col ul.slick-dots {
    position: relative;
    bottom: 2px;
    left: 0;
    right: 0;
    text-align: center;
    display: inline-block !important;
}
.industry_news_col ul li {
    margin-top: 15px;
}
.industry_news_col ul.slick-dots li button::before {
    font-size: 14px;
}
.dropdown-menu ul li img {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.coming_soon_sec h2 {
	color: var(--clr-primary);
}
.sec_blue .flip-card-back.text_summary {
    background-color: #354da1;
}

.career_form form input::placeholder {
	color: #757575;
}
.career_form form textarea::placeholder {
	color: #757575;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	color: #000;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #000;
}
.wpcf7 form .wpcf7-response-output {
	margin: .2em 0.5em 1em;
}

.sev_cat_menu {
	display: none;
}
.service_inner_col .nav-tabs {
    position: relative;
}
.service_inner_col .nav-tabs .sev_cat_menu {
    position: absolute;
    z-index: 99;
    background-color: #fafafa;
    width: 210px;
    display: block;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    text-align: left;
    padding: 13px;
    right: -92%;
    top: 0;
}
.service_inner_col .nav-tabs .sev_cat_menu ul li {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #232323;
    cursor: pointer;
	transition: 0.5s;
}
.service_inner_col .nav-tabs .sev_cat_menu ul li:hover {
	color: var(--clr-secondary);
    text-decoration: underline;
}

 .sev_cat_menu.active_submenu:hover  {
    visibility: visible !important;
    opacity: 1 !important;!important;
}
.active_submenu {
    visibility: visible !important;
    opacity: 1 !important;
}