/* global css */
html {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all ease 0.5s;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn {
    color: #FF9D1C;
    background: #fff;
    border-radius: 4px;
    padding: 10px 18px;
    transition: all ease 0.5s;
}

.btn:hover {
    background: #2F322C;
    color: #FF9D1C;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #d9dbe0;
}

::-webkit-scrollbar-thumb {
    background: #757575;
}

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fs-24 {
    font-size: 24px;
} 


h1 {
    font-size: 70px;
}

h2 {
    font-size: 45px;
}

p {
    line-height: 24px;
}

.border_gray {
    border-color: #57575780 !important;
}

.text_gray {
    color: #2F322C;
}

.text_gray_2 {
    color: #9F9F9F;
}

.heading {
    color: #30312C;
}

.sub_heading {
    color: #575757;
}

.text_orange {
    color: #FF9D1C;
}

.common_section {
    padding: 60px 0;
}
section {
    scroll-margin-top: 50px;
}
/* header css */
.header {
    position: fixed;
    padding: 15px 0;
    z-index: 999;
}

.scroll_header {
    border: none !important;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    background: #00000080;
    padding: 0;
    animation: header_animation 0.7s;
    -webkit-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.56);
    -moz-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.56);
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.56);
}

header.scroll_header .navbar-brand img {
    width: 180px !important;
}

@keyframes header_animation {
    from {
        top: -90px;
    }

    to {
        top: 0px;
    }
}

header .nav-link {
    color: #2F322C;
    padding: 0px;
    width: fit-content;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #2F322C;
    padding: 0 0 0 30px;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(#FFCE1F, #FF9D1C);
    border-radius: 100%;
    transform: translateY(-50%);
}

/* banner css */
.homepage_banner {
    background: url('../images/banner_bg.png');
    padding: 15rem 0px 0 0;
}

.banner {
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: cover !important;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.banner_content_col {
    background-color: #484B45;
}

.banner_content_col_2 {
    background-color: #2F322C;
}

.homepage_banner .banner_conent_row {
    padding-top: 12.4rem;
}

.banner_content_col.position-relative::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    top: 15%;
    right: 0;
    background: #FFFFFF66;
}

.banner_content_col h5 {
    font-size: 18px;
}


.title_section h4 {
    font-weight: 600;
}
.title_section h3 {
    font-weight: 600;
}
.title_section h2 {
    font-weight: 600;
}
/* services section css */
.services_section {
    background: #2F322C;
}

.services_section .tab-pane {
    /*border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: url('../images/services_img.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;*/
}
.services_section .nav.nav-pills {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
}
.services_section .nav.nav-pills .nav-item button {
  text-wrap: nowrap;
}

.services_section h5.position-relative::after {
    content: '';
    position: absolute;
    background: #FF9D1C;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    top: 5px;
    left: -50px;
}

.services_section p.position-relative::after {
    content: '';
    position: absolute;
    height: 100%;
    left: -43px;
    top: 0;
    border-left: 1px dotted #FF9D1C;
}

/* slider section css */
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}
.slider_section {
    background: #FF9D1C;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    width: 100%;
}
.slider_section .slider {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider_section .slider .slide-track {
    animation: scroll 30s linear infinite;
    width: calc(250px * 20);
}

.slider_section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #FF9D1C;
    text-shadow: -1px 1px 0 #fff, 1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

/* process section css */
 .process_2 {
    background: #F7F7F7;
}

 .process_3 {
    background: #2F322C;
}

 .process_4 {
    background: #FF9D1C;
}

/* contact us section css */

.lh-t-20 {
    line-height: 65px;
}
.contact_us_section {
    background: linear-gradient(#fff 90%, #2F322C 10%);
}

.contact_card {
    background: linear-gradient(to right, #FFF4CC, #E7F5FD);
    border-radius: 35px;
    padding: 5rem;
    z-index: 1;
}

 .contact_btn::after {
    content: '';
    position: absolute;
    background: #2F322C;
    width: 140px;
    height: 1px;
    left: 0;
    bottom: -2px;
    transition: all ease 0.4s;
}

 .contact_btn:hover {
    color: #FF9D1C;
}
 .contact_btn, .contact_btn img {
    transition: all ease 0.4s;
}
 .contact_btn:hover img {
    filter: brightness(3) saturate(100%) invert(30%) sepia(97%) saturate(747%) hue-rotate(0deg) brightness(103%) contrast(103%);
}
 .contact_btn:hover::after {
    background: #FF9D1C;
}
.contact_card button {
    background: #2F322C;
    padding: 8px 30px;
    font-size: 18px;
    transition: all ease 0.4s;
}

.contact_card button:hover{
    background: #FF9D1C;
}

.contact_card .form-control::placeholder {
    color: #575757a1;
}

.contact_card .form-control {
    border: 1px solid #00000099;
    padding: 18px;
}

.contact_card textarea {
    resize: none;
}

/* footer section css */
footer {
    background: #2F322C;
}

footer div.position-relative::after {
    content: '';
    position: absolute;
    background: #6c757d;
    width: 1px;
    right: 10px;
    top: 0;
    height: 100%;
}

footer ul li a {
    font-size: 16px;
    transition: all ease 0.5s;
}
footer ul li a:hover {
    color: #FF9D1C;
}
footer span {
    font-size: 16px;
}
/* contact page css */
.contact_page_heading_section{
    padding: 150px 0 50px 0 ;
}

.bg_primary {
    background: #2F322C;
    transition: all ease 0.5s;
}
.bg_primary img {
    transition: all ease 0.2s;
}
.btn.bg_primary:hover {
    background: #FF9D1C !important;
    color: #fff !important;
}
.btn.bg_primary:hover img {
    filter: grayscale(9) brightness(9);
}

.contact_details_section {
    background: linear-gradient(#fff 90%, #2F322C 10%);
}

.contact_details_section .card{
    border-radius: 25px;
}

.contact_deatils_card {
    padding: 90px 80px 60px;
    margin-top: -200px;
    z-index: 1;
}

.contact_deatils_card .outer_card{
    background: linear-gradient(#FFCE1F,#FF9D1C);
    padding: 1px;
}

.contact_deatils_card .inner_card{
    background: #fffbf6;
}

.contact_deatils_card .contact_card{
    background: linear-gradient(to left, #FFF4CC,#E7F5FD);
    padding: 35px;
}

/* about us page css */
.about_us_banner {
    background: url('../images/about_us_banner.png');
    padding: 8rem 0px 4rem 0px;
}

.core_value_section{
    background: #E7F0F0;
}

::placeholder { /* Firefox */
      color: #575757a1;
}

::-ms-input-placeholder { /* Edge 12-18 */
      color: #575757a1;
}

/* ================ changes in css ============================ */
body {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-family: 'Inter';
    overflow-x: hidden;
    overflow-y: scroll !important;
}

.font_inria_serif {
    font-family: 'Inria-Serif';
}

.fs-18{
    font-size: 18px;
}

.fs-20{
    font-size: 20px;
}

header .offcanvas {
    width: 450px !important;
}

.services_section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #FF9D1C !important;
    position: relative;
}

.services_section .nav-pills .nav-link.active::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -2px;
    background: #FF9D1C;
}

.btn_text{
    color: #FF9D1C;
}

a.btn_text:hover{
    filter: brightness(10);
}

.approach_div {
    background: #F7F7F7;
}

.custom_right_padding {
    padding-right: 85px;
}

.client_stories_section {
    background: url('../images/lines_bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 34% 75%;
}

.community_engagement_section {
    background: url('../images/businesspeople.png'), #FF9D1C;
    background-repeat: no-repeat;
    background-position: left center, right center;
    background-size: 50% 100%, 50% 100%;
    padding: 100px 0;
}

.join_our_team_section {
    background: url('../images/join_our_team.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.faq_section .nav-link{
    font-size: 21px;
    text-align: left;
}

.faq_section .nav-link:focus,
.nav-link:hover,
.faq_section .nav-link.active {
    color: #2F322C;
}

.faq_section .nav-link.active {
    margin-left: 8px;
}

.faq_section .nav-link.active::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: 15px;
    height: 15px;
    background: linear-gradient(#FFCE1F, #FF9D1C);
    border-radius: 100%;
    transform: translateY(-50%);
}

.faq_section .col-3.position-relative::after {
    content: '';
    position: absolute;
    right: 0;
    top: -50px;
    bottom: -50px;
    width: 1px;
    background: #c4c8cb;
}

.faq_section .accordion-button::after {
    background-image: url('../images/according_dark.png');
    width: 16px;
    height: 18px;
    background-size: cover;
    background-position: center;
}

.faq_section .accordion-button:not(.collapsed)::after {
    background-image: url('../images/according_theme.png');
    transform: rotate(90deg);
}

.faq_section .accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0px;
    font-size: 16px;
}
.faq_section .accordion-item .accordion-header .accordion-button h3 {
    font-size: 20px;
}
/* ======================== changes in css End ================ */


.terms_section .terms_heading::after {
    content: '';
    position: absolute;
    background: linear-gradient(#FFCE1F, #FF9D1C);
    width: 25px;
    height: 100%;
    left: 0;
    top: 0;
}

.terms_section li {
    list-style: disc;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.core_value_section .slider-card {
    border-radius: 25px;
    -webkit-box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.12);
    width: 500px;
    transition: transform 0.3s ease;
}

.core_value_section .slider-card:hover {
    transform: scale(1.05);
}

.core_value_section .slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #2F322C;
    outline: none;
    border-radius: 5px;
    max-width: 350px;
}

.core_value_section .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(#FFEB3B, #FF9800);
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.core_value_section .slider::-moz-range-thumb {
    width: 40px;
    height: 40px;
    background: linear-gradient(#FFEB3B, #FF9800);
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.core_value_section .slider::-ms-thumb {
    width: 40px;
    height: 40px;
    background: linear-gradient(#FFEB3B, #FF9800);
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.core_value_section .slider::-ms-track {
    width: 100%;
    height: 10px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}







#buttontopbottom {
  display: inline-block;
  background-color: #FF9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  justify-content: center;
  display: flex;
  align-items: center;
}
#buttontopbottom::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
}
#buttontopbottom:hover {
/*  background-color: #333;*/
}
#buttontopbottom:active {
  background-color: #555;
}
#buttontopbottom.show {
  opacity: 0.4;
  cursor: pointer;
  visibility: visible;
}
#buttontopbottom.show:hover {
  opacity: 1;
}
