html {
    overflow-x: hidden;
}

header {
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    fill: #1A1919;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background: #1A1919;
    padding: 12px 15px;
    position: relative;
}

.header-content:before {
    width: 0;
    height: 0;
    border-bottom: 95px solid #1A1919;
    border-left: 20px solid transparent;
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
}

.header-content:after {
    width: 0;
    height: 0;
    border-top: 95px solid #1A1919;
    border-right: 20px solid transparent;
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: inline-flex;
}

.nav-wrp {
    gap: 2rem;
    width: 52%;
}

nav.nav-wrp ul {
    display: flex;
    justify-content: space-evenly;
}

.nav-wrp a {
    transition: color 0.3s;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.nav-wrp a:hover, li.current_page_item  a {
    color: #FFA200;
}

.btn {
    border-radius: 8px;
    background: #FFA200;
    display: inline-flex;
    padding: 18px 21px;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn:hover {
    background-color: #e67e00;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--orange);
}

a.btn i {
    font-size: 14px;
    padding-left: 8px;
}

.banner_section {
    background-color: #FFA200;
    position: relative;
    overflow: hidden;
}

.banner_section:before {
    content: '';
    width: 81px;
    height: 203px;
    border-radius: 8px;
    background: #FFA200;
    position: absolute;
    left: -40px;
    top: -100px;
    bottom: 0;
    margin: auto 0;
    z-index: 9;
}

.banner_section:after {
    content: '';
    width: 81px;
    height: 504px;
    border-radius: 8px;
    background: #FFA200;
    position: absolute;
    right: -4px;
    top: -100px;
    bottom: 0;
    margin: auto 0;
}

.top_bar {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 9;
}

.top_bar:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #52514A;
    width: 42%;
    height: 100%;
}

.top_bar:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    width: 55%;
    height: 100%;
}

.top_bar_content {
    position: relative;
    width: 40%;
    display: flex;
    align-items: center;
}

.top_bar_email {
    position: relative;
    width: 57%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top_bar_email img {
    position: relative;
    top: -2px;
}

.top_bar_content:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 172px solid #FFA200;
    border-left: 91px solid transparent;
    position: absolute;
    right: -24px;
}

.top_bar_email:after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 172px solid #FFA200;
    border-right: 91px solid transparent;
    position: absolute;
    left: 0px;
}

.header .container {
    position: relative;
    z-index: 9;
}

.sticky .top_bar {
    display: none;
}

.top_bar {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
}

.top_bar_content img {
    margin-right: 15px;
}

.top_bar_content a {
    color: #fff;
}

.top_bar_content a:hover, .top_bar_email a:hover {
    color: #FFA200;
}

.top_bar_content img {
    margin-right: 15px;
}

.top_bar .container {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: space-between;
}

.top_bar_content a, .top_bar_email a {
    color: #fff;
    display: inline-block;
    padding-left: 6px;
}

.top_bar_email a {
    padding-left: 10px;
}

.banner_section img {
    position: relative;
}

/* Footer */
.footer {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.83) 100%), url(../images/footer_bg.png) lightgray 50% / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.row.footer-grid {
    padding: 90px 0px 30px;
}

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact img {
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFA200;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-form input, .footer-form textarea {
    padding: 0.75rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.footer-form input::placeholder, .footer-form textarea::placeholder {
    color: #999;
}

.footer-bottom {
    text-align: center;
    color: #fff;
    background: #FFA200;
    padding: 15px 0px;
}

.footer1, .footer2 {
    width: 29%;
}

.footer2, .footer3, .footer4 {
    padding-top: 24px;
}

.footer-bottom p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.footer1 p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.row.footer-grid h4 {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.row.footer-grid li {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

ul.footer-links li {
    background-image: url('../images/f_list.png');
    background-repeat: no-repeat;
    background-position: 0px 2px;
    padding-left: 27px;
    margin-bottom: 26px;
}

.footer-contact a {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.footer-contact a:hover {
    color: #FFA200;
}

li.recent-post-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

li.recent-post-item .thumb {
    border-radius: 8px;
    width: 122.5px;
    height: 90.216px;
    overflow: hidden;
}

li.recent-post-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

li.recent-post-item .content {
    width: 60%;
    display: inline-flex;
    flex-wrap: wrap;
}

li.recent-post-item span.time {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16.05px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.667px;
    display: block;
    margin-bottom: .6rem;
}

li.recent-post-item .content h6 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}

li.recent-post-item .content h6 a {
    color: #fff;
}

li.recent-post-item .content h6 a:hover {
    color: #FFA200;
}

ul.socail-medias {
    display: flex;
    margin-top: 2rem;
}

ul.socail-medias li {
    margin: 0px 8px 0px 0px;
}

ul.socail-medias li i {
    font-size: 24px;
}

ul.socail-medias li a:hover {
    color: #FFA200 !important;
}

.footer_form input, .footer_form select, .footer_form textarea {
    border-radius: 4px;
    border: 1px solid #FFA200;
    background: #FFF;
    height: 35px;
    color: #676767;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    padding: 0px 10px;
    display: flex;
    width: 100%;
}

.footer_form textarea {
    height: 91px;
    padding: 5px 10px;
    resize: none;
}

.footer_form .col-md-12 {
    padding: 0;
    margin-bottom: 10px;
}

.footer_form input.submit-btn {
    height: 37px;
    width: 154px;
    border-radius: 4px;
    border: 1px solid #FFA200;
    background: #FFA200;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    transition: .4s;
}

.footer_form input.submit-btn:hover {
    background: transparent;
    color: #FFA200;
}

.footer_form .form-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 22px;
    border-radius: 34.782px;
    border: 2px solid #FFA200;
    background: #FFF;
    width: 69.563px;
    height: 69.563px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    z-index: 99;
    font-size: 38px;
    cursor: pointer;
    display: none;
    padding: 0;
    text-align: center;
}

/*---------------------------------------
    ## Banner
---------------------------------------*/
.banner_content_wrp h1 {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 60.143px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.54px;
    padding: 10px 0px;
}

.banner_content_wrp h5 {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.banner_content_wrp h6 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding: 10px 0px 5px;
}

.banner_content_wrp p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding: 10px 0px;
}

.banner_content_wrp {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 440px;
}

.custom_btn {
    border-radius: 8px;
    background: #FFA200;
    border: 1px solid #FFA200 !important;
    outline: none !important;
    display: inline-flex;
    padding: 18px 56px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: .4s;
}

.banner_btns a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-flex;
    align-items: center;
}

.custom_btn:hover {
    background: #000;
    color: #fff;
}

.banner_btns a:last-child img {
    padding: 0px 20px;
}

.banner_btns a:hover {
    color: #FFA200;
}

.banner_btns {
    padding-top: 30px;
}

.b_services ul {
    display: flex;
    padding: 30px 60px;
}

.b_services {
    max-width: 1182px;
    width: 100%;
    height: 137px;
    background-image: url('../images/b_img.png');
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0px;
}

.b_services li {
    display: flex;
    width: 30%;
}

.b_services .icon {
    display: flex;
    width: 80px;
    height: 80px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #4B4B4B;
}

.b_content {
    padding: 0px 15px;
}

.b_services .b_content h5 {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.b_services .b_content p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*---------------------------------------
    ## Blogs
---------------------------------------*/
.blog-section {
    padding: 80px 0px;
}

.title_box_wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.title_box_wrap h2 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.6px;
    text-transform: uppercase;
}

.title_box_wrap h5 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
}

.title_box_wrap h6 {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title_box_wrap p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    padding: 10px 0;
}

.single-blog .blog-img {
    height: 558.876px;
}

.multi-blog .blog-card:first-child {
    width: 100%;
}

.blog-img {
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: .4s;
}

.multi-blog .blog-img {
    height: 271.278px;
}

.multi-blog .row {
    align-items: stretch;
    height: 100%
}

.blog_posts_wrp .col-md-6 {
    padding: 0px;
}

.thumb.blog-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.13%, rgba(0, 0, 0, 0.80) 79.24%);
}

.thumb.blog-img:hover:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.13%, lch(75 83.91 69.77 / 0.67) 79.24%);
}

.blog-content {
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 30px;
}

h3.blog-title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin: 10px 0px;
}

h3.blog-title a {
    color: #fff;
}

.inn-blog-card span {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.667px;
    display: inline-block;
}

.blog-date {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16.05px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.667px;
}

.blog-date i {
    color: #FFA200;
    margin-right: 10px;
}

.thumb.blog-img:hover span {
    color: #fff;
}

.inn-blog-card {
    padding: 8px;
    transition: 0.4s;
}

.inn-blog-card:hover .thumb {
    box-shadow: 0px 0px 10px #000;
}

/*---------------------------------------
    ## FAQs
---------------------------------------*/
.faqs-section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.ea-card.ea-expand.sp-ea-single .ea-header a {
    padding: 15px;
    color: #444;
    background: #FFA200;
    border: 1px solid #FFA200;
}

.ea-card.ea-expand.sp-ea-single {
    border: 2px solid transparent !important;
}

.faqs-content-wrp {
    max-width: 980px;
    width: 100%;
    margin: auto;
}

.faqs-content-wrp p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.faqs-content-wrp h3 a {
    color: #000 !important;
    font-family: Montserrat;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 27px !important;
}

/*---------------------------------------
    ## Clients Section
---------------------------------------*/
.clients-section {
    padding: 80px 0px 0px;
}

.client_left_content .title_box_wrap {
    text-align: left;
    margin-bottom: 1rem;
}

.client_left_content {
    padding-right: 60px;
}

.client_left_content h4 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    padding: 30px 0px;
}

.client_left_content p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.items .row {
    border-radius: 16px;
    background: #000;
    box-shadow: -10px 10px 14px rgba(0,0,0,0.18);
    -webkit-box-shadow: -10px 10px 14px rgba(0,0,0,0.18);
    -moz-box-shadow: -10px 10px 14px rgba(0,0,0,0.18);
}

.photo {
    border: 5px solid #FFA200;
    width: 95.708px;
    height: 95.708px;
    overflow: hidden;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
}

.photo img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
}

.items_details {
    background: #FBF9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 16px 0px 0px 16px;
}

.inn_items_details h6 {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.inn_items_details p {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.inn_items_details {
    padding: 30px;
}

.inn_items_content {
}

.inn_items_content {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 27px;
}

.item_content {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    border-radius: 0px 16px 16px 0px;
}

img.quote {
    position: absolute;
    top: -30px;
}

.client_slider {
    border-radius: 16px;
}

.items {
    padding: 30px 30px;
}

.client_slider_wrp {
    margin-top: -140px;
    margin: 0;
    position: relative;
}

.ti-prev {
    width: 47px !important;
    height: 47px !important;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/prev-t.png');
    position: absolute;
    left: -20px !important;
    /* top: 0; */
    /* bottom: 0; */
    /* margin: auto 0; */
    z-index: 9;
    background-color: transparent;
}

.ti-next {
    width: 47px !important;
    height: 47px !important;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/next-t.png');
    position: absolute;
    right: -20px !important;
    /* top: 0; */
    /* bottom: 0; */
    /* margin: auto 0; */
    z-index: 9;
    background-color: transparent;
}

.ti-next:after, .ti-next:before, .ti-prev:after, .ti-prev:before {
    display: none !important;
}

/*---------------------------------------
    ## Project Section
---------------------------------------*/
.projects-section {
    padding: 80px 0px;
    background-image: url('../images/our-work-bg.png');
    background-position: center center;
    background-size: cover;
}

.projects-gallery .slick-dots li button {
    padding: 0;
    border: none;
    background: none;
}

.projects-gallery .slick-dots li img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: .4s;
}

.projects-gallery .slick-dots li img:hover {
    box-shadow: 0px 4px 4px 0px #FFA200;
}

.projects-gallery .slick-dots li.slick-active img {
    opacity: 1;
}

.projects-gallery {
    max-width: 1185px;
    width: 100%;
    margin: auto;
}

.p_image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.projects-gallery ul.slick-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    /* padding: 0; */
    /* margin: 0; */
    list-style: none;
    scroll-snap-type: nonex mandatory;
    -webkit-overflow-scrolling: touch;
    anchor-scope: none;
    padding-bottom: 20px;
}
.projects-gallery ul.slick-dots::-webkit-scrollbar {
    display:none;
}
.projects-gallery ul.slick-dots li {
    margin-right: 10px;
}
.projects-gallery button.slick-prev.slick-arrow {
    width: 80px;
    height: 81px;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/prev.png');
    position: absolute;
    left: -100px;
    top: -120px;
    bottom: 0;
    margin: auto 0;
    z-index: 9;
    background-color: transparent;
}

.projects-gallery button.slick-next.slick-arrow {
    width: 80px;
    height: 81px;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/next.png');
    position: absolute;
    right: -100px;
    top: -120px;
    bottom: 0;
    margin: auto 0;
    z-index: 9;
    background-color: transparent;
}

/**************Client logo******************/
.client_logo_wrapper {
    padding: 60px 20px;
}

.slider__marquee {
    margin: 0;
}

.slider__marquee .slick-slide {
    margin: 0 12px !important;
}

.slider__marquee button.slick-prev.slick-arrow {
    width: 80px !important;
    height: 80px !important;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/prev.png');
    background-size: 100%;
    position: absolute;
    left: -100px !important;
    top: 0px;
    bottom: 0;
    margin: auto 0;
    z-index: 9;
    background-color: transparent;
}

.slider__marquee button.slick-next.slick-arrow {
    width: 80px !important;
    height: 81px !important;
    border-radius: 100%;
    text-indent: -99999px;
    border: none;
    background-image: url('../images/next.png');
    background-size: 100%;
    position: absolute;
    right: -100px !important;
    top: 0px;
    bottom: 0;
    margin: auto 0;
    z-index: 9;
    background-color: transparent;
}

/************** Why Choose Us ******************/
.why-choose-us-section {
    background-image: url('../images/why_choose_bg.png');
    background-size: cover;
    background-position: center center;
}

.container-why-us {
    padding: 0px 6% 0px 14%;
}

.inn_wcu_content_wrp .title_box_wrap {
    text-align: left;
    margin-bottom: 1rem;
}

.inn_wcu_content_wrp .title_box_wrap h4 {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 38px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    padding: 10px 0px 0px;
}

.inn_wcu_content_wrp .title_box_wrap h5 {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    padding: 10px 0px;
}

.inn_wcu_content_wrp .title_box_wrap h2, .inn_wcu_content_wrp .title_box_wrap p {
    color: #fff;
}

.inn_wcu_content_wrp h2, .title_box_wrap .bigger-h2 {
    font-size: 58px;
    line-height: 74.6px;
}

.inn_wcu_content_wrp {
    padding: 120px 0px;
}

.inn_wcu_content_wrp .ea-card.sp-ea-single {
    background: transparent !important;
}

.inn_wcu_content_wrp .ea-card.ea-expand.sp-ea-single a {
    background: #ffa200 !important;
}

.inn_wcu_content_wrp .ea-card.sp-ea-single a {
    border: 1px solid #636363;
    color: #fff !important;
    font-family: Montserrat !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
}

.inn_wcu_content_wrp .ea-card.sp-ea-single a i {
    color: #fff !important;
}

.inn_wcu_content_wrp .ea-card.ea-expand.sp-ea-single a, .inn_wcu_content_wrp .ea-card.ea-expand.sp-ea-single a i {
    color: #000000 !important;
}

.inn_wcu_content_wrp .ea-card.sp-ea-single p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.why_btn {
    text-align: center;
    margin-top: 1rem;
}

.why_btn .custom_btn {
    align-items: center;
}

.inn_wcu_image {
    padding-left: 82px;
    margin-top: -85px;
}

/************** Services ******************/
.services-section-wrp {
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.services-section {
    padding: 495px 0px 180px;
    background-image: url('../images/services_bg.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center top;
    margin-top: -60px;
}

.services-section .container-service {
    padding: 0px 6%;
}

.container-service .title_box_wrap {
    text-align: left;
}

.inn_services_items {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    height: 100%;
    padding: 18.94px 19.552px 18.94px 19px;
    transition: 0.4s;
}

.inn_services_items:hover {
    background: #FFA200;
}

.ser_item_img {
    margin-bottom: 10px;
    text-align: right;
}

.ser_item_img .item_img {
    display: inline-flex;
    width: 115.12px;
    height: 115.12px;
    flex-shrink: 0;
}

h2.bigger-h2 span {
    font-weight: 300;
    display: block;
    text-transform: none;
}

.container-service .title_box_wrap h2, .container-service .title_box_wrap p {
    color: #fff;
}

.container-service .title_box_wrap p {
    padding: 10px 0%;
}

.services_items {
    margin: 10px 0px;
}

.inn_services_content h3 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
	margin-bottom: 15px;
}

.inn_services_content p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.item_img img {
    height: 102px;
    transition: .4s;
    background: #fff;
    padding: 10px;
}

.inn_services_items:hover .item_img img {
    height: 72px;
}

/************** About us ******************/
.about-us-section {
    padding-top: 130px;
}

.abt_content_wrp {
    width: 62%;
    padding-right: 28px;
}

.abt_counter_no {
    width: 38%;
    display: flex;
    align-items: flex-end;
}

.inn_abt_content_wrp .title_box_wrap {
    text-align: left;
    margin: 0;
}

.inn_abt_content_wrp h5 {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    padding: 12px 0px;
}

.inn_abt_content_wrp p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 12px 0px;
}

.abt_list {
    padding: 0;
}

.abt_list li {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-left: 42px;
    margin: 1rem 0;
}

.inn_abt_content_wrp .row {
    margin-top: 2rem;
}

.abt_number_wrp {
    display: flex;
    align-items: center;
}

span.abt_number a {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
}

span.abt_number p {
    color: #8C8C8C;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding: 0;
}

.abt_number_wrp img {
    margin-right: 10px;
}

span.abt_number a:hover {
    color: #FFA200;
}

.stats-box {
    border-radius: 16.634px;
    background: linear-gradient(180deg, #FFF 0%, #E0E0E0 100%);
    width: 100%;
    height: 194.09px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.4s;
}

.stats-box:hover {
    border-radius: 16.634px;
    background: #FAAF42;
}

h2.counter-card_number {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 48.055px;
    font-style: normal;
    font-weight: 700;
    line-height: 24.952px;
    text-transform: uppercase;
    margin-bottom: 2.3rem;
}

p.counter-card_text {
    color: #000;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 18.483px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.952px;
    text-transform: uppercase;
}

p.counter-card_text span {
    display: block;
}

.count_box {
    padding: 8px;
}

.abt_counter_no .why_btn {
    margin-top: 3rem;
    text-align: left;
}

.slick-list {
    display: flex;
}

.slick-track {
    display: flex;
}

.wp-singular .top_bar:before, .wp-singular .top_bar:after , .wp-singular .top_bar_content:before, .wp-singular .top_bar_email:after, .blog .top_bar:before, .blog .top_bar:after , .blog .top_bar_content:before, .blog .top_bar_email:after
, .error404 .top_bar:before, .error404 .top_bar:after , .error404 .top_bar_content:before, .error404 .top_bar_email:after{
    display: none;
}

.wp-singular .top_bar, .blog .top_bar, .error404 .top_bar {
    background: #000;
}

.inner-banner-section {
    height: 780px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: flex-end;
}

.inner_banner_content_wrp {
    width: 50%;
    padding-bottom: 6%;
}

.banner-yellow-text {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.inner-banner-section h1 {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 60.143px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.54px;
    padding: 22px 0px;
}

.inner-banner-section p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.portfolio-area-wrap {
    padding: 80px 20px;
}

.portfolio-area-wrap .portfolio-wraper {
    padding-top: 40px;
}

.inner-blog-card {
    display: flex;
    flex-wrap: wrap;
    padding: 24px;
    gap: 10px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    transition: .4s;
}

.blog-image {
    height: 426px;
    width: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

h3.b-title {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    padding-bottom: 12px;
}

h3.b-title a {
    color: #000;
}

a.b-link-btn {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
}

.b-date {
    color: #676767;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 10px;
}

.blog_items {
    padding: 20px;
}

.inner-blog-card:hover {
    border: 1px solid #FFA200;
    box-shadow: 0px 0px 10px #FFA200;
}

.inner-blog-card:hover h3 a {
    color: #FFA200;
}

.inner-blog-card:hover .blog-image {
    transform: scale(1.03);
}

.thumbnail {
    margin-bottom: 20px;
    text-align: center;
}

.map_iframe iframe {
    width: 100%;
    height: 394px;
}

.map_iframe {
    background-image: url('../images/border_line.png');
    background-repeat: repeat-x;
    background-position: center bottom;
    padding-bottom: 23px;
}

.contact-form-area-wrap {
    padding: 80px 20px;
}

.details-wrap {
    background: #F6F6F6;
    padding: 20px;
    width: 49%;
}

.details-wrap:last-child {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 12px;
}

.contact-form-area-wrap h2 {
    font-weight: 700;
}

.contact-details-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 15px;
}

.details-wrap h5 {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 0px;
}

.details-wrap p {
    color: #666;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.details-wrap p a {
    color: #666;
}

.details-wrap p a:hover {
    color: #FFA200;
}

.details-wrap:last-child h5 {
    padding-top: 0px;
}

.details-wrap:last-child .d_content {
    padding-left: 25px;
}

h5.sec-title {
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact-form-area-wrap .form-group input, .contact-form-area-wrap .form-group select, .contact-form-area-wrap .form-group textarea {
    border: none;
    border-bottom: 1px solid #DBDBDB;
    border-radius: 0px;
    padding: 5px 10px;
    color: #676767;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    height: auto;
    outline: none !important;
    box-shadow: none;
}

.contact-form-area-wrap .form-group textarea {
    height: 100px;
}

textarea {
    resize: none;
}

.form-btn {
    margin-top: 35px;
}

.contact-form-area-wrap input.submit-btn {
    border-radius: 8px;
    background: #FFA200;
    border: 1px solid #FFA200;
    display: flex;
    max-width: 238px;
    width: 100%;
    height: 71px;
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: .4s;
}

.contact-form-area-wrap input.submit-btn:hover {
    background: #000;
    color: #fff;
}

.title-area {
    padding: 0px 12px 32px;
}

select {
    background-image: url('../images/select.png');
    background-repeat: no-repeat;
    background-position: 98% center;
}

.services-page-area-wrap {
    padding: 80px 0px;
    background-image: url('../images/3d-illustration-industrial-building.png');
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
}

.services-page-area-wrap:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 34px;
    background-image: url('../images/border_line.png');
}

.main-content-area {
    text-align: center;
    padding: 0px 3%;
    padding-bottom: 50px
}

.main-content-area h6 {
    color: #FFA200;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.services-page-area-wrap .service-items a {
    display: block;
    height: 100%;
}

.services-page-area-wrap .inn-service-items {
    background: #F8F8F8;
    height: 100%;
    border-radius: 16px 16px 0 0;
    transition: .4s;
    border: 2px solid transparent;
}

.services-page-area-wrap .service-card-content {
    padding: 40px 20px;
    text-align: center;
}

.services-page-area-wrap .service-items {
    padding: 30px 16px;
    margin: 0;
}

.service-card-content h4 {
    color: #000;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px;
    text-transform: uppercase;
}

.services-page-area-wrap .service-image img {
    width: 100%;
}

.services-page-area-wrap .inn-service-items:hover {
    border: 2px solid #FFA200;
    background: #FFA200;
}

.service-details-wrap {
    padding: 80px 0px 100px;
    position: relative;
    background-image: url('../images/border_line.png');
    background-repeat: no-repeat;
    background-position: center bottom;
}

aside.td-sidebar.service-sidebar {
    border-radius: 18px;
    background: #F6F6F6;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 26px;
    align-items: center;
}

h4.widget-headline {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: 10px;
}

.widget li a {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #fff;
    display: flex;
    padding: 16px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.widget {
    width: 100%;
}

.widget ul li {
    margin: 10px 0px;
}

.widget li.current-menu-item a {
    background: #FFA200;
    color: #000;
}

.service-details-wrap .s-content img {
    border-radius: 16px;
}

.service-details-wrap .s-content h5 {
    line-height: normal;
    padding: 12px 0px;
}

.service-details-wrap .s-content p {
    padding: 12px 0px;
}

.other-section {
    padding: 60px 0px;
}

.other-section h3 {
    line-height: normal;
    margin-bottom: 12px;
}

.other-section p {
    margin-bottom: 15px;
}

.abt h2 {
}

.abt h2 strong {
    display: block;
    font-size: 58px;
}

.abt h6 {
    color: #FFA200;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.abt li {
    background-image: url('../images/square-tick.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #000;
    text-align: justify;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 12px;
    padding-left: 35px;
}

.about_content_wrapper.abt {
    padding: 80px 20px;
}

.abt p {
    padding: 10px 0px;
}

.inn_abt_content ul {
    column-count: 2;
    padding: 10px 0px 0;
}

.about2_content_wrapper.abt {
    padding: 80px 20px;
    background-image: url('../images/abt_content_bg.png');
    background-repeat: no-repeat;
}

.about2_content {
    text-align: center;
    padding-bottom: 35px;
}

.abt_content2 {
    display: flex;
    align-items: center;
}

.row.counter-rows {
    position: relative;
    top: 80px;
}

.row.counter-rows .count_box {
    width: 20%;
}

.row.counter-rows .stats-box p {
    color: #000;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.952px;
    text-transform: uppercase;
}

.about3_content_wrapper.abt {
    padding: 100px 20px 80px;
}

.inn_abt_content3 li {
    background-image: none;
    position: relative;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    /* 150% */
    min-height: 95px;
    display: flex;
    align-items: center;
    padding-left: 122px;
    text-align: left;
    margin: 30px 0px;
}

.inn_abt_content3 li img {
    position: absolute;
    left: 0;
    top: 0;
}

.inn_abt_content3 li strong {
    display: block;
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.inn_abt_content3 h2 {
    margin-bottom: 10px;
}
button i.fa-solid.fa-right-long {
    position: relative;
    top: 3px;
}
.our_team_wrapper.abt {
    padding: 30px 20px 40px;
}

.inn_team_content h5 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height:normal; 
    text-transform: uppercase;
}

.our_team_wrapper.abt .container {
    padding: 0px 7%;
}

.our_team_content .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.our_team_content .row {
    align-items: center;
}
.container-logo {
    padding: 0px 6%;
}
.inn_team_img img {
    border-radius: 15px;
}