/*=====================================================
Template Name   : Constro
Description     : Construction HTML5 Template
Author          : LunarTemp
Version         : 1.0
=======================================================*/

/*=====================================================
Table of contents
=======================================================
1. Google fonts
2. Theme variables
3. General css
4. Theme default css
5. Margin & padding
6. Preloader
7. Bs custom css
8. Container
9. Nice select css
10. Play btn
11. Site title css
12. Theme button
13. Header top css
14. Navbar css
15. Navbar multi level dropdown
16. Navbar mega menu
17. Search popup
18. Sidebar popup css 
19. Main section css 
20. Hero css 
21. Breadcrumb css
22. About css 
23. Feature css 
24. Service css 
25. Service single
26. Step/process css 
27. Skill css 
28. Portfolio css 
29. Portfolio single
30. Pricing css
31. Counter css 
32. Team css 
33. Video css 
34. Quote css 
35. Cta css 
36. Partner css 
37. Choose css 
38. Testimonial css 
39. Gallery css 
40. Blog css 
41. Blog single css
42. Blog sidebar widget css
43. Pagination css 
44. Faq css 
45. Contact us css 
46. Auth css 
47. Coming soon css 
48. Error css 
49. Terms/privacy css 
50. Scroll top css
51. Footer css 
52. Home-2 css 
53. Home-3 css 
=======================================================*/

/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*====================
2. Theme variables
======================*/

:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: "Poppins", sans-serif;
    --theme-color: #FF0000;
    --theme-color2: #1749B9;
    --theme-bg-light: #1a1a1a;
    --theme-color-light: rgba(246, 88, 1, .15);
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #002C5B;
    --color-green: #15D4C9;
    --color-blue: #0049D0;
    --color-skyblue: #00BFFF;
    --color-yellow: #FBA707;
    --color-gray: #ECECEC;
    --color-red: #F05454;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #0A2155;
    --footer-text-color: #F5FAFF;
}

/*====================
3. General css
======================*/

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
    background-color: #fff;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-white);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

/*===================
4. Theme default css
======================*/

.bg {
    background: var(--theme-bg-light);
}

/*====================
5. Margin & padding
======================*/

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-80 {
    padding: 80px 0;
}

.py-90 {
    padding: 90px 0;
}

.py-100 {
    padding: 100px 0;
}

.py-110 {
    padding: 110px 0;
}

.py-120 {
    padding: 120px 0;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.my-80 {
    margin: 80px 0;
}

.my-90 {
    margin: 90px 0;
}

.my-100 {
    margin: 100px 0;
}

.my-110 {
    margin: 110px 0;
}

.my-120 {
    margin: 120px 0;
}
.section-space {
    padding: 80px 0;
}
.container-two {
    width: 95%;
    margin: auto;
}
.w-100 {
    width: 100% !important;
}

/*====================
6. Preloader
======================*/

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--color-white);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
.h-100 {
    height: 100%;
}

/*====================
7. Bs custom css
======================*/

/* custom form */

.form-group {
    margin-bottom: 20px;
}

.form-group .form-label {
    color: var(--color-dark);
}

.form-group .form-control,
.form-group .form-select {
    padding: 14px 20px 14px 20px;
    border-radius: 15px;
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--border-info-color);
}

.form-group .form-control::placeholder {
    color: var(--body-text-color);
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 .25rem rgba(246, 88, 1, .25);
}

.form-group .form-icon {
    position: relative;
}

.form-group .form-icon i {
    position: absolute;
    top: 19px;
    left: 20px;
    color: var(--theme-color);
    z-index: 1;
}

.form-group .form-icon .form-control,
.form-group .form-icon .form-select {
    padding-left: 50px;
}

.form-check {
    margin-bottom: 20px;
}

.form-check .form-check-input {
    border-radius: 6px;
    margin-top: 6.5px;
    border-color: var(--border-info-color);
}

.form-check .form-check-label {
    color: var(--color-dark);
}

.form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.form-check .form-check-input:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 .25rem rgba(246, 88, 1, .25);
}

/*====================
8. Container
======================*/

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}

/*====================
9. Nice select css
======================*/

.nice-select {
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 15px;
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    border-color: var(--border-info-color);
}

.nice-select::after {
    width: 9px;
    height: 9px;
    right: 20px;
    margin-top: -6.5px
}

.nice-select:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 .25rem rgba(246, 88, 1, .25)
}

.nice-select .list {
    width: 100%;
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    border-radius: 10px;
    background: var(--theme-bg-light);
    color: var(--theme-color);
}

.form-icon .nice-select {
    padding-left: 50px;
}

/*===================
10. Play btn
=====================*/

.play-btn {
    display: inline-block;
    padding: 16px 60px;
    /* height: 75px; */
    /* width: 75px; */
    /* line-height: 75px; */
    font-size: 20px;
    text-align: center;
    background: #00000059;
    color: var(--color-white) !important;
    /* position: absolute; */
    /* border-radius: 50%; */
    border: none;
    z-index: 1;
}
.play-btn:hover {
    background-color: #333 !important;
}

/* .play-btn i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
} */

@keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

/*====================
11. Site title css
======================*/

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 2px 15px 2px 3px;
    margin-bottom: 15px;
}

.site-title-tagline.light {
    background: var(--color-white);
}

.site-title-tagline i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--color-white);
    color: var(--theme-color);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0;
}

.site-title span {
    color: var(--theme-color);
}

.site-heading p {
    margin-top: 15px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--theme-color);
    width: 90px;
    height: 4px;
    border-radius: 50px;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    border-radius: 0px;
    background-color: var(--color-white);
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(75px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(75px);
    }
    100% {
        transform: translateX(-1px);
    }
}

/*====================
12. Theme button
======================*/

.theme-btn,
.theme-btn2 {
    font-size: 16px;
    color: var(--color-white);
    padding: 10px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn::before,
.theme-btn2::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn:hover::before,
.theme-btn2:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i,
.theme-btn2 i {
    margin-left: 8px;
    transform: rotate(-40deg);
    transition: var(--transition2);
}

.theme-btn:hover i,
.theme-btn2:hover i {
    transform: rotate(0deg);
}

.theme-btn span,
.theme-btn2 span {
    margin-right: 5px;
}

.theme-btn2 {
    background: var(--theme-color2);
    color: var(--color-white);
}

.theme-btn2::before {
    background: var(--theme-color);
}

.theme-btn2:hover {
    color: var(--color-white);
}

/*====================
13. Header top css
======================*/

.header-top {
    padding: 10px 0;
    background: var(--theme-color2);
    position: relative;
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 80px;
    bottom: 0;
    width: 48%;
    background: var(--theme-color);
    clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}

.header-top::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8%;
    background: var(--theme-color);
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header-top-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.header-top-list a {
    color: var(--color-white);
}

.header-top-list a:hover {
    color: var(--color-white)
}

.header-top-list a i {
    color: var(--color-white);
    margin-right: 5px;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-top-social span {
    color: var(--color-white);
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 12px;
    transition: var(--transition);
}

.header-top-social a:hover {
    color: var(--theme-color);
}

.header-top-lang .top-lang {
    color: var(--color-white);
}

.header-top-lang .dropdown-menu {
    min-width: 60px;
    border-radius: 15px;
    padding: 10px;
    border: none;
    box-shadow: var(--box-shadow);
}

.header-top-lang .dropdown-item {
    color: var(--color-dark);
    border-radius: 10px;
}

.header-top-lang .dropdown-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

@media all and (max-width: 1199px) {
    .header-top::before {
        left: 0;
        width: 62%;
    }
    .header-top::after {
        display: none;
    }
    .header-top-social span {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .header-top::before {
        width: 53%;
    }
    .header-top-list ul li:last-child {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .header-top::before,
    .header-top::after {
        display: none;
    }
    .header-top-right {
        margin-top: 15px;
    }
}

/*====================
14. Navbar css
======================*/

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 9999;
    height: 75px;
    width: 100%;
    position: fixed;
    top: 0;
    transition: top .3s linear;
}
/*.nav-menu {
    width: 100%;
    height: 100vh;
    display: block;
    right: 0;
    top: 0;
    position: fixed;
    transition: visibility 0s linear 0.33s;
    z-index: 1;
    background-color: #fff;
}*/
.nav-menu {
    width: 30%;
    height: 100vh;
    display: block;
    right: 0;
    top: 0;
    position: fixed;
    /* transition: visibility 0s linear 0.33s; */
    z-index: 1;
    /* background-color: #fff; */
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 40px;
    padding: 10px;
    cursor: pointer;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: all .5s;
}
.icon-rotate {
    transition: all .5s;
    transform: rotate(360deg);
}
.close-icon i {
    font-size: 30px;
}
.close-icon i:hover {
    /* transform: rotate(360deg) !important; */
}
/*.nav-menu-content {
        position: fixed;
    top: -105vh;
    right: 0;
    bottom: -105vh;
    left: 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 1s .6s ease, top .01s 1s linear, bottom .01s 1s linear;
    pointer-events: none;
}*/
.nav-menu-content {
    position: fixed;
    top: -105vh;
    right: 0;
    bottom: -105vh;
    /* left: 0; */
    overflow: hidden;
    background-color: #fff;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 1s .6s ease, top .01s 1s linear, bottom .01s 1s linear;
    pointer-events: none;
    width: 30%;
}


.nav-menu-content.is-active {
    top: 0;
    bottom: 0;
    opacity: 1;
    transition: opacity 1s .1s ease, top .01s linear, bottom .01s linear;
    pointer-events: all;

}
.nav-menu {
    padding: 70px 40px;
}
.nav-link {
    border: none !important;
    border-bottom: 1px solid #fff !important;
    
}
.rotate {
    transition: all .5s;
    transform: rotate(360deg);
}
.nav-link a {
    position: relative;
}
.nav-link a:after, .nav-link a:before {
    transition: all .5s;
}
.nav-link a::after{
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: ' ';
    color: transparent;
    background: #000;
    height: 3px;
    
}
.nav-link a:hover:after {
    width: 100%;
    /* color: var(--white) !important; */
}
.nav-link.active{
    border: none !important;
}
.nav-link a.active::after{
    width: 90%;
}
/* .nav-link.active::after */
.nav-menu .nav-of-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.nav-menu .nav-of-item .nav {
    border: none !important;
    align-items: center;
}
.nav-tabs .tab-nav-link {
    background-color: #333 !important;
    box-shadow: none !important;
    color: var(--color-white) !important;
    border-radius: 0px !important;
    
}
.project-list-tab .nav {
    border: none !important;
    gap: 10px;
}
.nav-tabs .tab-nav-link.active {
   border-bottom: 1px solid #000;
}
.nav-tabs .nav-unty.active,
.nav-tabs .nav-unty {
    background-color: #1a1a1a !important;

}
.nav-menu .nav-of-item li a {
    font-size: 36px;
    font-weight: 600 !important;
    color: black !important;
    line-height: 56px;
}

.navbar.fixed-top {
    position: fixed;
    /* background: #00000059; */
    /* box-shadow: var(--box-shadow2); */
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    width: 200px;
    height: 60px;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}
.nav-category ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px
}
.nav-category ul li a {
    position: relative;
    font-size: 24px !important;
}
.nav-category ul li a:after, .nav-category ul li a:before {
    transition: all .5s;
}
.nav-category ul li a::after{
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: ' ';
    color: transparent;
    background: #000;
    height: 2px;
    
}
.nav-category ul li a:hover:after {
    width: 100%;
    /* color: var(--white) !important; */
}
/* .nav-category ul li :hover {
    border-bottom: 1px solid #000 !important;
} */
@media all and (min-width: 992px) {
    /* .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 0px 0 25px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--color-dark);
        text-transform: capitalize;
    }
    .navbar.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }
    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }
    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 10px;
        margin-top: 0;
        left: -15px;
        border-radius: 15px;
        border: none;
        background: var(--color-white);
        width: 360px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2);
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 6px 15px;
        font-weight: 500;
        color: var(--color-dark);
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        text-transform: capitalize;
        transition: var(--transition2);
        z-index: 1;
        margin-bottom: 10px;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--theme-color);
        color: var(--color-white);
        padding-left: 25px;
    }
    
    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .dropdown-menu.fade-up {
        top: 140%;
    } */
    /* nav right */
    /* .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-left: 45px;
    }
    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        border: none;
        padding: 0;
        background: transparent;
        transition: var(--transition);
    }
    .nav-right-link:hover {
        color: var(--theme-color);
    }
    .navbar.fixed-top .nav-right-link {
        color: var(--color-dark);
    }
    .navbar.fixed-top .nav-right-link:hover {
        color: var(--theme-color);
    }
    .nav-right .call-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
    }
    .nav-right .call-wrap .icon {
        width: 45px;
        height: 45px;
        line-height: 46px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white);
        text-align: center;
        font-size: 18px;
        margin-top: 5px;
    }
    .nav-right .call-wrap .content span {
        color: var(--theme-color);
        font-weight: 500;
    }
    .nav-right .call-wrap .content h6 a {
        color: var(--color-dark);
        font-weight: 800;
    }
    .nav-right .sidebar-btn span {
        display: block;
        width: 24px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 6px;
        margin-left: auto;
        transition: var(--transition);
    }
    .nav-right .sidebar-btn span:first-child {
        width: 10px;
        margin-top: 0;
    }
    .nav-right .sidebar-btn span:nth-child(3) {
        width: 15px;
    }
    /* navbar light */
    .navbar.light .nav-item .nav-link {
        color: var(--color-white);
    }
    .navbar.light.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }
    .navbar.light .nav-item .nav-link.active,
    .navbar.light .nav-item:hover .nav-link {
        color: var(--theme-color);
    }
    .navbar.light .nav-right-link {
        color: var(--color-white);
    }
    .navbar.light.fixed-top .nav-right-link {
        color: var(--color-dark);
    }
    .navbar.light .nav-right-link:hover {
        color: var(--theme-color);
    }
    .navbar.light .nav-right .sidebar-btn span {
        border-color: var(--color-white);
    }
    .navbar.light.fixed-top .nav-right .sidebar-btn span {
        border-color: var(--color-dark);
    } 
}

@media all and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }
    .nav-right {
        margin-left: 15px;
    }
    .nav-right .sidebar-btn,
    .nav-right .call-wrap {
        display: none;
    }
}

/* navbar mobile menu */

.navbar .mobile-menu-right {
    display: block;
}
/*.navbar-expand-lg .navbar-toggler {
    border: none !important;
    cursor: pointer;*/
    /* background-color: #000; */
    /*border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}*/
.navbar-expand-lg .navbar-toggler {
    border: none !important;
    cursor: pointer;
    background-color: #000;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    padding: 11px;
}
.navbar-expand-lg .navbar-toggler button {
    width: 26px;
    height: 1px;
    background-color: #fff;
    border-radius: 12px;
    display: block;
}
.navbar-toggler i {
    /* color: #fff;
    font-size: 30px; */
}

    .navbar-toggler {
        padding: 0;
        border: none;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    .navbar-toggler span {
        display: block;
            width: 42px;
            /* border-bottom: 3px solid var(--color-dark); */
            border-radius: 50px;
            margin-top: 11px;
            background-color: white;
            height: 2px;
            transition: all 0.4s ease;
        
    }
    .project-navbar-toggler span {
        background-color: black;
    }
    .navbar-toggler span:first-child {
        /* margin-top: 0; */
    }
    /*.navbar-toggler span:nth-child(1) {
        width: 35px;
    }*/
    .navbar-toggler span:nth-child(1) {
    width: 35px;
    margin-top: 0;
    }
    .navbar-toggler span:nth-child(3) {
        width: 30px;
    }
    .navbar-toggler:hover span:nth-child(1) {
        width: 42px;
    }
    .navbar-toggler:hover span:nth-child(3) {
        width: 42px;
    }

    .navbar-toggler-rotate span:nth-child(1){
        transform: rotate(35deg);
        width: 42px;
    }
    .navbar-toggler-rotate span:nth-child(2){
        display: none;
    }
    .navbar-toggler-rotate span:nth-child(3){
        margin-top: 0px;
        transform: rotate(140deg);
        width: 42px;
    }

@media all and (max-width: 991px) {
    .navbar {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .navbar-brand img {
        width: 70px;
    }
    .navbar .offcanvas {
        width: 350px;
    }
    .navbar .offcanvas-header .btn-close {
        background: var(--color-red);
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50px;
        color: var(--color-white);
        font-size: 18px;
        box-shadow: none;
        opacity: 1;
    }
    .navbar .offcanvas-brand {
        width: 90px;
        border:2px solid #000;
    }
    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        margin-right: 0px;
        transition: var(--transition);
    }
    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color);
    }
    .navbar .nav-item .dropdown-menu {
        border-radius: 15px;
    }
    .navbar .nav-item .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px;
    }
    .navbar-toggler {
        padding: 0;
        border: none;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    .navbar-toggler i {
        display: block;
        width: 22px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 5px;
    }
    .navbar-toggler span:first-child {
        margin-top: 0;
    }
    .navbar-toggler span:nth-child(2) {
        width: 15px;
    }
    .navbar .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .navbar .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }
    .navbar .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }
    .nav-right {
        display: none;
    }
    /* navbar light */
    .navbar.light .navbar-toggler span {
        border-color: var(--color-white);
    }
    .navbar.light.fixed-top .navbar-toggler span {
        border-color: var(--color-dark);
    }
    .navbar.light .mobile-menu-right .nav-right-link {
        color: var(--color-white);
    }
    .navbar.light.fixed-top .mobile-menu-right .nav-right-link {
        color: var(--color-dark);
    }
    .navbar.light .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }
        .about-section {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
}
.nav-menu {
    width: 43%;
}
}
@media (max-width: 768px) {
    .navbar-brand img {
        width: 160px;
    }
    .about-section {
    padding-top: 60px;
    padding-bottom: 30px !important;
}
.nav-menu {
    width: 100%;
}
}

/*==============================
15. Navbar multi level dropdown
================================*/

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 8px;
    font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: transparent;
    color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu a:focus {
    background: transparent;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--color-dark)
    }
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }
    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px;
    }
    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}

/*============================
16. Navbar mega menu
==============================*/

@media all and (min-width: 992px) {
    .nav-item.mega-menu {
        position: static;
    }
    .navbar .nav-item.mega-menu .dropdown-menu {
        width: 98.2%;
        left: 12px;
    }
    .navbar .mega-menu .mega-content {
        padding: 12px;
    }
    .navbar .mega-menu .mega-menu-title {
        font-size: 17px;
        margin-bottom: 15px;
        color: var(--color-dark);
    }
    .navbar .mega-menu-img img {
        border-radius: 15px;
    }
    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
        padding-left: 0;
    }
    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
        left: 0;
    }
    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
        padding-left: 15px;
    }
    /* mega-menu small */
    .navbar .nav-item.mega-menu.small {
        position: relative;
    }
    .navbar .mega-menu.small .dropdown-menu {
        width: 340px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media all and (max-width: 991px) {
    .navbar .mega-menu-img {
        display: none;
    }
    .navbar .mega-menu .mega-content h5 {
        margin: 15px 0;
    }
}

/* ======================
17. Search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(10, 33, 85, .95);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50px;
    text-align: center;
    background: var(--color-red);
    text-align: center;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-active .search-popup .close-search span {
    transition: var(--transition);
}

.search-active .search-popup .close-search:hover span {
    transform: rotate(180deg);
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-control {
    position: relative;
    width: 100%;
    height: 70px;
    outline: none;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
    font-size: 40px;
    padding: 0 70px 0 20px;
    transition: all 500ms ease;
    text-transform: capitalize;
}

.search-popup .form-control::placeholder {
    color: var(--color-white);
    font-size: 40px;
}

.search-popup .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50px;
    background: transparent;
    text-align: center;
    font-size: 30px;
    color: var(--color-white);
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    transition: all 500ms ease;
}

.search-popup .form-group button:hover {
    color: var(--theme-color);
}

/*====================
18. Sidebar popup css 
======================*/

.sidebar-popup {
    padding: 20px;
}

.sidebar-popup .btn-close {
    background: var(--theme-color);
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    opacity: 1;
}

.sidebar-popup .btn-close:hover {
    background: var(--color-red);
}

.sidebar-popup .btn-close i {
    transition: var(--transition);
}

.sidebar-popup .btn-close:hover i {
    transform: rotate(180deg);
}

.sidebar-popup-logo img {
    width: 180px;
}

.sidebar-popup-about {
    margin-top: 10px;
}

.sidebar-popup-about h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.sidebar-popup-contact {
    margin-top: 20px;
}

.sidebar-popup-contact h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.sidebar-popup-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-popup-contact li .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--color-white);
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
}

.sidebar-popup-contact li a:hover {
    color: var(--theme-color);
}

.sidebar-popup-social {
    margin-top: 25px;
}

.sidebar-popup-social h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-popup-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
    background: var(--theme-color);
    color: var(--color-white);
    box-shadow: var(--box-shadow);
}

.sidebar-popup-social a:hover {
    background: var(--color-dark);
}
.hero-title {
font-size: 24px;
    margin-bottom: 60px;
    color: var(--color-white);
    position: absolute;
    z-index: 99999;
    bottom: 20px;
    left: 50px;
}
/*====================
19. Main section css 
======================*/

.main {
    margin-top: 0rem;
}

/*====================
20. Hero css 
======================*/

.hero-single {
    padding-top: 160px;
    padding-bottom: 160px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 80vh;
}

.hero-single::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -0.5px;
    background: linear-gradient(to bottom right, rgba(40, 0, 60, 20) 0%, rgba(40, 0, 0, 0.2) 100%);
    z-index: -1;
}

.hero-single .hero-content {
    height: 100%;
}

.hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--color-white);
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.hero-single .hero-content .hero-sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: var(--theme-color);
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0;
    text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
}

.hero-single .hero-content p {
    color: var(--color-white);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 35px;
}

@media all and (max-width: 1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 36px;
    }
}

@media all and (max-width: 767px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }
    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }
}

/* hero-slider */
.section-bg-one img {
  animation: zoomSlide 6s ease-in-out infinite alternate;
}

@keyframes zoomSlide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.section-bg{
width: 100% !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 980px;
    position: relative;
    
}
.section-bg .banner-content {
    position: absolute;
    bottom: 160px;
    left: 40px;
}
.section-bg .banner-content-tow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-bg .banner-content-three {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*  */
.menu{
  position:fixed;
  top:320px;
  right:20px;
  z-index:1000;
}

.nav-btn{
    /* width: 3px; */
    height: 12px;
  display:block;
  margin-bottom:10px;
  /* padding:8px 15px; */
  border: 1px solid #fff;
  background: none;
  cursor:pointer;
}

.nav-btn.active{
  border: 1px solid #fff;
  background: #fff;
}

/* Full screen section */
.page-section{
  /* height:100vh; */
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  flex-direction: column;
}

/* #section1{ background:#f1f1f1; }
#section2{ background:#dcdcdc; }
#section3{ background:#c7c7c7; } */
/*  */
.banner-heading-text{
        margin-bottom: 0;
    transform-origin: left bottom;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .3s 1.4s ease-in-out, opacity .3s .3s ease-in-out;
    transform-origin: bottom left;
    margin-bottom: 1.25rem;
    /* opacity: 0; */
    line-height: .9;
    font-size: 2em;
    text-transform: uppercase;
    text-shadow:  1px 1px #000,0 1px 2px #000,0 2px 6px #000;
}
.banner-subtext {
    font-size: 18px;
    color: #fff;
    text-shadow:  1px 1px #000,0 1px 2px #000,0 2px 6px #000;
}
.banner-bottom-title {
    font-size: 40px;
    color: #000;
    /* text-shadow:  1px 1px #000,0 1px 2px #000,0 2px 6px #000; */
}
.last-banner-title {
    font-size: 24px;
    line-height: 40px;
}

.banner-bottom-content {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner-bottom-content i {
    font-size: 24px;
    margin-top: 40px;
    padding: 24px;
    border: 1px solid #000;
    color: #000;
}
.banner-content-border {
    border-bottom: 2px solid #000;
}



/*====================
50. Scroll top css
======================*/

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    /* transform: rotate(-40deg); */
    z-index: 1;
}

#scroll-top:hover {
    transform: rotate(0);
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .banner-heading-text {
        font-size: 70px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-heading-text {
        font-size: 60px;
    }
}

@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
    .section-bg {
    min-height: 480px;
}
.banner-heading-text {
    font-size: 1em;
}
.section-bg .banner-content-tow {
    top: 16%;
}
}
@media all and (min-width: 1440px) and (max-width: 1600px) {
    .section-bg {
        min-height: 910px;
    }
}
@media all and (min-width: 1300px) and (max-width: 1439px) {
    .section-bg {
        min-height: 810px;
    }
    .menu {
        top: 260px;
    }
}

@media all and (min-width: 1240px) and (max-width: 1399px) {
    .banner-bottom-content {
        padding: 60px 0;
    }
    .banner-bottom-title {
        font-size: 32px;
    }
    .section-bg {
        min-height: 810px;
    }
    .menu {
        top: 260px;
    }
}
@media all and (min-width: 990px) and (max-width: 1239px) {
    .section-bg {
        min-height: 810px;
    }
    .menu {
        top: 190px;
    }
}
@media all and (min-width: 768px) and (max-width: 989px) {
   
    .section-bg {
    min-height: 360px;
}
.banner-heading-text {
    font-size: 24px;
    line-height: 30px;
}
.banner-heading-text br, 
.banner-bottom-title br, 
.banner-subtext br {
    display: none;
}
.section-bg .banner-content {
    bottom: 30px;
}
.banner-bottom-content {
        padding: 40px 0;
    }
    .banner-bottom-title {
        font-size: 24px;
    }
    .banner-bottom-content i {
    font-size: 20px;
    margin-top: 30px;
    padding: 16px;
}

}
@media all and (min-width: 300px) and (max-width: 767px) {
   
    .section-bg {
    min-height: 20px;
    }
    .banner-heading-text {
        font-size: 24px;
        line-height: 30px;
    }
    .banner-heading-text br, 
    .banner-bottom-title br, 
    .banner-subtext br {
        display: none;
    }
    .section-bg .banner-content {
        bottom: 30px;
    }
    .banner-bottom-content {
            padding: 40px 0;
        }
    .banner-bottom-title {
        font-size: 24px;
    }
    .banner-bottom-content i {
    font-size: 20px;
    margin-top: 30px;
    padding: 16px;
    }
    .banner-subtext {
        line-height: 20px;
    }
    .section-bg .banner-content {
        bottom: 30px;
    }
    .banner-bottom-title {
        font-size: 24px;
    }
    .section-bg .banner-content-tow {
    top: 11%;
}
}


/*====================
51. Footer css 
======================*/
.footer-left .footer-logo {
    width: 200px;
    height: 60px;
}
.project-footer {
  /* position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px; */
}
.footer-area {
    border-top: 2px solid #333;
}
.footer-menu li a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}
.footer-menu li a:hover{
    transition: var(--transition);
    opacity: 1;
}
.footer-right .social-links {
    gap: 10px;
}
.footer-right .social-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    height: 40px;
    width: 40px;
    padding: 0;
    min-width: auto;
    justify-content: center;
    background-color: #333;
}
/*====================
51. Footer css 
======================*/
.footer-left .footer-logo {
    width: 200px;
    height: 60px;
}
.footer-area {
    /* border-top: 2px solid #333; */
    background-color: #000;
}
.footer-menu li a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}
.footer-menu li a:hover{
    transition: var(--transition);
    opacity: 1;
}
.footer-right .social-links {
    gap: 10px;
}
.footer-right .social-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    height: 40px;
    width: 40px;
    padding: 0;
    min-width: auto;
    justify-content: center;
    background-color: #333;
}


/* 
.footer {
    width: 100%;
    background-color: #000;
}
.footer .container .banner-content-border {
    border-bottom: 2px solid #fff;
}
.footer .container .banner-bottom-content .banner-bottom-title {
    color: #FFF;
}
.footer .container .banner-bottom-content i {
    border: 1px solid #fff;
    color: #fff;
} */



/* ********************
    Product  page css
********************* */
.main-menu button,
.sub-menu button{
padding:8px 18px;
margin:5px;
border:none;
background: none ;
/* background:#ddd; */
cursor:pointer;
/* border: 1px solid #000; */
text-transform: uppercase;
}

button.active{
background:black;
color:white;
}

.products{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

#loadMore{
margin-top:30px;
padding:12px 25px;
cursor:pointer;
}

/*---------------gallery box -----------------*/
.gallery-box {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
  transition: transform 0.3s;
}
/* .gallery-box img{
    height: 300px;
    object-fit: cover;
} */
 .gallery-design-item .gallery-design-list {
    max-height: 300px;
 }
 .gallery-design-item .first-img {
    height: 100%;
 }
.gallery-design-item .gallery-design-list img {
    height: 100%;
    width: 100%;
}
.gallery-design-item .gallery-design-list .last-image {
    height: 170px;
}
.gallery-box:hover {
  /* transform: scale(1.03); */
}

.gallery-title {
position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00000059;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    padding: 8px 16px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    height: 100%;
    display: none;
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-text h4 {
    color: #000;
}

.gallery-box:hover .gallery-title {
    display: block;
}*/

.gallery-title i {
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    /* border: 1px solid #333; */
    background: #333;
}
.gallery-title .gallery-text i {
    margin-right: 8px;
    border: none;
    background: none;
}
.gallery-column {
    padding: 0.5px !important;
}


@media (max-width: 990px) {
    .nav-menu-content {
        width: 50%;
    }
    .nav-menu {
        width: 50%;
    }
    .gallery-design-item .gallery-design-list .last-image{
        height: 100% !important;
    }
}
@media (max-width: 767px) {
    .nav-menu-content {
        width: 100%;
    }
    .nav-menu {
        width: 100%;
    }
  .site-breadcrumb-2{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .site-breadcrumb-2 .breadcrumb-title{
    font-size: 32px;
  }
    .gallery-design-item .gallery-design-list {
        max-height: 100%;
    }
    .gallery-design-item .first-img {
        height: 100%;
    }
    .gallery-design-item .gallery-design-list img {
        height: 100%;
        width: 100%;
    }
    .gallery-design-item .gallery-design-list .last-image {
        height: 100%;
    }

}


.fancybox__container {
    z-index: 99999 !important;
}


/* ******************   Products Details Page  */
.products-details-content {
    padding: 60px 0;
}
.products-details-content .text {
    font-size: 24px;
    line-height: 1.6;
}
.project-status-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}
.project-status-item p {
    font-size: 18px;
    color: #1f1e1e;
}

.project-details-text {
    font-size: 20px;
    line-height: 30px;
    color: #757F95;
    margin-top: -12px;
}
.product-gallery-box img {
    height: 260px;
    width: 100%;
}
/* credits */
.credits {
    background-image: url(../img/breadcrumb/Banner-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.credits-status {
    background-color: #fff;
    padding: 40px;
}

.credits-status-title {
    font-size: 62px;
    text-align: center;
    /* text-transform: uppercase; */
    /* color: #000; */
    margin-bottom: 20px;
        color: transparent;
    -webkit-text-stroke: .0125em black;
    text-stroke: .0125em black;
    text-transform: uppercase;
}

@media (max-width: 767px) {
            .project-details-text {
    margin-top: 0px !important;
    }
    .credits-status-title {
        font-size: 42px;
    }

 }
 .sustainability-text img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
 }
 .client {
     display: flex;
     flex-direction: row;
     gap: 20px;

 }
 .client img {
    box-shadow: 0px 0px 31px -5px rgba(0, 0, 0, 0.14) !important;
    padding: 20px 30px;
    border-radius: 15px;
    /* cursor: pointer; */
    max-width: 190px;
    /* max-height: 170px; */
    height: 170px;
 }
 .section-title {
    font-size : 32px;
    text-align: center;
    color: #000;
 }
 .section-bg-two .products-section-bg-one img {
    max-height: 600px;
 }
 .bg-heading-width {
     width: 80%;
 }
 .bg-heading-width-two {
     width: 60%;
 }
 .bg-hedding-text-two span {
    color: #fff;
 }
 .bg-hedding-text-two {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 12px 30px;
    border-radius: 12px;
 }
 .team-content {
    position: relative;
 }
 .team-text {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 18px;
    text-align: center;
    background-color: #fff;
    display: none;
    width: 100%;
    /* height: 100%; */
    height: 100px;
    padding: 12px 0;
}
 .team-text h3 {
    color: #000;
    font-size: 20px;
 }
 .team-content:hover .team-text {
    display: block;
 }

 .sub-btn.active,
.main-btn.active{
  background:black;
  color:white;
}

 /*=======================================================================
[25] Contact Page  Start Hear
=========================================================================*/
.banner-4 {
  background: url(../images/banner-bg/Contact-bg.png);
}
.get-in-touch{
  background: var(--shade-bg-5);
}
/* Custom style */
.accordion-button::after {
  background-image: url("../images/svg/add-circle.svg");
  transform: scale(.7) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/svg/clear-circle.svg");
}
.get-in-touch-accordion .get-in-touch-accordion-item{
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--text-mid);
}
.get-in-touch-accordion .get-in-touch-accordion-item .accordion-header .accordion-button{
  padding: 0 0 20px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  background: var(--shade-bg-5);
}
.accordion-button:not(.collapsed) {
  color: var(--text-dark);
  background-color: var(--white);
  box-shadow: inset 0 0px 0 rgba(0,0,0,.125);
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--white);
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13,110,253,.25);
}

.get-in-touch-accordion .get-in-touch-accordion-item .accordion-collapse .card-body {
  padding: 0 0 16px 0;
  background: var(--shade-bg-5);
}
.get-in-touch-accordion .get-in-touch-accordion-item .accordion-collapse .card-body p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.touch-form-box{
  padding: 30px;
  background: #f6f6f6;
  box-shadow: 5px 9px 15px 0px #E9E7E7;
}
.touch-form-box .form-control{
  padding: 14px 20px;
  background-color: var(--shade-bg-1);
  /* border: 1px solid #000; */
  box-shadow: 5px 9px 15px 0px #E9E7E7;
}
.btn-fill-2 {
    padding: 16px 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #636363;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 5px 9px 15px 0px #E9E7E7;
}
.responsive-map{
  overflow: hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  }
 
  .get-in-touch-content {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .get-in-touch-list {
      display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #636363;
    border-radius: 12px;
    transition: all 300ms ease;

  }
  .get-in-touch-list .icon{
    margin-right: 20px;

  }
  .get-in-touch-list .icon i {
    color: #FFF;
    font-size: 24px;
     background: #636363;
     width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
   }
   .get-in-touch-list .content h4 {
      color: #636363;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 8px;
      
      
    }
    .get-in-touch-list .content p{
        color: #636363;
        font-size: 18px;
        font-weight: 500;
        
    }
    .get-in-touch-list:hover {
        /* background-color: rgba(0,0,0,0.1); */
        box-shadow: 5px 9px 15px 0px #E9E7E7;
    }
    .touch-form-box .content h2 {
        color: #636363;
    }