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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

:root {
    --theme-color: #be902e;
    --hover-color: #dd5b1e;
    --second-color: #814c9c;
}

body::-webkit-scrollbar {
    width: 5px;
    background-color: #e0e0e0;
}

body::-webkit-scrollbar-thumb {
    width: 5px;
}

a {
    text-decoration: none;
    font-weight: 500;
}

p {
    color: #555555 !important;
}

ul {
    padding: 0;
    margin: 0;
}

::selection {
    background-color: #66d4ff;
    color: var(--theme-color);
}

.nav-link {
    text-decoration: none !important;
    color: #814c9c;
    text-transform: uppercase;
    font-weight: 600 !important;
    transition: all .2s ease !important;
}

a:hover {
    color: var(--theme-color) !important;
}

i {
    color: var(--theme-color);
}

button {
    border: 1px solid var(--hover-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: "Barlow", sans-serif;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 5px;
}

.italic {
    font-style: italic;
}

p.highlighted {
    color: var(--theme-color) !important;
    font-weight: bold;
}

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000e3;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: none;
}

#header {
    background-color: #fdfdfd;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all .3s ease-in;
}

.middle-header {
    padding: 17px 10px !important;
    margin: 0 auto;
}

.header-right-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 2px 7px;
    border-radius: 3px;
}


.navbar-nav .dropdown-menu a{
    color: #fff !important;
    display: block;
    padding: 5px 15px;
}

.navbar-nav .dropdown-menu a:hover{
    background-color: #fff;
    color:#be902e !important;
}

.dropdown-menu>li:hover>a {
    color: #fff;
}

.pic {
    height: 83px;
    width: 83px;
    border-radius: 50%;
    border: 5px solid var(--theme-color);
}

.pic>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-link.active {
    color: #be902e !important;
}

.dropdown-toggle::after {
    margin-left: 4px;
}

.custom-icons {
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
}

.navbar-toggler-icon.custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
    max-height: 80px;
}

.nav-item.dropdown:hover .dropdown-menu.dropdown-item {
    color: white !important;
}

.title {
    font-size: 75px;
    color: var(--theme-color);
    text-transform: uppercase;
}

.highlighted {
    color: var(--theme-color);
}

.btn-outline-main {
    color: var(--hover-color);
}

.btn-outline-main:hover {
    background-color: var(--theme-color);
    color: var(--theme-color);
}

input {
    padding: 10px 12px !important;
    border-radius: none !important;
    outline: none !important;
}

input:focus {
    box-shadow: 0px 0px 2px 2px var(--hover-color) !important;
}

textarea:focus {
    box-shadow: 0px 0px 2px 2px var(--hover-color) !important;
}

.bg-primary {
    background-color: var(--theme-color) !important;
}

#navbarContent {
    display: none;
}

#navbarContent.show-custom-menu {
    display: block;
}

.toggler-icon {
    font-size: 2rem;
    color: var(--theme-color);
}

button:focus {
    box-shadow: 0px 0px 0px 3px var(--hover-color) !important;
}

section {
    padding: 50px 20px !important;
}

p.text-justify {
    text-align: justify;
}

main {
    overflow-x: hidden !important;
}

.banner-section {
    position: relative;
    background-image: url(../img/main-banner-img.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    max-height: auto;
}

.banner-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #020202bd;
    z-index: 2;
    clip-path: polygon(0 0, 45% 0, 74% 100%, 0% 100%);
}


.service-banner {
    position: relative;
    background-image: url(../img/service-banner-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-height: auto; */
    height: 80vh;
}

.service-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #000000bd;
    z-index: 2;
}

.manpower-img {
    border-radius: 5px;
    overflow: hidden;
}

.manpower-img>img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.banner-content {
    position: relative;
    z-index: 20;
    /* display: grid; */
    place-content: center;
    margin-top: 130px;
    /* height: 80%; */
}

.banner-image {
    position: relative;
    z-index: 20;
    margin-top: 150px;
    /* width: 100%; */
    /* height: 500px;
    width: 400px; */
}

.banner-image>img {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    place-content: center;

}

.banner-bottom {
    margin-top: 20px;
    margin-left: 30px;
}

.text-wrapper {
    height: 100px;
    width: 100px;
    background-color: red;
    border-radius: 50%;
    text-align: center;
}

.divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(163, 163, 163, 0.582);
}

.line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(163, 163, 163, 0.582);
}

.line::after {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    right: -9px;
    top: -4px;
    background-color: var(--theme-color);
}

.divider::after {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    right: -9px;
    top: -4px;
    background-color: var(--theme-color);
}

.divider::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: -9px;
    top: -4px;
    background-color: var(--theme-color);
}

.s-dvider {
    /* margin-left: 150px; */
    margin-top: 20px;
}

.theme-button {
    padding: 13px 25px;
    border: 1px solid var(--second-color);
    color: white;
    text-align: center;
    transition: all .3s ease-in-out;
}

.theme-button:hover {
    background-color: var(--second-color);
    color: white !important;
}

.theme-btn {
    padding: 13px 25px;
    border: 1px solid var(--theme-color);
    color: white;
    text-align: center;
    transition: all .3s ease-in-out;
}

.theme-btn:hover {
    background-color: var(--theme-color);
    color: white !important;
}

.theme-btn:hover .r-arrow {
    transform: scale(1.2);
    left: 5px;
}

.theme-btn-second:hover .r-arrow {
    transform: scale(1.2);
    left: 5px;
}

.r-arrow {
    color: white !important;
    position: relative;
    transition: all .3s ease-in-out;
}

.theme-btn-second {
    padding: 13px 25px;
    background-color: var(--theme-color);
    color: white;
    text-align: center;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.theme-btn-third {
    padding: 13px 25px;
    background-color: var(--theme-color);
    color: white;
    text-align: center;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    width: 300px;
    margin-top: 50px;
}

.theme-btn-third:hover {
    background-color: var(--hover-color);
}

.theme-btn-second:hover {
    color: white !important;
    border: 1px solid var(--theme-color);
    background-color: transparent;
}

.position-absolute-num {
    position: absolute;
    left: 10px;
    bottom: 40%;
}

.wrapper-main {
    overflow-x: hidden;
}

.service-wrapper {
    background-image: url(../img/service-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
}

.thumbnail-wrapper {
    position: relative;
    background: #ffffff;
    padding-bottom: 20px;
    height: 520px;
    border-radius: 5px;
    overflow: hidden;
}

.thumbnail {

    overflow: hidden;
}

.th-img {
    height: 60%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transition: all .2s ease-in-out;
}

.thumbnail-title {
    font-size: 22px;
    font-weight: 600 !important;
}

.thumb-subtitle {
    font-size: 18px;
}

.thumbaail-description {
    color: rgb(122, 122, 122);
}

.thumbnail-content {
    position: relative;
    background: white;
    transition: .3s linear;
}

.thumbnail-wrapper:hover .th-img {
    transform: scale(1.05);
}

.testimonial-section {
    /* max-width: ; */
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}


.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    margin: 0 0 10px;
    color: #333;
}

.testimonial-content p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

.testimonial-nav {
    text-align: start;
    margin-top: 20px;
}

.testimonial-nav button {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 2px;
}

.why-choose-us-video {
    position: relative;
    padding: 0 !important;
}

.why-choose-us-video:after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #0000008f;
    top: -5px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

.why-choose-us-video {
    position: relative;
    width: 100%;

    overflow: hidden;
}

.why-choose-us-video .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us-content {
    position: absolute;
    top: 200px;
    right: 50px;
    bottom: 4px;
    z-index: 9;
}

.rounded-xl {
    border-radius: 50%;
    color: white;
    background: var(--theme-color);
}

#card-slider {
    max-width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.card-slider-wrapper {
    /* overflow: hidden; */
    width: 100%;
}

.card-container {
    display: flex;
    transition: transform 0.5s ease;
    /* gap: 20px; */
}

.card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 110, 4, 0.678);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card {
    flex: 0 0 calc(33.333% - 13.33px);
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease !important;
}

.card:hover {
    box-shadow: 0 0px 2px 3px #108992d0 !important;
}

.text-sky {
    color: var(--second-color);
    font-weight: 600;
}

.slick-initialized .slick-slide {
    display: block;
    margin: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--hover-color);
    color: var(--second-color) !important;
}

.w-40 {
    width: 134px !important;
}

.blog-content {
    height: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content-wrapper {
    height: 100%;
}

.accordion-button:focus {
    box-shadow: 0px 0px 0px !important;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.card-container .card {
    /* height: 100%; */
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.navigation {
    margin-top: 20px;
    text-align: start;
}

.navigation button {
    background-color: var(--theme-color);
    color: white;
    border: none;
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation button:hover {
    background-color: var(--hover-color);
}

.brand-slider {
    overflow-x: hidden;
}

.brand-slide {
    opacity: 1;
    transition: all .3s ease-in;
}

.brand-slide:hover {
    opacity: 1;
}

.why-so-link {
    transition: all .3s ease-in-out;
    padding-inline: 10px;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.why-so-link>a {
    cursor: text;
}

.why-so-link:hover {
    background-color: var(--hover-color);
}

.why-so-link:hover a {
    color: white !important;
}

.requestForm input::placeholder {
    color: rgba(175, 175, 175, 0.781);
}

.requestForm textarea {
    color: rgba(175, 175, 175, 0.781);
}

.qater {
    padding: 100px;
}

.z-index {
    position: relative;
    z-index: 100;
}

.bg-sec {
    background-color: var(--theme-color);
}

.services .blogSlide .blog-content a {
    display: block;
    margin-bottom: 20px;
}

h3 {
    color: var(--second-color);
}

blog-wrapper. {
    margin-left: 20px;
    height: 680px !important;
    padding-block: 20px;
    background-color: #faf7f7;
    padding-inline: 20px;
    box-shadow: 0px 0px 10px 1px rgba(197, 197, 197, 0.5);
}

.blog-img {
    overflow: hidden;
    height: 300px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog-img:hover img {
    transform: scale(1.05);
}

.blog-img>img {
    transition: all .3s ease-in;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.sm-blogWrapper {
    height: 540px !important;
}

.blog-content p {
    flex-grow: 1;
}

.blog-content .theme-btn {
    margin-top: auto;
}

.footer {
    position: relative;
    background-image: url(../img/footer-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0 10px 0;
    overflow: hidden;
    z-index: 1;
}
.ft-menu li > a {
    color: #fff;
}
.logo {
    max-height: 80px;
    vertical-align: middle;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2;
}

.footer-inner {
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

.footer-slide {
    padding: 0 10px;
    border-radius: 2px;
    overflow: hidden;
}

.footer-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.slick-dots li button:before {
    font-size: 0;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    border-radius: 0;
}

.slick-dots li button:before {
    font-size: 15px;
    color: white;
}

.slick-dots li.slick-active button:before {
    color: var(--theme-color);
    font-size: 15px;
    border-radius: 0;
}

.slick-dots li {
    color: white;
}

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
    display: none;
}

.slick-prev:before {
    content: "";
}

.slick-next:before {
    content: "";
}

.sign-up {
    padding: 0 !important;
    padding-top: 50px !important;
    background: #212529;
}

.sign-up-inner {
    background-color: var(--theme-color);
    padding: 50px;
}

.detail-send {
    border-bottom: 1px solid #fff;
    padding-bottom: 1px;
}

.input-area {
    width: 100%;
}

.input-area>input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-weight: 500;
}

.input-area>input::placeholder {
    color: white;
}

.send-area>button {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    z-index: 99;
    margin-bottom: 10px;
}

.card {
    margin-right: 10px;
}

.service-img {
    height: 100%;
    max-height: 400px;
    width: 90%;
    border-radius: 4px;
    overflow: hidden;
}

.service-img>img {
    height: 100%;
    width: 100%;
}

.bg-slate {
    background-color: #d6d6d6;
}

.box-shadow:focus {
    box-shadow: 0px 0px 1px 3px var(--second-color) !important;
}

.contact-banner {
    background-image: url(../img/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px !important;
}

.contact-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000c4;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--theme-color);
}

.counter-label {
    font-size: 1.25rem;
}

.counter {
    font-size: 40px;
    font-weight: 600;
}

.counter-box {
    transition: all .4s ease-in-out;
    cursor: pointer;
    color: rgb(105, 105, 105);
}

.counter-box .mb-2 i {
    color: rgb(105, 105, 105);
}

.counter-box {
    color: var(--theme-color);
}

.portfolio-img {
    height: 400px;
    margin-bottom: 3rem;
}

.portfolio-thumbnail {
    position: relative;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
}

.portfolio-thumbnail::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: all .1s ease;
}

.portfolio-thumbnail:hover:after {
    background-color: #be902ebb;
}

.portfolio-thumbnail>.portfolio-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    position: absolute;
    display: flex;
    justify-content: flext-end;
    align-items: center;
    padding: 10%;
    height: 20%;
    background-color: var(--second-color);
    bottom: 30%;
    z-index: 5;
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    opacity: 0;
    transition: all .3s ease;
    right: -200%;
    width: 0%;
}

.portfolio-content>a:hover {
    color: white !important;
}

.portfolio-content>a {
    font-weight: 900;
    font-size: 2.5rem;
    cursor: auto;
}

.header-right-section .btn-outline-main {
    color: var(--theme-color) !important;
}

.header-right-section .btn-outline-main {
    border: 1px solid var(--theme-color);
}

.header-right-section .btn-outline-main:hover {
    color: white !important;
}

.our-member {
    height: 500px;
    width: 100%;
}

.our-member>img {
    height: 80%;
    width: 100%;
}

.portfolio-thumbnail:hover .portfolio-content {
    width: 100%;
    right: 0;
    opacity: 1;
}

.d-flex.flex-column.flex-md-row.justify-content-between.align-items-center.border-top.border-secondary.pt-3.mt-4.wow.animate__.animate__fadeInUp.animated {
    overflow-y: hidden;
}

#scrollTopBtn {
    position: fixed;
    bottom: 15px;
    right: 9px;
    z-index: 99;
    background-color: var(--theme-color);
    border: none;
    outline: none;
    padding: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    border-radius: 3px;
    color: white;
    font-weight: 900;

}

#scrollTopBtn:hover {
    background-color: var(--second-color);
    transform: scale(1.1);
    box-shadow: 0px !important;
}

.chat-btn {
    display: inline-block;
    position: fixed;
    bottom: 66px;
    right: 10px;
    z-index: 1;
    width: 52px;
}

.chat-btn img {
    max-width: 100%;
}

@media(min-width:1200px){
    .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            background-color: #be902e;
            padding: 10px 0;
        }
}

@media(max-width:1200px) {
    .middle-header {
        background-color: white;
        padding: 20px 10px;
        border-radius: 10px;
        width: 500px !important;
        margin-left: auto !important;
    }
}

@media(max-width:400px) {

    .service-banner,
    .contact-banner {
        height: 350px;
    }

    section {
        padding: 50px 5px !important;
    }
}

/* Small devices (max-width: 575px) --------------------------------------------------------*/
@media (max-width: 575px) {

    .title {
        font-size: 35px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-image {
        margin-top: 30px;
        height: 400px;
        position: relative;
        z-index: 20;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .banner-image>img {
        width: 70%;
        height: 100%;
    }

    .testimonial-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .testimonial-slide {
        padding: 0;
    }

    .testimonial-content p {
        text-align: justify;
    }

    .testimonial-section {
        margin-top: 0;
    }

    .blog-wrapper {
        height: 690px !important;
        padding-inline: 0 !important;
    }

    section.sign-up {
        padding: 0 !important;
    }

    #iframe {
        height: 300px;
    }

    #card-slider {
        padding-inline: 0 !important
    }

    .banner-content {
        position: relative;
        z-index: 20;
        display: grid;
        place-content: center;
        margin-top: 80px;
        height: 80%;
    }

    .banner-bottom {
        margin-top: 50px;
    }

    .navbar-wrapper {
        background-color: rgba(250, 0, 0, 0);
        padding: 11px 2px;
    }

    .w-xs-100 {
        width: 100% !important;
    }

    .card {
        flex-basis: 98%;
        padding: 5px;
    }

    .s-dvider {
        margin-left: 0;
    }

    .why-so-link {
        font-size: 18px;
    }

    .why-choose-us-content {
        position: relative;
        top: -6px;
        right: 0;
        bottom: 8px;
        z-index: 9;
    }

    .qater,
    .sign-up,
    .sign-up-inner {
        padding: 20px;
    }

    .sign-up-inner {
        background-color: var(--theme-color);
    }

    .position-absolute-num {
        position: absolute;
        left: 8px;
        bottom: 40%;
    }
}

@media(min-width:400px) and (max-width:480px) {
    .position-absolute-num {
        position: absolute;
        left: 5px;
        bottom: 38%;
    }
}

/* Medium devices (max-width: 767px)------------------------------------------- */



/* Medium to large screen card layout tweaks -------------------------------------*/
@media (min-width: 600px) {
    .card {
        flex: 0 0 calc(30% - 10px);
    }
}

@media (min-width: 992px) {
    .card {
        flex: 0 0 calc(33.333% - 13.33px);
    }
}

@media (min-width: 992px) {
    #navbarContent {
        display: block !important;
    }

    .custom-toggler {
        display: none;
    }
}

/* Show full menu at 1100px and up */
@media (min-width: 1100px) {
    .custom-navbar .navbar-collapse {
        display: flex !important;
    }

    .custom-navbar .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 1099px) {
    .custom-navbar .navbar-collapse {
        display: none !important;
    }

    .custom-navbar .navbar-toggler {
        display: block !important;
    }
}

/* Large devices (max-width: 992px)------------------------------------------------ */
@media (max-width: 992px) {

    .header-right-section {
        display: none !important;
    }

    .middle-header {
        background-color: white;
        padding: 20px 10px;
        border-radius: 10px;
        margin: 0px auto;
    }

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
        gap: 10%;
    }

    .header-right-section {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .middle-header {
        padding: 0 !important;
        height: auto !important;
    }

    .nav-link {
        padding-inline: 20px;
    }

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }

    .theme-btn {
        width: 100% !important;
    }

    .testimonial-image img {
        max-width: 100%;
    }

    .theme-btn-third {
        margin-top: 10px !important;
    }

    .portfolio-content {
        height: 30%;
    }

    .footer {
        padding: 20px;
    }

    .navbar-nav .dropdown-menu a {
        padding: 5px 20px;
        display: block;
        padding-left: 30px;
        color: #fff !important;
        text-transform: uppercase;
    }

    .navbar-nav .dropdown-menu {
        background: #d6ab33;
        border-radius: 0;
    }
}

@media (max-width:350px) {
    .navbar-brand img {
        height: 40px;
        width: 144px !important;
    }

    .position-absolute-num {
        position: absolute;
        left: 4px;
        bottom: 32%;
    }
}

@media(max-width:380px) {
    .position-absolute-num {
        position: absolute;
        left: 8px;
        bottom: 34%;
    }
}

@media (max-width: 1080px) {
    .header-right-section {
        display: none;
    }
}