/** 

Project: Agency Theme
Version: 1.0
Author: Dev Theme
Primary use: offices, private businesses, government sector
Table of Content For Page Sections CSS
00. General
01. Header
02. Banner
03. Who We Are
04. Services
05. Our Project
06. Teams
07. CTA
08. Blog
09. Testimonials
10. Client Slider
11. Case Studies
12. Footer

/************************** 00. General ******************************/

/**
(Typography And Color Codes)
font-family: 'monteserat', sans-serif;
headings font-family: 'Montserrat', sans-serif;
 **/

:root {
    --primary-color: #0088ff;
    --secondary-color: #c9f31d;
}

body,
html {
    /* font-family: 'Montserrat'; */
    font-weight: normal;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: white;
}

.fullscreen-element {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.fullscreen-element::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.fullscreen-element::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.fullscreen-element::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #007dfe;
}

.force-overflow {
    min-height: 350px;
}

.pt-lg-5 {
    padding-top: 2.5em;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20-reverse {
    margin-top: -20px;
}

.section-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
}

.lh-105 {
    line-height: 105px
}

.btn-transparent {
    font-size: 15px;
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: unset;
    color: white;
}

.agency-btn {
    position: relative;
    width: fit-content;
}

.agency-btn-underline {
    color: #000;
    text-decoration: none;
}

.agency-btn-underline::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background-color: #1c1d20;
    transition: all .3s;
}

.agency-btn-underline:hover:after {
    width: 0%;
}

.circle li .fa-solid {
    display: inline-grid;
    justify-content: center;
    font-size: 12px;
    line-height: 5px;
    border: 1px solid #c5c5c5;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 20px;
}

/************************** 01. Header ******************************/

.dev-header-bg {
    /* padding: 20px 15px; */
    /* background-color: aliceblue; */
}

.dev-header-bg .navbar-brand img {
    width: 100px;
}

.navbar-nav .nav-item {
    margin-right: 15px;
}

.search-icon-color {
    background-color: transparent !important;
}

.search-container {
    position: relative;
}

.search-container .form-control {
    display: none;
}

.search-container:hover .search-bar,
.search-container:focus-within .search-bar {
    display: block;
    width: 150px;
    padding: 5px;
    position: absolute;
    top: 200%;
    left: -30%;
}

.search-icon-color a {
    color: black !important;
}

.line-header {
    border-left: 1px solid #c5c5c5;
    height: 40px;
    margin-left: 0px;
}

.header-center {
    margin-left: auto;
}

.list-underline .lists-style a,
.list-underline .lists-styles a {

    color: black;
    text-decoration: none;
    display: inline-block;
    padding: 15px 20px;
    position: relative;
}

.list-underline-drop-down .lists-style a {
    color: transparent;
    text-decoration: none;
    letter-spacing: 0.15em;
    display: inline-block;
    padding: 15px 0;
    position: relative;
}

.list-underline .lists-style a:after,
.list-underline .lists-styles a:after {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--primary-color);
    transition: width 0.3s ease 0s;
}

.list-underline .lists-style a:hover:after,
.list-underline .lists-styles li:not(:last-child) a:hover:after {
    width: 100%;
    left: 0;
}


/************************** 02. Banner ******************************/
.banner-bg {
    position: relative;
    padding: 20px 0px 230px;
    width: 100%;
    overflow: hidden;
}

.banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/banner-bg.jpg);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    transition: transform 0.5s;
}

.banner-bg:hover::before {
    transform: scale(1.05);
}

/* .banner-bg:has(.banner-hover:hover)::before{
    transform: scale(1.05);
} */

.banner-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/banner-overlay.png);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.banner-bg .customer-img {
    position: absolute;
    z-index: 1;
    right: 85px;
    bottom: -20px;
    width: 200px;
}

.banner-bg .customer-img img {
    width: 120px;
}

.banner-bg .customer-img p {
    font-size: 15px;
    color: black;
}

.banner-bg h1 {
    font-size: 6.5rem;
    font-weight: 800;
    margin-bottom: -15px;
}

.banner-bg span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 600;
    line-height: 41px;
    inline-size: 80px;
    overflow-wrap: break-word;
}

.btn-blue {
    background-color: #0069c6;
    padding: 15px 25px;
    border-radius: 0;
    font-size: 15px;
    transition: background-color 0.8s ease-out, border 0.8s ease-out, color 0.8s ease-out;
}

.btn-blue a {
    color: white;
    text-decoration: unset;
}

.btn-blue:hover {
    background-color: transparent;
    border: 1px solid #0069c6;
    color: #000;
}

.btn-blue:hover a {
    color: #000;
}

.btn-banner-blue .fa-sharp {
    display: inline-block;
    margin-left: -1px;
    visibility: hidden;
    transition: margin-left 0.8s ease-out;
}

.btn-banner-blue:hover .fa-sharp {
    margin-left: 5px;
    visibility: visible;
}

.banner-bg .green-text {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -55px;
    margin-right: 18px;
}

.custom-btn,
.custom-button {
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 3px;
    border: 2px solid;
    transition: color 0.1s ease, background 0.1s ease;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 143px;
    height: 53px;
}

.custom-btn:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-btn-border {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-btn-arrow {
    position: relative;
    transition: background-color 300ms ease-out;
}

.custom-btn-arrow span {
    display: inline-block;
    position: relative;
    transition: all 300ms ease-out;
}

.custom-btn-arrow:hover span {
    transform: translateX(-10px);
}

.custom-btn-arrow svg {
    position: absolute;
    width: 1.1em;
    right: 10px;
    opacity: 0;
    top: 26%;
    transform: translateY(-50%);
    transition: all 300ms ease-out;
}

.custom-btn-arrow:hover svg {
    opacity: 1;
    right: -8px;
    color: var(--primary-color);
}

.custom-btn .btn-text {
    width: 120px;
    font-size: 15px;
    color: white;
    padding-bottom: 41px;
    position: relative;
    text-align: center;
    top: -10px;
    right: 20px;
    text-transform: capitalize;
}

.custom-btn:hover .btn-text {
    color: var(--primary-color);
}

/************************* 02. Banner End *******************************/

/************************** 03. Who We Are ******************************/

.intro {
    padding: 80px 0;
}

.intro .top-heading {
    font-weight: 600;
    color: blue;
}

.intro .circle-border {
    border: 1px solid #c5c5c5;
    border-radius: 70px;
    height: 125px;
    width: 100%;
}

.intro .circle-icon {
    text-align: center;
    margin-top: -35px;
}

.intro .circle-icon img {
    background-color: black;
    padding: 15px;
    border: 6px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    overflow: unset;
}

.intro .circle-border .circle-text {
    font-size: 3rem;
    text-align: center;
}

.intro .border-line {
    border-right: 1px solid #c5c5c5;
    border-left: 1px solid #c5c5c5;
}

.intro .border-line-right {
    border-right: 1px solid #c5c5c5;
}

.intro hr {
    margin-top: 6.5rem !important;
}

.intro .border-arc-right {
    border-right: 1px solid #c5c5c5;
    height: 126px;
    border-radius: 200px;
    position: relative;
    right: 330px;
    top: 120px;
    margin-bottom: -126px;
}

.intro .border-arc-left {
    border-left: 1px solid #c5c5c5;
    height: 126px;
    border-radius: 200px;
    position: relative;
    left: 330px;
    top: -125px;
    margin-bottom: -126px;
}

.quarter-circle {
    width: 25px;
    height: 25px;
    background-color: blue;
    border-top-left-radius: 100px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: 5px;
    align-self: flex-end;
}

.lower-left-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid black;
    border-top: 60px solid transparent;
}

/************************* 03. Who We Are End *********************/

/************************* 04. Services Section Start *********************/

/* Existing service section styles */
.services {
    background-color: transparent;
    padding-top: 80px;
    transition: 0.3s ease-out;
    padding-bottom: 0;
}

.services .service-top-section {
    padding: 30px 0;
}

.services .service-title {
    color: rgba(0, 0, 0);
}

.services .service-title h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
}

.services .service-bg {
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    color: whitesmoke;
    height: 650px;
    transition: 0.5s ease;
}

.row .services-row:not(:last-child) {
    padding-right: 1px;
    padding-left: 0px;
}

.services .service-bg::before {
    content: "";
    position: absolute;
    background-image: url("../assets/banner-bg.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
}

.services .service-bg:hover::before {
    transform: scale(1.1);
    overflow: hidden;
    transition: 0.5s ease;
}

.services .service-bg.expanded::before {
    transform: scale(1.1);
    overflow: hidden;
    transition: 0.5s ease;
}

.services .service-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
    z-index: 1;
}

.service-bg:hover .overlay {
    background-color: unset;
}

.service-bg.expanded .overlay {
    background-color: unset;
}

.services .service-bg .serivce-box-text h3 {
    font-size: 2rem;
    font-weight: 400;
}

.services .serivce-box-text {
    position: absolute;
    padding: 1rem;
    top: 542px;
    left: 20px;
    bottom: 0px;
    z-index: 3;
    width: 100%;
    transition: 0.5s ease;
}

.services .service-bg:hover .serivce-box-text {
    margin-top: -70px;
    transition: 0.5s ease;
}

/* New class to apply the same effect on expansion */
.services .service-bg.expanded .serivce-box-text {
    margin-top: -105px;
    transition: 0.5s ease;
}

/* New styles for expanding width on click */

.services .full-width {
    width: 100%;
    z-index: 2;
    transition: 0.8s ease-out;
}

.col-lg-3 {
    transition: width 0.3s ease-out;
    /* Add a transition to the column width */
}

.width-transition {
    transition: width 0.3s ease-out;
    /* Add a transition class to animate the width change */
}

/************** button css start *********************/

.btn-text-border {
    display: none;
    margin-left: 40px;
}

.btn-border {
    display: none;
    position: absolute;
    /* right: 35px; */
    top: 112px;
    z-index: 3;
    border: 2px solid white;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    margin-left: 20px;
}

.btn-border img {
    margin-left: -0.75rem;
    vertical-align: sub;
}

/************** button css end *********************/

/************************* 04. Service section End *********************/

/************************* 05. Our Project section Start *********************/

.dev-projects {
    padding: 80px 0;
}

.dev-projects .mt-15 {
    margin-top: 30px;
    margin-left: 30px;
}

.dev-projects p {
    line-height: 30px;
}

.dev-projects .controls {
    margin: 0;
    padding: 10px 46.8%;
    list-style: none;
    width: 100%;
    transform: translatey(40%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dev-projects .slider-container {
    padding: 2rem 0rem;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    margin-left: 105px;
}

.dev-projects .slider-container .project-slider .slider-item .card {
    position: relative;
    height: 100%;
    width: 100%;
}

.dev-projects .slider-container .project-slider .slider-item .card:hover {
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
}

.dev-projects .project-slider .slider-item .card img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -17%;
}

.dev-projects .project-slider .slider-item .card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* Adjust as needed */
    background: linear-gradient(to top, rgba(0, 105, 198, 0.75), transparent);
    z-index: 1;
    /* Makes sure the gradient is above the image but below the text */
}

.dev-projects .project-slider .slider-item .card h4 {
    position: relative;
    z-index: 2;
    /* Ensures the text is above the gradient */
    color: white;
    /* Adjust text color to contrast the gradient */
    padding-left: 40px;
    bottom: 35px;
}

/************************* 05. Our Project section End *********************/

/************************* 06. Teams Section Start *********************/

.teams {
    background-color: #000;
    padding: 80px 0;
}

.teams-title h3 {
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
}

.teams p {
    font-size: 18px;
    color: #fff;
    width: 40%;
    margin-left: 540px;
}

.team-item-1 {
    margin: 60px auto;
    max-width: 373px;
    margin-bottom: 40px;
}

.team-item {
    margin: 0 auto;
    max-width: 373px;
    margin-bottom: 40px;
}

.team-item .team-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.team-item .team-img img {
    transition: 0.8s ease-out;
}

.team-item .team-img:hover img {
    transform: scale(1.1);
    transition: 0.8s ease-out;
}

.team-item .team-text {
    line-height: 10px;
}

.team-item .team-text h3 a {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    text-decoration: unset;
    text-align: start;
}

.team-item .team-text span {
    color: #fff;
}


.team-item-1 .team-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.team-item-1 .team-img img {
    transition: 0.8s ease-out;
}

.team-item-1 .team-img:hover img {
    transform: scale(1.1);
    transition: 0.8s ease-out;
}

.team-item-1 .team-text {
    line-height: 10px;
}

.team-item-1 .team-text h3 a {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    text-decoration: unset;
    text-align: start;
}

.team-item-1 .team-text span {
    color: #fff;
}

/************************* 06. Teams Section End *********************/

/************************* 07. CTA Section start *********************/

.cta-bar {
    padding: 80px 0;
    color: #fff;
}

.cta-bar .cta-bg {
    background-color: #000000;
    padding: 120px 50px;
}

.cta-bar .cta-bg h2 {
    font-size: 64px;
    font-weight: 700;
}

.cta-bar .cta-bg a {
    color: #fff;
    fill: #fff;
}

.agency-btn-white::after {
    background-color: #fff !important;
}

/************************* 07. CTA Section End *********************/

/************************* 08. Blog Section start *********************/

.blog {
    padding: 80px 0;
}

.blog a {
    color: #000;
}

.blog p {
    width: 280px;
}

.blog .team-item .team-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog .team-item .team-img img {
    height: 360px;
    width: 360px;
    object-fit: cover;
}

.blog .team-item .team-text h3 a {
    color: #000;
    font-size: 25px;
    font-weight: 800;
    text-decoration: unset;
    text-align: start;
}

.blog .team-item .team-text {
    line-height: 30px;
}

.blog .team-item .team-text span {
    color: #000;
}

/************************* 08. Blog Section end *********************/

/************************* 09. Client Slider Section start *********************/

.client-sliders {
    padding: 80px 0;
}

.client-sliders .client-bg {
    background-image: url('../assets/client-bg.png');
    background-size: cover;
    padding: 0;
    height: 130px;
}

.client-sliders .client-bg .slider-container {
    padding: 50px 16px;
    margin: 0rem auto 0 auto;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.client-sliders .client-bg .slider-container .client-slider .slider-item img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

/************************* 09. Client Slider Section start *********************/

/************************* 10. Testimonials Section start *********************/

.testimonial {
    padding: 80px 0 0;
}

.testimonial .slider-container {
    padding: 0 0.8rem;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.testimonial .controls {
    margin: 0;
    padding: 10px 598px;
    list-style: none;
    width: 100%;
    transform: translatey(-60%);
    display: flex;
    justify-content: space-between;
}

.testimonial .slider-item .testimonial-bg-white {
    height: 400px;
    width: 550px;
    color: #000;
    margin: 0 auto;
    text-align: center;
}

.testimonial .slider-item .testimonial-bg-white h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: -30px;
}

.testimonial .slider-item .testimonial-bg-white .testimonial-center-icon {
    font-size: 120px;
    color: var(--primary-color);
}

.testimonial .slider-item .testimonial-bg-white p {
    font-size: 1.1rem;
    color: #5d5d5d;
    margin-top: -85px;
}

.testimonial .slider-item .testimonial-bg-white img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.testimonial .slider-item .testimonial-bg-white .testimonial-icons {
    text-align: left;
    line-height: 1px;
    margin: 15px;
}

.testimonial .slider-item .testimonial-bg-white .testimonial-icons span {
    color: #5d5d5d;
}


/************************* 10. Testimonials Section end *********************/

/************************* 11. Case Studies start *********************/

.slider-section {
    padding: 80px 0;
}

.slider-section .slider-container {
    padding: 2rem 0;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.slider-section img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

.slider-section .my-slider {
    display: flex;
    position: relative;
}

.slider-section .slider-item {
    padding: 0;
    position: relative;
}

.slider-section .controls {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
    transform: translatey(60%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-section .slider-item .card {
    position: relative;
    /* Ensure the card's positioning is relative for the hover to work correctly */
    height: 500px;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
    /* Apply transition to all changing properties */
    text-align: center;
    margin: 0 auto;
    color: #333;
    overflow: hidden;
}

/* .slider-section .slider-item .card:hover {
    height: 400px;
    width: 100%;
    bottom: 25px;
} */

.slider-section .tns-item:not(.tns-slide-active)+.tns-slide-active+.tns-slide-active .card {
    transform: scale(1);
}

.slider-section .slider-item .card img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
    /* Smooth transition on hover for image */
}

.slider-item .card:hover img {
    height: 100%;
}

.slider-section .slider-item .card p {
    position: absolute;
    top: 15px;
    background: rgba(255, 255, 255, 0.35);
    padding: 5px;
    left: 10px;
    font-size: 12px;
    font-weight: 400;
}

.slider-section .slider-item .card h4 {
    text-align: left;
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    padding: 15px;
    color: white;
    z-index: 2;
}

.slider-section .slider-item .card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    z-index: 1;
}

/************************* 11. Slider Section end *********************/

/************************* 12. Footer *********************/

.footer-bg {
    background-color: #fff;
    padding-top: 80px;
}

/*paragraph font size */

.footer-bg p {
    font-size: 1.1rem !important;
}

/*footer images and icons */

.footer-bg .footer-logo img {
    width: 100px;
}

.footer-bg .right-img img {
    height: 185px;
    margin-left: 16px;
}

.footer-bg .footer-bg-img img {
    width: 100% !important;
}

.footer-bg .hand-img img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    position: absolute;
    top: 53%;
    left: 21%;
}

.footer-bg .social-icons a {
    color: #000;
}

/* newsletter css */

.form-inline {
    display: flex;
    align-items: center;
}

.form-inline .form-group {
    margin-right: 10px;
}

.form-line {
    line-height: 1.8em;
}

.form-inline h5 {
    margin-inline: auto;
}

.form-inline h5 {
    margin-inline: 35px;
    font-weight: 900;
}

.footer-bg h3 {
    color: #007dfe;
    font-size: 22px;
    margin-bottom: 1em;
}

.footer-bg .form-control {
    font-size: 1em;
    padding: 12px 20px;
    border-color: #83b5ff;
    border-radius: 45px !important;
    width: 360px !important;
}

.footer-bg .form-group .form-control::placeholder {
    color: #e6e6e6;
}

/* button css */

.btn-request {
    border: 2.5px solid #0068ff;
    border-radius: 45px;
    padding: 7px 35px;
    color: #000;
    font-size: 1.1em;
}

.btn-content {
    display: inline-grid;
}

.btn-blue-arrow-form {
    color: #fff !important;
    border-radius: 50px !important;
    padding: 5px 8px !important;
    font-size: 10px !important;
    position: absolute;
    top: 24%;
    right: 3%;
    height: 28px;
    width: 28px;
}

.btn-blue-arrow-form i {
    height: 100%;
    align-items: center;
    display: grid;
}

.tfn-blue {
    font-size: 1.2em;
}

.footer-bg .footer-bdr-text p {
    color: #a9a6b3;
}

/************************* 12. Footer *********************/

/************************* Media Queries *********************/
@media (min-width: 400px) {

    .custom-btn,
    .custom-button {
        width: auto;
    }
}

@media (min-width: 800px) {

    .custom-btn,
    .custom-button {
        font-size: 18px;
        padding: 14px 28px;
    }
}

@media screen and (max-width:1024px) {
    .footer-bg .form-inline h5 {
        font-size: 12px;
    }

    .dev-header-bg .form-inline .form-group {
        margin-right: 20px;
    }

    .footer-bg .form-control {
        width: 280px !important;
    }

    .dev-header-bg .line-header {
        display: none;
    }

    .footer-bg .right-img img {
        height: 150px;
    }

    .pt-lg-5 {
        padding-top: 0;
    }
}

@media screen and (max-width:767px) {
    .footer-bg .form-inline h5 {
        font-size: 16px;
    }

    .footer-bg .form-inline .form-group {
        margin-right: 15px;
    }

    .footer-bg .form-inline {
        display: none;
    }

    .footer-bg .form-control {
        width: 200px !important;
    }

    .dev-header-bg .line-header {
        display: none;
    }

    .footer-bg .right-img {
        display: none;
    }

    .dev-header-bg .fas {
        display: none;
    }

    .dev-header-bg .dropdown {
        margin-left: 20px;
    }

    .footer-bg .hand-img img {
        top: 75%;
        left: 21%;
    }

    .search-container:hover .search-bar,
    .search-container:focus-within .search-bar {
        display: none;
    }

    .banner-bg span {
        font-size: 25px;
        font-weight: 600;
        line-height: 25px;
        inline-size: 45px;
        padding-bottom: 0.7rem !important;
    }

    .banner-bg h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: -5px;
    }

    .lh-105 {
        line-height: 60px;
    }

    .banner-bg .green-text {
        font-size: 30px;
        font-weight: 700;
        margin-top: -60px;
        margin-right: 44px;
    }

    .custom-btn .btn-text {
        top: 7px;
        right: 0px;
    }

    .custom-btn-arrow svg {
        top: 20%;
    }

    .banner-bg .customer-img {
        right: 25px;
        bottom: 65px;
        width: 180px;
    }

    .banner-bg {
        padding: 20px 0px 158px;
    }

    .services .service-title h2 {
        font-size: 40px;
        font-weight: 800;
        line-height: 40px;
        margin-right: 1rem !important;
    }

    .services .service-title .mt-5 {
        margin-top: 0.8rem !important;
    }

    .services .service-title .w-50 {
        width: 100% !important;
    }

    .services .service-bg {
        height: 500px;
        margin-bottom: 25px;
    }

    .services .serivce-box-text {
        top: 400px;
    }

}

@media screen and (min-width:767px) and (max-width:850px) {
    .dev-header-bg .fas {
        display: none;
    }

    .dev-header-bg .dropdown {
        margin-left: 20px;
    }

    .footer-bg .right-img img {
        height: 110px;
    }

    .fullscreen-element {
        overflow: hidden;
    }
}

@media screen and (min-width:850px) and (max-width:1400px) {
    .fullscreen-element {
        overflow: hidden;
    }
}

@media screen and (min-width:993px) and (max-width:1400px) {

    .search-container:hover .search-bar,
    .search-container:focus-within .search-bar {
        right: -100%;
        left: -204%;
    }
}