/* font families */

@font-face {
    font-family: FamiljenGrotesk-Regular;
    src: url(../font-families/FamiljenGrotesk-Regular.ttf);
}

@font-face {
    font-family: FamiljenGrotesk-Medium;
    src: url(../font-families/FamiljenGrotesk-Medium.ttf);
}

@font-face {
    font-family: FamiljenGrotesk-SemiBold;
    src: url(../font-families/FamiljenGrotesk-SemiBold.ttf);
}

@font-face {
    font-family: FamiljenGrotesk-Bold;
    src: url(../font-families/FamiljenGrotesk-Bold.ttf);
}

:root {
    --black: #000;
    --white: #fff;
    --red: #E65300;
    --navy_blue: #073C4B;
}

/* general css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --navy_blue: #073C4B;
    font-family: FamiljenGrotesk-Regular;
}

a:hover {
    text-decoration: none;
}

body {
    overflow-x: hidden;
    background: #fff;
}

html {
    scroll-behavior: smooth;
}

/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: FamiljenGrotesk-Bold;
}

a,
p {
    font-size: 16px;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

img {
    width: 100%;
}

/* sider scrollbar */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.container {
    max-width: 1240px;
}

/* general padding and margins */

.p-120 {
    padding: 120px 0px;
}

.p-100 {
    padding: 100px 0px;
}

.p-80 {
    padding: 80px 0px;
}

.p-70 {
    padding: 70px 0px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-50 {
    margin-top: 50px;
}

.f-40 {
    font-size: 40px;
}

.f-30 {
    font-size: 30px;
}

.f-20 {
    font-size: 20px;
}

.color-red {
    color: var(--red);
}

.color-white {
    color: var(--white);
}

.color-blue {
    color: var(--navy_blue);
}


/* header starts */

.logo-desk {
    max-width: 210px;
}

.desktop-links {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 545px;
}

.links-box {
    width: 32%;
    border-left: 1px solid var(--red);
    padding-left: 15px;
}

.links-box .h_links {
    font-size: 16px;
    display: block;
    color: #000;
    text-transform: uppercase;
}

.links-box .h_links:hover {
    transition: all 0.2s linear;
    color: var(--red);
}

.links-box .h_links svg {
    width: 11px;
    margin: -3px 0px 0px 3px;
    fill: #000;
    transition: all 0.2s linear;
}

.h_links:hover svg {
    fill: var(--red);
}

.desktop_header {
    display: flex;
    justify-content: space-between;
}

.header-search input {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    padding: 0px;
    color: var(--red) !important;
    padding-right: 25px;
}

.header-search input,
.header-search input::placeholder {
    font-size: 16px;
    color: var(--red);
}

.header-search input:focus,
.header-search input:active:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.header-search button {
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.header-search button img {
    width: 16px;
}

.header-main {
    padding: 13px 0px;
}

.drop_menus {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    background: var(--red);
    max-width: 170px;
    padding: 10px 10px;
    opacity: 0;
    z-index: -1;
    transition: all 0.1s linear;
    left: 0px;
    /* bottom: -92px; */
    top: 25px;
    list-style-type: none;
    width: 100%;
}

.drop_menus:hover .custom-dropdown {
    opacity: 1;
    z-index: 2;
}

.custom-dropdown a {
    color: #000;
    font-size: 16px;
    display: block;
    transition: all 0.1s linear;
}

.custom-dropdown a:hover,
.custom-dropdown a.active {
    color: #fff;
}

.drop_menus.active .h_links {
    color: var(--red);
}

.drop_menus.active .h_links svg {
    fill: var(--red);
}

/* header end */

/* footer start */
.footer-box li,
.footer-box h6 {
    margin-bottom: 3px;
}

.footer-box a {
    color: var(--navy_blue);
    transition: all 0.4s linear;
    text-transform: capitalize;
    display: inline-block;
}

.footer-box a.active {
    text-decoration: underline;
    font-family: FamiljenGrotesk-Bold;
}

.footer-box a:hover {
    text-decoration: underline;
}

.footer-box h6 {
    color: var(--navy_blue);
    text-transform: capitalize;
    font-family: FamiljenGrotesk-SemiBold;
}

.footer-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
    justify-content: end;
}

.footer-box {
    width: 27%;
}

.footer-logo {
    max-width: 210px;
}

.social-icons a {
    width: 21px;
    margin-right: 5px;
    display: inline-block;
    transition: all 0.2s linear;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* ============= Home Page ============= */

.banner-1 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.h_banner_img {
    background-image: url(../placeholder-images/banner-img.webp);
}

.banner-1 .container {
    min-height: 620px;
    height: calc(100vh - 100px);
}

.banner-1 h1 {
    padding-top: 200px;
}

.banner-1 h1,
.banner-1 h1 span {
    color: #fff;
    font-size: 96px;
    font-family: FamiljenGrotesk-Bold;
}

.v-center,
.v-end,
.desktop-links,
.service-row,
.bio-row,
.fsearch-wrap,
.list_loctaion li,
.service_tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.v-center {
    align-items: center;
}

.v-end {
    align-items: end;
}


.highlighted {
    padding: 0px 0px;
    background: linear-gradient(to right, #E65300, #E65300) 0 50% no-repeat;
    transition: background-size .75s ease-in;
    -moz-transition: background-size .75s ease-in;
    -ms-transition: background-size .75s ease-in;
    -o-transition: background-size .75s ease-in;
    -webkit-transition: background-size .75s ease-in;
    background-position: 0% 82%;
}

[data-aos="example-anim2"] {
    background-size: 0% 85%;
    transition-property: background-size;
}

[data-aos="example-anim2"].aos-animate {
    background-size: 100% 85%;
}

.sub_h {
    font-size: 24px;
    text-transform: uppercase;
}

.top-h {
    max-width: 865px;
}

.top-h h2 {
    color: var(--navy_blue);
    line-height: normal;
    margin-top: 20px;
}


.highlighted-1 {
    padding: 0px 0px;
    background: linear-gradient(to right, #E65300, #E65300) 0 50% no-repeat;
    transition: background-size .75s ease-in;
    -moz-transition: background-size .75s ease-in;
    -ms-transition: background-size .75s ease-in;
    -o-transition: background-size .75s ease-in;
    -webkit-transition: background-size .75s ease-in;
    background-position: 0% 100%;
    color: #fff;
}

.highlighted-1[data-aos="example-anim2a"] {
    background-size: 0% 85%;
    transition-property: background-size;
}

.highlighted-1[data-aos="example-anim2a"].aos-animate {
    background-size: 100% 85%;
}

.btn-style img {
    width: 15px;
    margin-right: 25px;
    position: relative;
}

.btn-style {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 10px 20px 10px 13px;
    transition: all 0.3s linear;
    color: var(--red);
}

.btn-style span {
    color: var(--red);
    font-size: 14px;
    position: relative;
    display: inline-block;
    transition: all 0.3s linear;
}

.btn-style:hover span {
    color: var(--white);
}

.btn-style::before {
    content: '';
    position: absolute;
    background: var(--red);
    height: 100%;
    width: 40px;
    top: 0px;
    left: 0px;
    transition: all 0.3s linear;
}

.btn-style:hover::before {
    width: 100%;
}

.service_sec {
    background: #FFF0E8;
}

.top-h p {
    width: 75%;
    font-size: 20px;
    margin-top: 15px;
}

.service-row {
    row-gap: 30px;
    column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.serv-col {
    width: 30%;
    background: #FF7324;
    border-radius: 33px;
    padding: 30px;
    display: inline-flex;
    min-height: 346px;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s linear;
    position: relative;
}

.serve_hover_content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 33px;
    padding: 30px;
    background: #fff;
    transition: all 0.3s linear;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    border: 2px solid var(--red);
}

.serv-col .serve_hover_content h2 {
    margin: 0px 0px 0px 0px;
}

.serve_hover_content p {
    margin: 20px 0px;
}

.serv-col:hover .serve_hover_content {
    opacity: 1;
}

.service-icon {
    height: 75px;
    text-align: right;
}

.service-icon img {
    height: 100%;
    width: auto;
}

.serv-col h2 {
    font-family: FamiljenGrotesk-Medium;
    margin-top: 30px;
    font-size: 32px;
}

.btn-serv {
    text-align: end;
}

.btn-black.btn-serv a span {
    color: var(--navy_blue);
}

.btn-black.btn-serv a:hover span {
    color: #fff;
}

.highlighted-3 {
    padding: 0px 0px;
    background: linear-gradient(to right, #FF7324, #FF7324) 0 50% no-repeat;
    transition: background-size .75s ease-in;
    -moz-transition: background-size .75s ease-in;
    -ms-transition: background-size .75s ease-in;
    -o-transition: background-size .75s ease-in;
    -webkit-transition: background-size .75s ease-in;
    background-position: 0% 100%;
    color: #fff;
}

.highlighted-3[data-aos="example-anim2a"] {
    background-size: 0% 85%;
    transition-property: background-size;
}

.highlighted-3[data-aos="example-anim2a"].aos-animate {
    background-size: 100% 85%;
}

.highlighted-2 {
    padding: 0px 0px;
    background: linear-gradient(to right, #073C4B, #073C4B) 0 50% no-repeat;
    transition: background-size .75s ease-in;
    -moz-transition: background-size .75s ease-in;
    -ms-transition: background-size .75s ease-in;
    -o-transition: background-size .75s ease-in;
    -webkit-transition: background-size .75s ease-in;
    background-position: 0% 100%;
    color: #fff;
}

.highlighted-2[data-aos="example-anim2a"] {
    background-size: 0% 85%;
    transition-property: background-size;
}

.highlighted-2[data-aos="example-anim2a"].aos-animate {
    background-size: 100% 85%;
}

.carrer-img {
    width: 45%;
    margin-left: auto;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
}

.carrer-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.career_content {
    height: 100%;
}

.career_content h2 {
    color: #fff;
}

.career_content .top-h {
    padding: 50px 0px;
    max-width: 670px;
}

.career-sec {
    background: var(--red);
}

.btn-style.btn-white span {
    color: #fff;
}

.btn-style.btn-white::before {
    background: #fff;
}

.btn-style.btn-white:hover span {
    color: var(--red);
}

.career-sec {
    position: relative;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    transition: all 0.4s linear;
    height: 250px;
    object-fit: cover;
}

.blog-box {
    display: block;
}

.blog-box:hover .blog-img img {
    transform: scale(1.1);
}

.blog_date {
    font-size: 12px;
    padding: 7px 15px;
    font-family: FamiljenGrotesk-Regular;
    background: var(--red);
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: #fff;
}

.blog-title {
    font-family: FamiljenGrotesk-SemiBold;
    font-size: 13px;
    margin-top: 20px;
    color: var(--navy_blue);
}

.blog-row {
    row-gap: 30px;
}

.pro-title-1 {
    padding-left: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.internal-po-text {
    border-left: 2px solid var(--red);
    padding: 0px 0px 12px 25px;
}

.project-slide-wrap {
    background-image: url(../placeholder-images/project-h-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.project-slide-wrap::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(359deg, #031d25a1 29%, #fff0 65%);
    z-index: 0;
}

.project-slide-wrap .container {
    min-height: 660px;
    position: relative;
    z-index: 1;
}

.project-content .btn-style img {
    width: 15px;
}

.project-content h2 {
    font-family: FamiljenGrotesk-Bold;
    font-size: 40px;
    color: #fff;
}

.project-content p,
.pro-title-1 {
    font-family: FamiljenGrotesk-Regular;
    font-size: 24px;
    color: #fff;
}

.project-content p {
    max-width: 350px;
    margin-bottom: 20px;
    margin: 15px 0px 25px 0px;
}

.work-slider-1 .owl-dots {
    position: absolute;
    width: 100vw;
    right: 0px;
    max-width: 1180px;
    transform: translateX(-50%);
    left: 52%;
    top: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.work-slider-1 .owl-theme .owl-dots .owl-dot {
    transition: all 0.2s linear;
    width: 32%;
}

.work-slider-1 .owl-dot.active span {
    background: var(--red) !important;
}

.work-slider-1 .owl-dot span {
    margin: 5px 4px !important;
    width: 100% !important;
    height: 3px !important;
    display: block !important;
}

#counter {
    font-size: 14px;
    font-family: FamiljenGrotesk-Bold;
    color: var(--red);
    width: fit-content;
    z-index: 2;
    position: absolute;
    top: 44px;
    left: 0px;
}

.work-slider-1 {
    position: relative;
}


/* home page location slider */
.location-sec {
    overflow: hidden;
}

.section {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    overscroll-behavior: none;
    padding: 80px 0px 100px 0px;
}

.panel.panel-1 {
    min-width: auto;
    width: auto;
    margin-top: 240px;
}

.cards_wraper {
    display: flex;
    column-gap: 15px;
    margin-left: 20%;
}

.cards {
    display: block;
}

.cards_wraper .card-inner {
    width: 400px;
    border-left: 2px solid #D9D9D9 !important;
    padding-left: 15px;
    padding-bottom: 6px;
    transition: all 0.2s linear;
}

.cards_wraper .card-inner:hover {
    border-left: 2px solid var(--red) !important;
}

.location-sticky {
    position: absolute;
    z-index: 1;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.btn-sticky {
    position: absolute;
    z-index: 1;
    margin: 0 auto;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
}

.card-inner h4 {
    font-family: FamiljenGrotesk-Medium;
    color: var(--navy_blue);
    margin-top: 15px;
    width: fit-content;
    padding-bottom: 2px;
    transition: all 0.2s linear;
}

.cards_wraper .card-inner:hover h4 {
    color: var(--white);
    background: var(--red);
}

/* ================= Home Page End  ================= */


/* =================== About Us ==================== */

.banner_shadow {
    position: relative;
}

.banner_shadow::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #073c4b66 29%, #073c4b00 100%);
    z-index: 0;
}

.about_banner {
    background-image: url(../placeholder-images/about_bg.png);
}

.banner_text_wrap {
    position: relative;
    z-index: 1;
    padding-left: 12px;
}

.top-h .p_full {
    width: 90%;
}

.about_img img {
    border-radius: 24px;
}

.about-g_top {
    background: #FF7324;
    padding: 20px;
    display: inline-flex;
    height: 135px;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.about-g-icon {
    height: 27px;
    text-align: right;
}

.about-g-icon img {
    height: 100%;
    width: auto;
}

.about-g_top h2 {
    font-size: 24px;
    font-family: FamiljenGrotesk-Medium;
}

.about-g_box {
    padding: 0px 15px;
    border-left: 1px solid #FF7324;
    height: 100%;
}

.top-g-bottom {
    padding: 20px;
}

.top-g-bottom p {
    margin-bottom: 20px;
}

.top-g-bottom p:last-child {
    margin-bottom: 0px;
}

.bg_pink {
    background: #FFF0E8;
}

/* team section */

.team_box {
    display: block;
    padding: 0px 15px;
    border-left: 1px solid #D9D9D9;
    height: 100%;
}

.team_box:hover {
    border-left: 1px solid var(--red);
}

.team_profile {
    overflow: hidden;
}

.team_profile img {
    /* height: 292px; */
    object-fit: cover;
    transition: all 0.3s linear;
}

.team_box:hover .team_profile img {
    transform: scale(1.07);
}

.member_name {
    font-size: 18px;
    margin-top: 20px;
    width: fit-content;
    color: var(--red);
    padding-bottom: 2px;
    transition: all 0.2s linear;
    font-family: FamiljenGrotesk-Medium;
    text-transform: uppercase;
}

.team_box:hover .member_name {
    color: var(--white);
    background: var(--red);
    padding: 0px 2px 2px;
}

.member_designation {
    color: #586F7C;
}

.team_members .row {
    row-gap: 50px;
}

.top-h.top-h-1 {
    max-width: 1030px;
}

.about-p_accr .accre-img img{
    width: auto;
    height: 160px;
}

.accre-img img {
    width: auto;
    height: 92px;
}

.accred-box {
    height: 100%;
}

.accred-box h6 {
    font-family: FamiljenGrotesk-SemiBold;
    font-size: 16px;
    margin: 25px 0px 15px 0px;
}

.accred-box p {
    font-size: 14px;
}

.accredation_row {
    row-gap: 50px;
}

.accreditation_sec {
    border-bottom: 8px solid var(--red);
}

/* =================== Team Page ==================== */

.team_banner {
    background-image: url(../placeholder-images/team_page_bg.png);
}

.top-h.top-h-2 {
    max-width: 900px;
}

.career-team .carrer-img {
    width: 39%;
}

.career-team .career_content .top-h {
    max-width: 820px;
}

/* ============== Employee section =============== */
.employee_banner .container {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 610px;
}

.employee_banner {
    position: relative;
    background: var(--red);
}

.employee_name {
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1.1;
    font-family: FamiljenGrotesk-SemiBold;
}

.employee_designation {
    line-height: 1.1;
    font-size: 40px;
    font-family: FamiljenGrotesk-Regular;
}

.employee_email {
    font-size: 20px;
    margin-top: 20px;
}

.employee-image {
    height: 100%;
    width: 480px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.employee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-employee {
    width: 100%;
    height: 100%;
    position: relative;
}


.location-pin {
    position: absolute;
    bottom: 50px;
    left: 0px;
    background: var(--red);
    color: #fff;
    font-family: FamiljenGrotesk-Medium;
    font-size: 20px;
    border-radius: 0px 8px 8px 0px;
    padding: 14px 27px 14px 22px;
}

.location-pin img {
    width: 24px;
    margin-right: 20px;
}

.bio-row {
    flex-wrap: wrap;
}

.profile-detail {
    font-family: FamiljenGrotesk-Medium;
    font-size: 25px;
    line-height: normal;
    margin: 20px 0px 15px 0px;
}

.p-sub_detail {
    font-size: 20px;
}

.profile_about h6 {
    color: var(--red);
    text-transform: uppercase;
    font-size: 24px;
    font-family: FamiljenGrotesk-SemiBold;
}

.bio-col-1 {
    width: 53%;
    /* padding-right: 40px; */
    padding: 0px 40px 80px 0px;
}

.bio-col-2 {
    width: 47%;
}

.bio_section {
    border-bottom: 8px solid var(--red);
    position: relative;
}

.bio_section::before {
    content: '';
    position: absolute;
    background: #FFF0E8;
    /* height: 600px; */
    height: 100%;
    max-height: 100%;
    width: 47%;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.qualif-wrap h2 {
    font-size: 20px;
    color: var(--red);
    margin-bottom: 40px;
}

.qualif-wrap ul li {
    position: relative;
    font-family: FamiljenGrotesk-Medium;
    font-size: 18px;
    padding-left: 34px;
    margin-bottom: 50px;
    text-align: left;
}

.qualif-wrap ul li:last-child {
    margin-bottom: 0px;
}

.qualif-wrap ul li::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 8px;
    background: #FF7324;
    border-radius: 50px;
}

.qualif-wrap {
    padding-left: 50px;
}

.scrolling-area {
    max-height: 370px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 20px;
    direction: rtl;
}

.scrolling-element-inside {
    padding-right: 0px;
}

.scrolling-area::-webkit-scrollbar {
    width: 4px;
    border-radius: 8px;
}

.scrolling-area::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

.scrolling-area::-webkit-scrollbar-thumb {
    background: #DAB49E;
    border-radius: 8px;
}

.scrolling-area::-webkit-scrollbar-thumb:hover {
    background: #DAB49E;
}

/* ============== Project page =============== */

.project_banner {
    background-image: url(../placeholder-images/project_banner.png);
}

.fsearch-wrap {
    align-items: center;
}

.filter_bar {
    background: #D7E0E2;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 15px);
}

.icon-search {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    margin-top: -4px;
}

.fsearch-wrap input,
.fsearch-wrap input::placeholder {
    color: var(--red);
    font-size: 16px;
}

.fsearch-wrap input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--red);
    padding: 7px 0px;
    width: 0px;
    transition: all 0.5s linear;
}

.fsearch-wrap input:focus,
.fsearch-wrap input:active:focus {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--red);
    outline: none;
}

.form_search_bar input.active {
    width: 250px;
}

.project-box {
    display: block;
    padding: 0px 15px;
    border-left: 1px solid #D9D9D9;
    height: 100%;
    transition: all 0.2s linear;
}

.project-box:hover {
    border-left: 1px solid var(--red);
}

.image_project {
    overflow: hidden;
}

.image_project img {
    height: 240px;
    object-fit: cover;
    transition: all 0.3s linear;
}

.project-box:hover .image_project img {
    transform: scale(1.07);
}

.title_project {
    font-size: 18px;
    color: var(--navy_blue);
    margin-top: 10px;
    font-family: FamiljenGrotesk-Medium;
    transition: all 0.2s linear;
    width: fit-content;
}

.project-row .row,
.news-row .row,
.contact-row {
    row-gap: 50px;
}

/* ============== service page =============== */
.service_banner {
    background-image: url(../placeholder-images/service-banner-bg.png);
}

.service_listing,
.news_listing {
    border-bottom: 8px solid var(--red);
}


/* ============== Insight page =============== */

.news_banner {
    background-image: url(../placeholder-images/news-bg.png);
}

.image-news {
    position: relative;
}

.insight-content .title_project {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.insight-content {
    position: relative;
    padding-bottom: 45px;
}

.insight_date {
    color: #586F7C;
    font-size: 15px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.insight-location {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--red);
    color: #fff;
    font-family: FamiljenGrotesk-Medium;
    font-size: 14px;
    border-radius: 0px 0px;
    padding: 9px 21px 9px 16px;
    width: 100%;
}

.insight-location img {
    width: 18px !important;
    height: auto !important;
    margin-right: 10px;
}

.project-box:hover .title_project {
    background: var(--red);
    color: #fff;
}


/* ============== Resources page =============== */

.resources_banner {
    background-image: url(../placeholder-images/resource-banner.png);
}

.resource-row .title_project,
.course-row .title_project {
    font-size: 24px;
    margin-top: 20px;
}

.resource-row .project-box,
.course-row .project-box {
    display: block;
    padding: 0px 0px 0px 25px;
    border-left: 2px solid #586F7C;
    height: auto;
}

.course-row .project-box:hover {
    border-left: 2px solid var(--red);
}

.resource-row .row,
.course-row .row {
    row-gap: 80px;
}

.resource-row .project-box img {
    height: 412px;
    object-fit: cover;
}

.course-row .project-box img.play-btn {
    height: auto;
    width: 80px;
}

.resource-row1 .image_project img {
    height: 311px;
    object-fit: cover;
    transition: all 0.3s linear;
}


/* ============== Course page =============== */
.video_det {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px 40px 0px;
}

.video-wrapper {
    border-bottom: 8px solid var(--red);
}

.video_det_text .title_project {
    font-family: FamiljenGrotesk-Medium;
    font-size: 24px;
    color: #586F7C;
}

.video_det_text p {
    color: var(--navy_blue);
    font-size: 15px;
}

.course_banner {
    background-image: url(../placeholder-images/course-bg.png);
}

.course-row .btn-serv,
.detail_location .btn-serv {
    text-align: left;
}

.course-date {
    font-size: 15px;
    color: #586F7C;
    margin-top: 15px;
}

.course-video {
    position: relative;
}

.course-location {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--red);
    color: #fff;
    font-family: FamiljenGrotesk-Bold;
    font-size: 16px;
    border-radius: 0px 0px;
    padding: 9px 21px 9px 16px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 115px;
}

.image_project img {
    object-fit: cover;
}


/* ============== Video page =============== */

.video-container {
    position: relative;
}

.video-container .video-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper #circle-play-b svg {
    width: 117px;
    height: 117px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 1;
}


/* ============== Contact Page =============== */

.contact_banner {
    background-image: url(../placeholder-images/contact-bg.png);
}

.country_h {
    font-family: FamiljenGrotesk-Medium;
    font-size: 32px;
    color: var(--red);
    margin-bottom: 35px;
}

.contact-img {
    overflow: hidden;
}

.contact-img img {
    transition: all 0.4s linear;
}

.project-box:hover .contact-img img {
    transform: scale(1.04);
}

.contact-row .row {
    margin-bottom: 70px;
}

.contact-row .row:last-child {
    margin-bottom: 0px;
}

.contact-row .row {
    row-gap: 50px;
}

.contact_detail_bg {
    background-image: url(../placeholder-images/contact_detail_bg.png);
}

.contact_detail_sec {
    background: #FFF0E8;
}

.detail_location h2 {
    font-size: 24px;
    color: var(--red);
}

.list_loctaion p,
.list_loctaion p span {
    font-size: 20px;
    color: var(--navy_blue);
}

.list_loctaion p span {
    font-family: FamiljenGrotesk-SemiBold;
}

.list_loctaion li {
    padding: 12px 0px;
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: center;
}

.loc_icons {
    background: #FBD5C1;
    width: 58px;
    height: 47px;
    padding: 17px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 28px;
}

.loc_icons img {
    height: auto;
    max-height: 25px;
}

/* contact form */

.contact-form input,
.contact-form input::placeholder,
.contact-form textarea,
.contact-form textarea::placeholder {
    font-weight: 400;
    font-size: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #073C4B;
}

.contact-form input,
.contact-form textarea {
    color: #073C4B !important;
}

.contact-form input:focus,
.contact-form input:active:focus,
.contact-form textarea:focus,
.contact-form textarea:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.contact-form input,
.contact-form textarea {
    height: 54px;
    background-color: #FBD5C1 !important;
    border: none;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 10px 15px 12px 15px;
}

.contact-form textarea {
    height: 230px;
    width: 100%;
    margin-bottom: 0px;
    resize: none;
}

.contact-form {
    position: relative;
}

.contact-map {
    text-align: end;
}

.contact-map iframe {
    width: 505px;
    height: 505px;
    margin-right: 0px;
    margin-left: auto;
}

.btn-style.btn_submit {
    position: absolute;
    bottom: 6px;
    background: #fff;
    right: 0px;
    padding: 10px 30px 10px 13px;
}

.btn-style.btn_submit span {
    color: var(--navy_blue) !important;
}

.btn-style.btn_submit:hover span {
    color: var(--white) !important;
}

.btn-style.btn_submit img {
    margin-right: 35px;
}

/* mobile header start */
.mobile_header {
    display: none;
}

.home_mobie_loc {
    display: none;
}

/* ========== project detail page =========== */

.project_detail_bg {
    background-image: url(../placeholder-images/pro_detail_bg.png);
}

.project_detail_bg.pd_bg-1 {
    background-image: url(../placeholder-images/calculator-placeholder-images-bg-1.jpg);
}

.project_detail_bg.pd_bg-2 {
    background-image: url(../placeholder-images/calculator-placeholder-images-bg-2.jpg);
}

.project_detail_bg.banner-1 h1,
.insight_detail_bg.banner-1 h1,
.expertise_bg.banner-1 h1 {
    color: #fff;
    font-size: 48px;
    text-transform: capitalize;
    font-family: FamiljenGrotesk-SemiBold;
}

.project_detail_bg.banner-1 h1 span {
    font-size: 48px;
}

.pro_d_location {
    font-size: 20px;
    font-family: FamiljenGrotesk-Medium;
    color: #fff;
    background: var(--red);
    width: fit-content;
    padding: 1px 12px 3px 12px;
    margin-top: 20px;
}

.pro_detail_2 .bio-col-1 {
    max-width: 840px;
    width: auto;
    padding: 0px;
}

.pro_detail_2 {
    border-bottom: 8px solid var(--red);
}

.pro_detail_2 .profile-detail {
    font-family: FamiljenGrotesk-Medium;
    font-size: 32px;
}

.pro_detail_2 .container-fluid {
    position: relative;
}

.service_tags {
    align-items: center;
    background: #D7E0E2;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px 20px;
}

.service_tag_1 {
    color: var(--red);
    font-size: 20px;
    margin-right: 30px;
}

.service_tag_2 {
    color: var(--navy_blue);
    font-size: 20px;
}

.service_tag_2 {
    align-items: center;
    display: block;
    border: none;
    background: transparent;
    border-radius: 0px;
}

.service_tag_2:focus,
.service_tag_2:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.tag_flex,
.service_tag_2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.tag_flex {
    width: 35px;
    height: 35px;
    background: var(--red);
    padding: 9px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

/* insight detail page */

.insight_detail_bg {
    background-image: url(../placeholder-images/insight_detail.png);
}

.pro_detail_2.insight_detail {
    border-bottom: none;
}

.detail_insight_wrap p {
    font-size: 20px;
    max-width: 840px;
    padding: 0px 20px;
}

.detail_insight_wrap h2 {
    font-size: 24px;
    padding: 0px 20px;
    background: #FBE2D4;
    margin-bottom: 15px;
    font-family: FamiljenGrotesk-Medium;
    padding: 4px 20px 8px 20px;
}

.detail_innner {
    margin-bottom: 35px;
}

.list_detail {
    max-width: 500px;
    margin: 30px auto 50px auto;
}

.list_detail ul {
    border-left: 2px solid var(--red);
}

.list_detail li {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
    font-family: FamiljenGrotesk-Regular;
}

.list_detail li::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: -9px;
    top: 9px;
    background: #FF7324;
    border-radius: 50px;
}

.detail_innner .list_detail {
    margin: 30px auto 50px 50px;
}

.other_updates {
    background: #586F7C;
}

.other_updates .insight_date,
.other_updates .title_project {
    color: #fff;
}

.other_updates .project-box:hover .title_project {
    color: #fff
}

.other_updates .project-box {
    border-left: 1px solid #fff;
}

/* expertise page */

.expertise_bg {
    background-image: url(../placeholder-images/expertise_bg.png);
}

.expertise_bg.thankyou-bg {
    background-image: url(../placeholder-images/thankyou.jpg);
}

.expertise_orange {
    padding: 50px 0px;
    position: relative;
    background: #FF7324;
}

.expertise_orange p {
    font-size: 24px;
    color: #fff;
    max-width: 55%;
}

.diagram_text {
    color: var(--navy_blue);
    font-size: 24px;
}

.experties_bar {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: auto;
    max-width: 35%;
}

.outline_list h4 {
    color: #E65300;
    font-size: 28px;
    margin-bottom: 40px;
    font-family: FamiljenGrotesk-Medium;
}

.expertise_sustainable {
    background: #FFF0E8;
}

.expertise_detail .top-h h6 {
    font-size: 28px;
    margin-top: 20px;
    font-family: FamiljenGrotesk-Medium;
}

.pro_detail_2.expertise_detail {
    border-bottom: none;
}

.pro_detail_2.expertise_detail .top-h,
.w-730,
.expertise_sustainable .top-h p {
    max-width: 730px;
}

.expertise_sustainable .top-h p {
    width: auto;
    margin: 0px 0px 25px 0px;
}

.top-h p span {
    color: var(--red);
    font-family: FamiljenGrotesk-SemiBold;
}

.sustainable_list ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sustainable_list li {
    position: relative;
    font-size: 20px;
    width: 48%;
    padding: 7px 0px 7px 30px;
    text-align: left;
    border-bottom: 1px solid var(--red);
}

.sustainable_list li::before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0px;
    top: 17px;
    background: #FF7324;
    border-radius: 50px;
}


/* ============= calcuators ============ */

.calculator_box h2 {
    margin-bottom: 25px;
    text-transform: capitalize;
}

.calculator_box .list_detail {
    margin: 0px 0px 0px 10px;
    width: 100%;
    max-width: 100%;
}

.calculator_box .list_detail ul {
    margin-bottom: 0px;
}

.calculator_box p {
    font-size: 20px;
    margin-bottom: 20px;
}

.calculator_box p br {
    margin-bottom: 20px;
}

.calculator_box .outline_list {
    margin: 0px 0px 25px 0px;
}

.calculator_box .outline_list h4 {
    margin-bottom: 25px;
}

.list-text {
    margin-bottom: 20px;
    padding: 0px;
}

.list-text li {
    font-size: 20px;
    margin-bottom: 10px;
    list-style-type: none;
}

.list-text.list_text_disc li {
    list-style-type: disc;
}

.list-text.list_text_disc {
    padding-left: 25px;
}

.list-text li:last-child {
    margin-bottom: 0px;
}

.graph_calculator {
    max-width: 820px;
    margin: 0 auto 25px auto;
}

.calculator_box .sub_h {
    text-transform: capitalize;
}

.calculator_box {
    margin-bottom: 40px;
}

.sec_calc .container .calculator_box:last-child {
    margin-bottom: 0px;
}

.sec_calc {
    border-bottom: 8px solid var(--red);
}

.form_box1 {
    margin: 0px auto 70px auto !important;
    padding: 40px 30px;
    max-width: 820px;
    border-radius: 7px;
    color: #2e2e2e;
    margin-bottom: 20px;
    box-shadow: 0px 24px 10px #dedcdc94;
}

.calculator_top h4 {
    font-size: 25px;
    color: var(--red);
}

.calculator_top .p-top {
    font-size: 20px;
}

.calculator_row {
    align-items: center;
    margin-bottom: 20px;
}

.calculator-form .btn-style.btn_submit,
.table-inner-form .btn-style.btn_submit {
    position: relative;
    bottom: 0px;
    right: auto;
}

.table-inner-form .btn-style.btn_submit span {
    text-transform: uppercase;
}

.calculator-form {
    margin-top: 50px;
}

.area_text {
    margin-top: 40px;
    margin-bottom: 40px;
}

.area_text p,
.calc_heading {
    font-size: 16px;
}

.p_results {
    color: var(--red);
    font-weight: 500;
}

.field_calc input:focus,
.field_calc input:active:focus,
.field_calc select:focus,
.field_calc select:active:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #D9D9D9;
}

.field_calc input,
.field_calc select {
    height: 54px;
    background-color: transparent !important;
    border: 1px solid #D9D9D9;
    border-radius: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    padding: 10px 15px 12px 15px;
}

.field_calc input,
.field_calc input::placeholder,
.field_calc select {
    color: var(--navy_blue);
}

.table_heading {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: var(--red);
}

.table-orange {
    background: var(--red);
    color: #fff;
}

.table-orange th {
    border: none;
}

.heading_section {
    display: inline-block;
    margin: 0px 59px;
}

.custom-tb1 input:focus,
.custom-tb1 input:active:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #ced4da;
}

.table_wrp_main .table>tbody {
    vertical-align: baseline;
}

.custom-tb1 {
    table-layout: fixed;
    text-align: center;
    width: 1215px;
    margin-bottom: 20px;
}

.table_wrp_main::-webkit-scrollbar {
    height: 6px;
}

.table_wrp_main::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.table_wrp_main::-webkit-scrollbar-thumb {
    background: var(--red);
}

.table_wrp_main::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.table_wrp_main {
    margin-bottom: 30px;
}

.table-inner-form {
    margin-bottom: 30px;
}

/* service detail new pages */
.expertise_orange.serv_orange p {
    max-width: 1000px;
}

.serve_detail_img {
    margin: 35px auto 25px auto;
}

.calculator_box.sev_det_box h2 {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.serv_img_grid {
    row-gap: 30px;
}

.calculator_box.sev_det_box {
    margin-bottom: 0px;
}

.r-gap_30 {
    row-gap: 30px;
}

.ftir_machine {
    margin: 50px 0px 40px 0px;
}

.calculator_box .ftir_machine p {
    margin-bottom: 0px;
}

.serv_img_grid {
    margin-top: 50px;
    margin-bottom: 40px;
}

.bar_bottom {
    border-bottom: 8px solid var(--red);
}

.calculator_box.sev_det_box .container p:last-child {
    margin-bottom: 0px;
}

.calculator_box.sev_det_box p a,
.qualification_serv-2 li a {
    font-size: 20px;
    color: var(--red);
}

.calculator_box.sev_det_box p a:hover {
    color: var(--red);
}

.qualification_serv {
    margin-top: 70px;
}

.qualification_serv-2 {
    margin-top: 35px;
}

.qualification_serv-2 ul li:last-child {
    margin-bottom: 0px;
}

/* career page */

.form_box1.career_form {
    max-width: 100%;
}

.career_form .field_calc label {
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--navy_blue);
}

.career_form .field_calc input::placeholder,
.career_form .field_calc input::placeholder select {
    color: #aaaaaa;
}

.career_form .calculator_row {
    row-gap: 30px;
}

.career_form .field_upload input {
    position: relative;
}

.career_form .field_upload input::before {
    content: '';
    left: 0px;
    height: 100%;
    position: absolute;
    width: 115px;
    bottom: 0px;
    z-index: -1;
    background: #e9ecef;
    transition: all 0.1s linear;
}

.career_form .field_upload input:hover::before {
    background: #dde0e3;
}

.career_form.form_box1 {
    margin: 0px !important;
}

.career_form .form-select {
    padding-right: 30px;
}


.service_tags {
    position: relative;
    width: fit-content;
    margin-left: auto;
}
.service_tag_2 {
    text-align: left;
}
.service_tag_1 {
    min-width: 130px;
}
.tag_flex {
    min-width: 35px;
    max-width: 35px;
}




/* ============= Responsive ================ */
@media only screen and (min-width: 1680px) {
    .career-sec {
        position: relative;
        height: 66vh;
    }

    .project-slide-wrap .container {
        min-height: 90vh;
    }

    .cards_wraper .card-inner {
        width: 550px;
    }

}

@media only screen and (min-width: 1920px) {

    /* home locatio slider */
    .cards_wraper {
        padding: 50px 50px 50px 50px;
        margin-left: 20%;
    }

    .employee-image {
        width: 560px;
    }

    .employee_banner .container {
        min-height: 700px;
    }

    .custom_container {
        max-width: 1920px;
        margin: 0 auto;
        position: relative;
    }

    .expertise_orange {
        padding: 70px 0px;
    }
}

@media only screen and (max-width: 1365px) {
    .container {
        max-width: 95%;
    }

    .work-slider-1 .owl-dots {
        max-width: 88%;
    }

    .top-h h2 {
        margin-top: 10px;
    }

    .panel.panel-1 {
        margin-top: 210px;
    }

    .banner-1 .container {
        height: auto;
        min-height: 450px;
    }

    /* ========= Team page ======= */

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 80px;
    }

    .employee_name {
        font-size: 55px;
    }

    .employee_designation {
        font-size: 34px;
    }

    /* employee page */
    .employee_banner .container {
        min-height: 520px;
    }

    .employee-image {
        width: 34%;
    }

    .employee-content {
        max-width: 50%;
    }
}

@media only screen and (max-width: 1199px) {
    .banner-1 .container {
        min-height: 450px;
        height: auto;
    }

    .banner-1 h1 {
        padding-top: 120px;
    }

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 75px;
    }

    .p-80 {
        padding: 60px 0px;
    }

    .f-40,
    .project-content h2 {
        font-size: 33px;
    }

    .f-30 {
        font-size: 26px;
    }

    .project-slide-wrap .container {
        min-height: 570px;
    }

    .project-content {
        padding-top: 180px;
    }

    .project-content p,
    .pro-title-1 {
        font-size: 20px;
    }

    .serv-col h2 {
        font-size: 25px;
    }

    .serv-col {
        min-height: 300px;
    }

    .service-icon {
        height: 60px;
    }

    /* location */
    .section {
        padding: 60px 0px 90px 0px !important;
    }

    .career_content .top-h {
        max-width: 50%;
    }

    .top-h p {
        width: 100%;
        font-size: 18px;
        margin-top: 15px;
    }

    .footer-links {
        justify-content: space-between;
        padding-right: 40px;
    }

    .cards_wraper {
        margin-left: 15%;
    }

    /* ========= about page ======= */

    .mt-80 {
        margin-top: 60px;
    }

    .mt-70 {
        margin-top: 50px;
    }

    .p-100 {
        padding: 70px 0px;
    }

    .mt-100 {
        margin-top: 70px;
    }

    /* ========= Team page ======= */

    .career-team .career_content .top-h {
        max-width: 56%;
    }

    /* team page */
    .employee_banner .container {
        min-height: 520px;
    }

    .employee-image {
        width: 40%;
    }

    .employee_name {
        font-size: 50px;
    }

    .employee_designation {
        font-size: 30px;
    }

    .p-sub_detail {
        font-size: 18px;
    }

    .profile-detail {
        font-size: 22px;
    }

    /* =============== project page =============== */
    .image_project img {
        height: 180px;
    }

    .play-btn,
    .play-button-wrapper #circle-play-b svg {
        width: 80px;
    }

    /* ========= Contact page ======= */

    .contact-map iframe {
        width: 100%;
    }

    /* ========= project detail page ======= */

    .pro_detail_2 .profile-detail {
        font-size: 28px;
    }

    .service_tag_1,
    .service_tag_2 {
        font-size: 18px;
    }

    .serve_hover_content p {
        font-size: 15px;
        line-height: normal;
    }

    /* reource style */
    .resource-row1 .image_project img {
        height: 250px;
    }

    .bio-col-1 {
        padding: 0px 40px 60px 0px;
    }


}

@media only screen and (max-width: 991px) {

    .logo-desk,
    .footer-logo {
        max-width: 160px;
    }

    .desktop-links {
        width: 475px;
    }

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 65px;
    }

    .f-40,
    .project-content h2 {
        font-size: 28px;
    }

    .f-30 {
        font-size: 22px;
    }

    .sub_h {
        font-size: 22px;
    }

    .project-slide-wrap .container {
        min-height: auto;
    }

    .service-row {
        row-gap: 30px;
        column-gap: 15px;
    }

    .serv-col {
        width: 48%;
        min-height: 270px;
        border-radius: 20px;
        padding: 20px;
    }

    .serve_hover_content {
        border-radius: 20px;
    }

    .serv-col h2 {
        font-size: 20px;
    }

    .cards_wraper {
        margin-left: 10%;
    }

    .blog-img img {
        height: 200px;
    }

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 50px;
    }

    /* ======== about us page ========== */
    .about_img img {
        border-radius: 15px;
    }

    .f-20 {
        font-size: 18px;
    }

    .list-text li,
    .calculator_box p {
        font-size: 18px;
    }

    .about-g_top {
        height: 120px;
        padding: 20px 15px;
    }

    .top-g-bottom {
        padding: 20px 15px;
    }

    .top-g-bottom p.f-20 {
        font-size: 17px;
    }

    .list-text li,
    .calculator_box p {
        font-size: 17px;
    }

    /* ======== Team page ========== */

    .p-70 {
        padding: 50px 0px;
    }

    .employee_banner .container {
        min-height: 390px;
    }

    .employee_name {
        font-size: 36px;
    }

    .employee_designation {
        font-size: 27px;
    }

    .profile-detail {
        font-size: 20px;
    }

    .qualif-wrap {
        padding-left: 20px;
    }

    /* ============= project page ========== */
    .image_project img {
        height: 210px;
    }

    /* ========= Contact page ======= */
    .contact-map {
        margin-bottom: 40px;
    }

    .det_loc_row {
        flex-direction: column-reverse;
    }

    /* employee page */
    .location-pin {
        bottom: 30px;
        font-size: 20px;
        padding: 7px 25px 7px 17px;
    }

    /* news page */
    .detail_insight_wrap h2 {
        font-size: 20px;
    }

    .detail_insight_wrap p,
    .list_detail ul li {
        font-size: 17px;
    }

    .expertise_orange p,
    .diagram_text {
        font-size: 20px;
    }

    /* resource-style */
    .resource-row1 .image_project img {
        height: 190px;
    }

    /* calculator page */

    .custom-tb1 {
        width: 1075px;
    }

    .heading_section {
        margin: 0px 43px;
    }

    .calculator_box.sev_det_box p a,
    .qualification_serv-2 li a {
        font-size: 17px;
    }
}

@media only screen and (max-width: 767px) {
    .image_project img {
        /* height: auto; */
        height: 320px;
    }

    .resource-row .title_project {
        font-size: 20px;
        margin-top: 15px;
    }

    .country_h {
        margin-bottom: 22px;
    }

    /* ============ mobile header ========== */
    .desktop-links {
        display: none;
    }

    .mobile_header {
        display: block;
        align-self: center;
    }

    .header-main {
        padding: 10px 0px;
    }

    .hamburger_menu {
        border: none;
        background: transparent;
        width: 39px;
    }

    .mobile-menu .offcanvas-end {
        width: 350px;
    }

    .mobile-menu .offcanvas-body {
        padding: 0px;
        background: #FFF0E8;
    }

    .page-side-bar {
        padding: 40px 40px 40px 35px;
        text-align: left;
        position: relative;
        height: 100vh;
    }

    .logo-side {
        padding-bottom: 30px;
        margin: -17px 0px 40px 0px;
        border-bottom: 1px solid var(--navy_blue);
    }

    .side-bar-list li a {
        padding: 15px 0px;
        border-bottom: 1px solid var(--navy_blue);
        transition: all 0.3s linear;
        text-decoration: none;
        color: var(--navy_blue);
        display: block;
        text-transform: uppercase;
        font-size: 18px;
    }

    .side-bar-list li a:hover {
        color: var(--red) !important;
        padding: 15px 0px 15px 20px;
        border-bottom: 1px solid var(--navy_blue);
    }

    .logo-side img {
        width: 110px;
    }

    .btn-close_menu {
        width: auto;
        height: auto;
        padding: 0px;
        color: #000;
        background: none;
        opacity: 1 !important;
        position: absolute;
        right: 20px;
        top: 20px;
        border: none;
        box-shadow: none !important;
    }

    .btn-close_menu:focus,
    .btn-close_menu:active:focus {
        box-shadow: none;
    }

    .btn-close_menu svg {
        fill: var(--red);
        width: 22px;
        height: 22px;
    }

    .nav-logo {
        width: 100px;
    }

    .pro-right-accordion .accordion-item {
        border: none;
        border-radius: 0px;
        border-bottom: none !important;
        background: transparent;
    }

    .pro-right-accordion .accordion-item ul {
        padding: 0px 20px;
    }

    .pro-right-accordion .accordion-header {
        margin: 0px !important;
    }

    .pro-right-accordion button {
        text-transform: uppercase;
        border-bottom: 1px solid var(--navy_blue);
        padding-right: 0px;
        color: var(--navy_blue) !important;
        background: transparent !important;
        padding-left: 0;
        font-family: FamiljenGrotesk-Regular;
        font-size: 18px;
        border-radius: 0px !important;
    }

    .pro-right-accordion button:focus,
    .pro-right-accordion button:active:focus {
        box-shadow: none;
        outline: none;
        background: transparent !important;
        border-bottom: 1px solid var(--navy_blue);
    }

    .pro-right-accordion .accordion-button::after {
        background-image: url(../placeholder-images/black-down.svg);
        background-size: 16px;
        margin-bottom: -10px;
    }

    .pro-right-accordion .accordion-button:not(.collapsed)::after {
        background-image: url(../placeholder-images/black-up.svg);
        transform: none;
        background-size: 16px;
    }

    .pro-right-accordion .card-body {
        padding: 0px;
    }

    /* home */
    .work-slider-1 .owl-theme .owl-dots .owl-dot {
        width: 30%;
    }

    .work-slider-1 .owl-dots {
        max-width: 78%;
    }

    .banner-1 .container {
        min-height: 450px;
        height: auto;
        max-height: 100%;
    }

    .service-row {
        flex-direction: column;
    }

    .serv-col {
        width: 100%;
        min-height: 270px;
        border-radius: 15px;
        max-width: 320px;
        margin: 0 auto;
    }

    .serve_hover_content {
        border-radius: 15px;
    }

    #section-1 {
        display: none;
    }

    .home_mobie_loc {
        display: block;
        padding-top: 60px;
    }

    .home_mobie_loc .row {
        row-gap: 40px;
        margin-top: 40px;
    }

    .blog-img img {
        height: 250px;
    }

    .h-blog-row {
        row-gap: 40px;
    }

    .blog-title {
        font-size: 14px;
        margin-top: 15px;
    }

    .carrer-img {
        width: 100%;
        margin-left: auto;
        position: relative;
        right: auto;
        top: auto;
        height: auto;
    }

    .career_content .top-h {
        max-width: 100%;
    }

    .footer-links {
        justify-content: space-between;
        padding-right: 0px;
        flex-direction: column;
        margin-top: 30px;
    }

    footer.p-70 {
        padding: 50px 0px 30px 0px;
    }

    .footer-box {
        width: 100%;
    }

    /* team page */
    .career-team .career_content .top-h {
        max-width: 100%;
    }

    .career-team .carrer-img {
        width: 100%;
    }

    /* employee page */
    .bio-row {
        flex-direction: column-reverse;
    }

    .bio-col-2,
    .bio-col-1 {
        width: 100%;
    }

    .bio-col-1 {
        margin-top: 50px;
    }

    .qualif-wrap {
        padding-left: 0px;
    }

    .bio_section::before {
        height: 550px;
        width: 100%;
    }

    .bio-col-1 {
        margin-top: 100px;
        padding-right: 0px;
    }

    .employee_banner .container {
        min-height: 300px;
    }

    .employee_name {
        font-size: 30px;
    }

    .employee_designation {
        font-size: 20px;
    }

    .employee_email {
        font-size: 18px !important;
        margin-top: 15px;
    }

    /* project detail */
    .pro_detail_2 .bio-col-1 {
        margin-top: 50px;
    }

    /* about page */
    .p-100 {
        padding: 60px 0px;
    }

    .about_img img {
        border-radius: 15px;
        height: 200px;
        object-fit: cover;
    }

    .mt-100 {
        margin-top: 60px;
    }

    .about_grid .row {
        row-gap: 30px;
    }

    .about-g_box {
        max-width: 425px;
        margin: 0 auto;
    }

    .accred-box {
        max-width: 425px;
    }

    /* insight detail */
    .list_detail ul li:last-child {
        margin-bottom: 0px;
        padding-bottom: 30px;
    }

    .list_detail ul,
    .list_detail {
        margin: 0px;
    }

    .new_bullets .col-md-6:last-child ul li:last-child {
        padding-bottom: 0px;
        margin-bottom: 30px;
    }

    .detail_innner .list_detail {
        margin: 30px 15px 50px 15px;
    }

    .new_bullets {
        margin: 0px;
    }

    .list_detail li {
        padding-left: 30px;
    }

    /* resource style */
    .resource-row1 .image_project img {
        height: 270px;
    }

    .resource-row1 .row {
        row-gap: 30px;
    }

    .calc_heading {
        margin-bottom: 10px;
    }

    /* services detail new */
    .ftir_machine {
        margin: 30px 0px 25px 0px;
    }

    .serv_img_grid {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .banner_text_wrap {
        padding-right: 12px;
    }

    .calculator_box.sev_det_box .list_detail {
        margin: 0px 0px 0px 0px;
    }

    .qualification_serv-2 {
        margin-top: 25px;
    }

    .calculator_row.area_text p {
        margin-bottom: 10px;
    }

    /* career page */
    .career_form .btn-style.btn_submit.mt-5 {
        margin-top: 20px !important;
    }

    .career_form .field_upload input::before {
        width: 116px;
    }

    .about-p_accr {
        text-align: center;
    }
}


@media only screen and (max-width: 575px) {

    .banner-1 h1 br,
    .banner-1 h1 span br {
        display: none;
    }

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 40px;
    }

    .f-40,
    .project-content h2 {
        font-size: 24px;
    }

    .f-30 {
        font-size: 20px;
    }

    .sub_h {
        font-size: 20px;
    }

    .work-slider-1 .owl-dots {
        max-width: 65%;
    }

    .work-slider-1 .owl-dots {
        top: 20px;
    }

    #counter {
        top: 24px;
    }

    .project-content p,
    .pro-title-1 {
        font-size: 17px;
    }

    /* employee page */

    .employee-image {
        width: 100%;
        position: relative;
        top: auto;
        height: auto;
        left: auto;
        margin-top: 30px;
    }

    .employee_banner .container {
        min-height: auto;
        flex-direction: column;
        text-align: left;
        width: 100%;
        align-items: baseline;
    }

    .employee-content {
        max-width: 100%;
        margin-top: 40px;
    }

    /* project detail */
    .project_detail_bg.banner-1 h1,
    .insight_detail_bg.banner-1 h1,
    .expertise_bg.banner-1 h1 {
        font-size: 36px;
    }

    .project_detail_bg.banner-1 h1 span {
        font-size: 36px;
    }

    .project_detail_bg.banner-1 h1 br,
    .insight_detail_bg.banner-1 h1 br,
    .expertise_bg.banner-1 h1 br {
        display: none;
    }

    .pro_detail_2 .profile-detail {
        font-size: 25px;
    }

    .detail_insight_wrap h2 {
        padding: 4px 10px 8px 10px;
    }

    .detail_insight_wrap p {
        padding: 0px 10px;
    }

    /* news styling*/
    .image_project img {
        height: 240px;
    }

    /* resource style */
    .resource-row1 .image_project img {
        height: 190px;
    }

    .blog-img img {
        height: 220px;
    }


    .course-row .project-box img.play-btn {
        height: auto;
        width: 60px;
    }

    .resource-row .project-box,
    .course-row .project-box {
        padding: 0px 0px 0px 15px;
    }

    .resource-row .title_project,
    .course-row .title_project {
        font-size: 20px;
        line-height: normal;
    }

    /* calculator */

    .custom-tb1 {
        width: 930px;
        font-size: 13px;
    }

    .heading_section {
        margin: 0px 39px;
    }

    .calculator_top h4 {
        font-size: 20px;
    }

    .calculator_top .p-top {
        font-size: 18px;
    }

    .form_box1 {
        margin: 0px auto 40px auto !important;
    }

    /* services detail new */
    .bar_bottom {
        border-bottom: 4px solid var(--red);
    }
    
    .pro_detail_2 .p-80{
        padding-top: 0px!important;
    }
}


@media only screen and (max-width:424px) {

    .banner-1 h1,
    .banner-1 h1 span {
        font-size: 34px;
    }

    .f-40,
    .project-content h2 {
        font-size: 20px;
    }

    .f-30 {
        font-size: 17px;
    }

    .top-h p {
        font-size: 16px;
    }

    /* project detail */
    .service_tag_1,
    .service_tag_2 {
        font-size: 13px;
    }

    .service_tags {
        padding: 7px 10px;
    }

    .pro_detail_2 .bio-col-1 {
        margin-top: 30px;
    }

    .pro_detail_2 .profile-detail {
        font-size: 22px;
    }

    .mobile-menu .offcanvas-end {
        width: 100%;
    }

    .project_detail_bg.banner-1 h1 span,
    .project_detail_bg.banner-1 h1,
    .insight_detail_bg.banner-1 h1,
    .expertise_bg.banner-1 h1 {
        font-size: 30px;
    }

    .serve_hover_content {
        padding: 20px;
    }

    /* news styling*/
    .image_project img {
        height: 210px;
    }

    .career_form.form_box1 {
        padding: 40px 15px;
    }

    .career_form .calculator_row {
        row-gap: 15px;
    }

    .form_box1 {
        padding: 40px 15px;
    }
}

@media only screen and (max-width:374px) {

    .page-side-bar {
        padding: 40px 25px 30px 25px;
    }

    .pro-right-accordion .accordion-item ul {
        padding: 0px 10px;
    }

    .internal-po-text {
        padding: 0px 0px 12px 15px;
    }

    .pro-title-1 {
        padding-left: 15px;
    }

    .project-content {
        margin-bottom: -20px;
    }

    /* news styling*/
    .image_project img {
        height: 180px;
    }

    /* resource style */
    .resource-row1 .image_project img {
        height: 150px;
    }
}

.sub_menu_vortex {
    padding-left: 10px;
    margin-left: 9px;
    list-style: disc;
}

.sub_menu_vortex li::marker {
    color: #fff;
}


/* ===== calculator sub menu start ===== */
.custom-dropdown1{
    position: absolute;
    background: var(--red);
    max-width: 170px;
    padding: 10px 10px;
    opacity: 0;
    z-index: -1;
    transition: all 0.1s linear;
    left: 157px;
    top: 77px;
    list-style-type: none;
    width: 100%;
}

.sub_drop_menu:hover .custom-dropdown1{
    opacity: 1;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .custom-dropdown1{
        left: 134px;
    }
}
/* ===== calculator sub menu end ===== */
.red {

    color: #FF7324;
}
