/*---- 01. THEME DEFAULT CSS START ----*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
    /**
  @font family declaration
  */
    --bd-ff-body: 'Poppins', sans-serif;
    --bd-ff-heading: 'Poppins', sans-serif;
    --bd-ff-p: 'Poppins', sans-serif;
    --bd-ff-fontawesome: "Font Awesome 6 Pro";
    /**
  @color declaration
  */
    --bd-common-white: #ffffff;
    --bd-common-black: #000;
    --bd-heading-primary: #000;
    --bd-grey-1: #f5f8fb;
    --bd-grey-2: #e2ebf4;
    --bd-text-body: #888888;
    --bd-text-1: #000;
    --bd-theme-primary: #69b7d8;
    --bd-theme-secondary: #cc396f;
    --bd-theme-light: #e1f6ff;
    --bd-border-1: #888888;
    --bd-border-2: #b7c3cf;
    /**
  @font weight declaration
  */
    --bd-fw-normal: normal;
    --bd-fw-elight: 200;
    --bd-fw-light: 300;
    --bd-fw-regular: 400;
    --bd-fw-medium: 500;
    --bd-fw-sbold: 600;
    --bd-fw-bold: 700;
    --bd-fw-ebold: 800;
    --bd-fw-black: 900;
    /**
  @font size declaration
  */
    --bd-fz-body: 14px;
    --bd-fz-p: 14px;
    --bd-fz-h1: 40px;
    --bd-fz-h2: 36px;
    --bd-fz-h3: 24px;
    --bd-fz-h4: 20px;
    --bd-fz-h5: 16px;
    --bd-fz-h6: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bd-ff-body);
    font-size: var(--bd-fz-body);
    font-weight: normal;
    color: var(--bd-text-body);
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bd-ff-heading);
    color: var(--bd-heading-primary);
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.2;
    -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;
}

h1 {
    font-size: var(--bd-fz-h1);
}

h2 {
    font-size: var(--bd-fz-h2);
}

h3 {
    font-size: var(--bd-fz-h3);
}

h4 {
    font-size: var(--bd-fz-h4);
}

h5 {
    font-size: var(--bd-fz-h5);
}

h6 {
    font-size: var(--bd-fz-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--bd-ff-p);
    font-size: var(--bd-fz-p);
    font-weight: var(--bd-fw-normal);
    color: var(--bd-text-body);
    margin-bottom: 15px;
    line-height: 26px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -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;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--bd-common-black);
    color: var(--bd-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--bd-common-black);
    color: var(--bd-common-white);
    text-shadow: none;
}

::selection {
    background: var(--bd-common-black);
    color: var(--bd-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--bd-common-black);
    font-size: var(--bd-fz-body);
    opacity: 1;
}

*::placeholder {
    color: var(--bd-common-black);
    font-size: var(--bd-fz-body);
    opacity: 1;
}

.w-img img {
    width: 100%;
    height: auto;
}

.s-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.m-img img {
    max-width: 100%;
    height: auto;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Body Overlay */
.body-overlay {
    background-color: var(--bd-common-black);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -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;
}

.body-overlay:hover {
    cursor: crosshair;
}

.body-overlay.opened {
    opacity: 0.5;
    visibility: visible;
}

/* Progress Wrap */
@media (max-width: 575px) {
    .progress-wrap {
        right: 15px;
        bottom: 15px;
    }
}

.bd-basic-pagination ul li {
    display: inline-block;
}

.bd-basic-pagination ul li:not(:last-child) {
    margin-right: 10px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-basic-pagination ul li:not(:last-child) {
        margin-right: 5px;
    }
}

.bd-basic-pagination ul li a,
.bd-basic-pagination ul li span {
    display: inline-block;
    width: 52px;
    height: 52px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #d1dbe5;
    font-size: 18px;
    font-weight: 600;
}

.bd-basic-pagination ul li a:hover,
.bd-basic-pagination ul li a.current,
.bd-basic-pagination ul li span:hover,
.bd-basic-pagination ul li span.current {
    background: var(--bd-grey-2);
    border-color: transparent;
}

.border {
    border-style: solid;
    border-width: 1px;
    border-color: #d1dbe5;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    left: 903px;
    top: 1747px;
    width: 52px;
    height: 52px;
    z-index: 63;
}

.nice-select::after {
    border: none;
    background-color: transparent;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    right: 0;
    content: "\f107";
    font-family: var(--bd-ff-fontawesome);
    transform-origin: center;
    color: var(--bd-common-black);
    font-weight: 500;
    height: auto;
    width: auto;
}

.nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -moz-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    -o-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

/* cart plus minus default style css */
.cart-plus,
.cart-minus {
    width: 25px;
    height: 30px;
    border: 2px solid var(--bd-border-1);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
}

.cart-plus:hover,
.cart-minus:hover {
    cursor: pointer;
    color: var(--bd-common-white);
    background: var(--bd-theme-1);
    border-color: var(--bd-theme-1);
}

.cart-input {
    height: 30px;
    width: 32px;
    text-align: center;
    font-size: 14px;
    border: none;
    border-top: 2px solid var(--bd-border-1);
    border-bottom: 2px solid var(--bd-border-1);
    display: inline-block;
    vertical-align: middle;
    margin: 0 -3px;
    padding-bottom: 0px;
}

.cart-input:focus {
    outline: none;
}

/* dropcap */
.bd-dropcap {
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    float: left;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    color: var(--bd-common-black);
    background-color: var(--bd-common-white);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    margin-right: 20px;
}

/* button */
.bd-btn {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--bd-theme-secondary);
    text-align: center;
    padding: 12px 65px 12px 35px;
    text-transform: uppercase;
    position: relative;
    border: 1px solid var(--bd-theme-secondary);
    z-index: 1;
    overflow: hidden;
}

.bd-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: inline-block;
    background-color: var(--bd-theme-secondary);
    z-index: -1;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.bd-btn span {
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 15px;
    border-left: 1px solid var(--bd-theme-secondary);
    display: inline-block;
}

.bd-btn span::after {
    width: 0;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.bd-btn:hover {
    color: var(--bd-common-white);
}

.bd-btn:hover::after {
    width: 100%;
}

.bd-btn:hover span {
    color: var(--bd-theme-secondary);
    background-color: var(--bd-common-white);
    transition-delay: 0.5s;
    transition-duration: 0.7s;
}

/* pulse btn */
.pulse-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--bd-common-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--bd-common-black);
    animation: pulse 2s infinite;
}

.pulse-btn:hover {
    background-color: var(--bd-common-black);
    color: var(--bd-common-black);
}

.pulse-btn i {
    padding-left: 2px;
}

/* hambur btn */
.hamburger-btn {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: 0;
}

.hamburger-btn span {
    display: inline-block;
    width: 100%;
    background: var(--bd-common-black);
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    opacity: 1;
    left: 0;
    z-index: 1;
}

.hamburger-btn span:nth-child(1) {
    top: 0;
}

.hamburger-btn span:nth-child(2) {
    top: 10px;
}

.hamburger-btn span:nth-child(3) {
    top: 20px;
}

/* link btn style 1 */
.link-btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--bd-text-3);
    background: transparent;
    border: 1px solid var(--bd-border-2);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    padding-right: 25px;
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    overflow: hidden;
}

.link-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
}

.link-btn i:last-child {
    left: 0%;
    visibility: hidden;
    opacity: 0;
}

.link-btn:hover {
    color: var(--bd-common-white);
    background-color: var(--bd-theme-1);
    border-color: var(--bd-theme-1);
}

.link-btn:hover i {
    left: 100%;
    visibility: hidden;
    opacity: 0;
}

.link-btn:hover i:last-child {
    left: 50%;
    visibility: visible;
    opacity: 1;
}

/* link btn style 2 */
.link-btn-2 {
    position: relative;
    font-size: 14px;
    color: var(--bd-theme-secondary);
    font-weight: 500;
    padding-right: 21px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.link-btn-2 i {
    font-size: 14px;
    position: absolute;
    top: 12px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
}

.link-btn-2 i:first-child {
    right: 10%;
    visibility: hidden;
    opacity: 0;
}

.link-btn-2 i:last-child {
    right: 0;
}

.link-btn-2:hover {
    color: var(--bd-common-black);
}

.link-btn-2:hover i:first-child {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.link-btn-2:hover i:last-child {
    right: -10%;
    visibility: hidden;
    opacity: 0;
}

.link-btn-2.link-prev {
    padding-right: 0;
    padding-left: 21px;
}

.link-btn-2.link-prev i:first-child {
    left: 10%;
    right: auto;
}

.link-btn-2.link-prev i:last-child {
    left: 0;
    right: auto;
}

.link-btn-2.link-prev:hover i:first-child {
    left: 0%;
    right: auto;
}

.link-btn-2.link-prev:hover i:last-child {
    left: -10%;
    right: auto;
}

.link-btn-3 {
    position: relative;
    font-size: 14px;
    color: var(--bd-theme-primary);
    font-weight: 500;
    padding-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.link-btn-3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: var(--bd-theme-primary);
    -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;
}

.link-btn-3:hover {
    color: var(--bd-theme-primary);
}

.link-btn-3:hover::after {
    width: 30%;
}

.bd-border-btn {
    position: relative;
    font-size: 14px;
    color: var(--bd-common-white);
    font-weight: 500;
    padding-left: 40px;
    padding-right: 60px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--bd-common-white);
    height: 60px;
    line-height: 60px;
}

.bd-border-btn i {
    font-size: 14px;
    position: absolute;
    top: 50%;
    padding-right: 30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
}

.bd-border-btn i:first-child {
    right: 10%;
    visibility: hidden;
    opacity: 0;
}

.bd-border-btn i:last-child {
    right: 0;
}

.bd-border-btn:hover {
    background-color: var(--bd-common-white);
    color: var(--bd-common-black);
    border-color: transparent;
}

.bd-border-btn:hover i:first-child {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.bd-border-btn:hover i:last-child {
    right: -10%;
    visibility: hidden;
    opacity: 0;
}

.bd-border-btn.link-prev {
    padding-right: 0;
    padding-left: 21px;
}

.bd-border-btn.link-prev i:first-child {
    left: 10%;
    right: auto;
}

.bd-border-btn.link-prev i:last-child {
    left: 0;
    right: auto;
}

.bd-border-btn.link-prev:hover i:first-child {
    left: 0%;
    right: auto;
}

.bd-border-btn.link-prev:hover i:last-child {
    left: -10%;
    right: auto;
}

/* pulse effect animation */
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes scale {
    0% {
        width: 5px;
    }

    50% {
        width: 30px;
    }

    100% {
        width: 5px;
    }
}

@keyframes scale {
    0% {
        width: 5px;
    }

    50% {
        width: 30px;
    }

    100% {
        width: 5px;
    }
}

@-webkit-keyframes zoom {
    0% {
        scale: 0.5;
    }

    50% {
        scale: 1;
    }

    100% {
        scale: 0.5;
    }
}

@keyframes zoom {
    0% {
        scale: 0.5;
    }

    50% {
        scale: 0.8;
    }

    100% {
        scale: 0.5;
    }
}

/*---- Background color ----*/
.grey-bg {
    background: var(--bd-grey-1);
}

.grey-bg-2 {
    background: var(--bd-grey-2);
}

.white-bg {
    background: var(--bd-common-white);
}

.black-bg {
    background: var(--bd-common-black);
}

.theme-bg {
    background-color: var(--bd-grey-1);
}

.theme-bg-2 {
    background-color: var(--bd-grey-2);
}

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



/*---- OFFCANVAS CSS START ----*/
.offcanvas__area {
    position: fixed;
    right: -490px;
    top: 0;
    width: 450px;
    height: 100%;
    min-height: 768px;
    background: var(--bd-common-white) none repeat scroll 0 0;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 1s;
    z-index: 9999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

.offcanvas__area::-webkit-scrollbar {
    display: none;
}

.offcanvas__area.offcanvas-opened {
    right: 0px;
}

@media (max-width: 575px) {
    .offcanvas__area {
        width: 290px;
    }
}

.offcanvas__wrapper {
    position: relative;
    padding: 45px;
    background-color: var(--bd-common-white);
    overflow: auto;
    width: 100%;
    height: 100%;
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.offcanvas__close-btn {
    display: inline-block;
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 36px;
    background: var(--bd-common-black);
    color: #fff;
}

.offcanvas__close-btn:hover {
    background: var(--bd-theme-primary);
}

.offcanvas__top {
    padding-bottom: 20px;
    border-bottom: 1px solid #D5D5D5;
}

.offcanvas__color {
    margin-bottom: 40px;
}

.offcanvas__color h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.offcanvas__color input {
    display: none;
}

.offcanvas__color label {
    width: 100%;
    height: 60px;
    background-color: var(--bd-theme-primary);
}

.offcanvas__color label:hover {
    cursor: pointer;
}

.offcanvas__search {
    position: relative;
}

.offcanvas__search input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-right: 20px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #D5D5D5;
    font-size: 14px;
    color: var(--bd-common-black);
}

.offcanvas__search input::placeholder {
    color: var(--bd-text-1);
}

.offcanvas__search input:focus {
    border-color: var(--bd-theme-primary);
}

.offcanvas__search button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--bd-text-1);
}

.offcanvas__text p {
    margin-bottom: 25px;
}

.offcanvas__contact h4 {
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--bd-common-black);
}

.offcanvas__contact ul li {
    -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;
}

.offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
}

.offcanvas__contact ul li i {
    -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;
}

.offcanvas__contact ul li:hover i {
    background: var(--bd-theme-primary);
    color: var(--bd-common-white);
    border-color: var(--bd-theme-primary);
}

.offcanvas__contact ul li:hover a {
    color: var(--bd-theme-primary);
}

.offcanvas__contact-icon i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--bd-border-1);
}

.offcanvas__contact-text a {
    font-size: 18px;
    color: var(--bd-text-1);
}

.offcanvas__contact-text a:hover {
    color: var(--bd-theme-primary);
}

.offcanvas__map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.offcanvas__social ul li {
    display: inline-block;
}

.offcanvas__social ul li:not(:last-child) {
    margin-right: 5px;
}

.offcanvas__social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: var(--bd-grey-1);
    color: var(--bd-theme-primary);
    -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;
}

.offcanvas__social ul li a:hover {
    background: var(--bd-theme-primary);
    color: var(--bd-common-white);
}

.offcanvas__notification-icon a {
    font-size: 14px;
    color: var(--bd-common-black);
    position: relative;
}

.offcanvas__notification-icon a .notification-count {
    position: absolute;
    top: -4px;
    right: -13px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--bd-theme-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--bd-common-white);
    text-align: center;
}

.offcanvas__notification-text p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--bd-common-black);
    font-size: 14px;
}

.offcanvas__notification-text p .notification-number {
    color: var(--bd-theme-primary);
}

.offcanvas__notification-text p a {
    color: var(--bd-theme-primary);
}

.offcanvas__btn a {
    margin-bottom: 20px;
}

/* BREADCRUMB CSS START */
.breadcrumb__section {
    padding-top: 300px;
    padding-bottom: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.breadcrumb__section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.breadcrumb__content {
    position: relative;
    z-index: 2;
}

.breadcrumb__title {
    font-size: 48px;
    color: var(--bd-common-white);
    letter-spacing: 4px;
    text-transform: uppercase;
}
@media (max-width: 767px){
    .breadcrumb__title {
        font-size: 38px;
    }
}
@media (max-width: 420px){
    .breadcrumb__title {
        font-size: 34px;
    }
}


.breadcrumb__list span {
    font-size: 16px;
    color: var(--bd-common-white);
    font-weight: 600;
    padding-right: 3px;
    margin-right: 3px;
    text-transform: capitalize;
}

.breadcrumb__list span a:hover {
    color: var(--bd-theme-primary);
}

/* ACCORDION CSS START */
.bd-accordion .accordion-item {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bd-accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.bd-accordion .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.bd-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.bd-accordion .accordion-button {
    padding: 30px 0;
    padding-right: 15px;
    font-size: 24px;
    font-weight: 500;
    color: var(--bd-common-white);
    background-color: transparent;
}

.bd-accordion .accordion-button::after {
    position: absolute;
    content: "\f107";
    font-family: var(--bd-ff-fontawesome);
    background-image: none;
    top: 28%;
    right: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--bd-theme-1);
    width: auto;
    height: auto;
    font-weight: 500;
}

.bd-accordion .accordion-button.collapsed::after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    color: var(--bd-common-white);
}

.bd-accordion .accordion-button:not(.collapsed) {
    color: var(--bd-theme-1);
    background-color: transparent;
    box-shadow: none;
}

.bd-accordion .accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.bd-accordion .accordion-button:hover {
    color: var(--bd-theme-1);
}

.bd-accordion .accordion-button:hover::after {
    color: var(--bd-theme-1);
}

.bd-accordion .accordion-body {
    padding: 0 0 25px;
}

.bd-accordion .accordion-body p {
    font-size: 16px;
    color: var(--bd-text-1);
}

/* NAV TAB CSS START */
.bd-tab .nav-tabs {
    padding: 0;
    margin: 0;
    border: 0;
}

.bd-tab .nav-tabs .nav-link {
    padding: 0;
    margin: 0;
    border: 0;
}

/* SECTION TITLE CSS START */
.bd-section__subtitle {
    font-size: 14px;
    font-weight: var(--bd-fw-bold);
    color: var(--bd-theme-primary);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bd-section__title {
    font-size: 24px;
    color: var(--bd-common-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.5;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-section__title {
        letter-spacing: 2px;
    }

    .bd-section__title br {
        display: none;
    }
}

.bd-section__title.bd-title-border {
    position: relative;
}

.bd-section__title.bd-title-border::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 30px;
    height: 3px;
    display: inline-block;
    background-color: var(--bd-theme-primary);
    animation: scale infinite 3s;
}

.bd-section__subtitle-lg {
    font-size: 21px;
    color: var(--bd-theme-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-section__subtitle-lg {
        letter-spacing: 2px;
    }

    .bd-section__subtitle-lg br {
        display: none;
    }
}

.bd-section__title-lg {
    font-size: 36px;
    color: var(--bd-common-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-section__title-lg {
        letter-spacing: 2px;
    }

    .bd-section__title-lg br {
        display: none;
    }
}

@media (max-width: 420px){
    .bd-section__title-lg {
        font-size: 30px;
    }
}

/*---- 02. HEADER CSS START ----*/
.bd-header__transparent {
    /* position: absolute;
    left: 0;
    right: 0;
    z-index: 99; */
    width: 100%;
    background: transparent;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.02);
}

.bd-header__search-form {
    position: absolute;
    right: 0;
    top: 60px;
    width: 400px;
    padding: 40px;
    background-color: var(--bd-common-black);
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    z-index: 9;
    -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;
}

.bd-header__search-form form {
    position: relative;
}

.bd-header__search-form form input {
    width: 100%;
    height: 50px;
    padding-right: 50px;
    padding-left: 20px;
    border: 2px solid transparent;
}

.bd-header__search-form form input::-webkit-input-placeholder {
    color: gray;
}

.bd-header__search-form form input:-moz-placeholder {
    color: gray;
}

.bd-header__search-form form input::-moz-placeholder {
    color: gray;
}

.bd-header__search-form form input:-ms-input-placeholder {
    color: gray;
}

.bd-header__search-form form input:focus {
    outline: none;
    border-color: var(--bd-theme-primary);
}

.bd-header__search-form form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.bd-header__search-form form button:hover {
    color: var(--bd-common-black);
}

.bd-header__search-form.show {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.bd-header__search-btn {
    font-size: 18px;
    color: var(--bd-common-black);
}

.bd-header__search-btn-close {
    position: absolute;
    left: 0;
    transform: scale(0);
    font-size: 20px;
    color: var(--bd-common-black);
}

.bd-header__search.show .bd-header__search-btn {
    opacity: 0;
}

.bd-header__search.show .bd-header__search-btn-close {
    transform: scale(1);
}

.bd-header__hamburger {
    margin-top: 3px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-header__main {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.bd-header__main.header-sticky {
    position: fixed !important;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 99;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    background: var(--bd-common-white);
}

/* logo */
.logo img {
    max-width: 200px;
}
@media (max-width: 1199px) {
    .logo img {
        max-width: 100%;
    }
}

/* main menu css */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu {
        margin-left: 12px;
    }
}

.main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu ul li {
        margin-right: 20px;
    }
}

.main-menu ul li a {
    display: inline-block;
    font-size: 14px;
    color: var(--bd-common-black);
    padding: 23px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.main-menu ul li a::before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 20px;
    width: 0;
    height: 2px;
    display: inline-block;
    background-color: var(--bd-theme-primary);
    -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;
}

.main-menu ul li.has-dropdown>a {
    position: relative;
}

.main-menu ul li.has-dropdown>a::after {
    content: "\f107";
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
    font-size: 14px;
    color: var(--bd-common-black);
    font-family: var(--bd-ff-fontawesome);
    font-weight: 500;
    margin-left: 5px;
    display: inline-block;
}

.main-menu ul li .submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 300px;
    background: var(--bd-common-white);
    z-index: 99;
    -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;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
}

.main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.main-menu ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu ul li.bd-brand__item .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.main-menu ul li .submenu li a {
    padding: 10px 25px;
    font-size: 13px;
    position: relative;
    z-index: 1;
    color: var(--bd-common-black);
    width: 100%;
    letter-spacing: 0;
}

.main-menu ul li .submenu li a::before {
    position: absolute;
    content: "";
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--bd-theme-primary);
    z-index: -1;
}

.main-menu ul li .submenu li .submenu {
    left: 120%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.main-menu ul li .submenu li:hover>a {
    color: var(--bd-common-white);
}

.main-menu ul li .submenu li:hover>a::after {
    color: var(--bd-common-white);
}

.main-menu ul li .submenu li:hover>a::before {
    left: 0;
    right: auto;
    width: 100%;
}

.main-menu ul li .submenu li:hover>.submenu {
    left: 100%;
    visibility: visible;
    opacity: 1;
}

.main-menu ul li:hover>a {
    color: var(--bd-theme-primary);
}

.main-menu ul li:hover>a::after {
    color: var(--bd-theme-primary);
}

.main-menu ul li:hover>a::before {
    width: 20px;
}

.main-menu ul li:hover>.submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

/*---- 03. MEAN MENU CSS START(mean menu customize) ----*/
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--bd-common-black);
    border-top: 1px solid #ebebeb;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
    line-height: 14px;
    border: 1px solid #ebebeb !important;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: var(--bd-common-black);
    line-height: 30px;
    top: 0;
    font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--bd-theme-primary);
    color: var(--bd-common-white);
    border-color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--bd-common-white);
    background-color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    color: var(--bd-common-white);
}

/*---- 04. SLIDER CSS ----*/
.bd-slider__item {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bd-slider__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.bd-slider__item .bd-btn {
    color: var(--bd-common-white);
    border: 1px solid var(--bd-common-white);
}

.bd-slider__item .bd-btn:hover {
    border: 1px solid var(--bd-theme-secondary);
}

.bd-slider__item .bd-btn span {
    border-left: 1px solid var(--bd-common-white);
}

.bd-slider__height {
    min-height: 850px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-slider__height {
        min-height: 750px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .bd-slider__height {
        min-height: 650px;
    }
}

@media (max-width: 575px) {
    .bd-slider__height {
        min-height: 650px;
    }
}

.bd-slider__overlay {
    position: relative;
    z-index: 1;
}

/* .bd-slider__overlay::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    background-color: var(--bd-common-black);
    background-color: var(--bd-common-black);
    opacity: 0;
    z-index: -1;
} */
.bd-slider__content {
    position: relative;
    z-index: 1;
}

.bd-slider__subtitle {
    font-size: 28px;
    font-weight: 500;
    color: var(--bd-common-white);
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.2;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .bd-slider__subtitle {
        letter-spacing: 1px;
        font-size: 22px;
    }
}
@media (max-width: 420px){
    .bd-slider__subtitle {
        font-size: 19px;
    }
}

.bd-slider__title {
    font-size: 72px;
    color: var(--bd-common-white);
    text-transform: uppercase;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
    margin-bottom: 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .bd-slider__title {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .bd-slider__title {
        font-size: 45px;
    }
}
@media (max-width: 420px) {
    .bd-slider__title {
        font-size: 28px;
    }
}

.bd-slider__content p {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 45px;
    color: var(--bd-grey-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-slider__pagination {
        display: none;
    }
}
@media (max-width: 420px) {
    .bd-slider__content p {
        font-size: 15px;
    }
}
.bd-slider__pagination button {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.bd-slider__pagination button.slider-button-next {
    left: auto;
    right: 0;
}

.bd-slider__dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
    text-align: center;
}

.bd-slider__dot .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--bd-common-white);
    margin: 0 8px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.slider-play-btn {
    font-size: 14px;
    color: var(--bd-common-dark-3);
    text-transform: capitalize;
    font-weight: 700;
}

@media (max-width: 575px) {
    .slider-play-btn {
        display: block;
    }
}

.slider-play-btn .slider-play-btn-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bd-common-white);
    color: var(--bd-common-dark-3);
    border-radius: 50%;
}

.slider-play-btn .slider-play-btn-text {
    margin-left: 20px;
}

.slider-play-btn:hover {
    color: var(--bd-common-white);
}

/*---- Expertise CSS ----*/
.expertise_section {
    background: #000;
    padding: 50px 0;
}

.expertise_box {
    padding: 16px;
}

.expertise_box img {
    max-width: 100%;
    height: auto;
}

.expertise_box p {
    color: #fff;
    margin-bottom: 0;
    margin-top: 15px;
    line-height: 20px;
}

/*---- 05: ABOUT CSS ----*/
.spl-name {
    color: #e13c72;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 6px;
}

.about-ul {
    list-style: none;
}

.about-ul li {
    display: flex;
    line-height: 20px;
    margin-bottom: 20px;
}

.about-li-number {
    color: var(--bd-theme-secondary);
    margin-right: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}

@media (max-width: 575px) {
    .bd-about__img {
        margin-right: 0;
    }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-about-2__text {
        margin-left: 0;
    }
}

/*---- 06: SERVICES CSS ----*/
.bd-services__item {
    padding: 10px;
}

.bd-services__icon {
    width: 60px;
    height: 60px;
    background-color: var(--bd-grey-1);
    font-size: 25px;
    color: var(--bd-common-black);
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 30px;
}

.bd-services__title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 10px;
}

.bd-services__title a {
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
}

.bd-services__title a:hover {
    background-size: 0% 1px, 100% 1px;
}

.bd-services__content p {
    margin-bottom: 30px;
}

.bd-services-2__item {
    padding: 40px;
    box-shadow: 0px 3px 36px 0px rgba(6, 6, 6, 0.08);
    min-height: 420px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bd-services-2__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    width: 0;
    display: inline-block;
    background-color: var(--bd-theme-primary);
    -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;
}

.bd-services-2__item:hover::before {
    right: auto;
    width: 100%;
    left: 0;
}

.bd-services-2__icon {
    width: 60px;
    height: 60px;
    background-color: var(--bd-theme-light);
    font-size: 25px;
    color: var(--bd-common-black);
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 30px;
}

.bd-services-2__title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 420px){
    .bd-services-2__item{
        padding: 25px;
    }
    .bd-services-2__title {
        font-size: 18px;
    }
}

.bd-services-2__title a {
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
}

.bd-services-2__title a:hover {
    background-size: 0% 1px, 100% 1px;
}

.bd-services-2__content p {
    margin-bottom: 30px;
}

.bd-section__inner-list ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.bd-section__inner-list ul li span {
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--bd-theme-primary);
}

.bd-section__inner-title {
    margin-bottom: 25px;
}

.service-in-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: var(--margin_x);
    margin-right: var(--margin_x);
    --margin_x: -10px;
    justify-content: center;
}
.service-in-col{
    flex: 0 0 auto;
    width: 20%;
    position: relative;
    padding: 0 var(--padding_x);
    --padding_x: 10px;
}
@media (max-width: 991px){
    .service-in-col{
        width: 25%;
    }
}
@media (max-width: 767px){
    .service-in-col{
        width: 33%;
    }
}
@media (max-width: 575px){
    .service-in-col{
        width: 50%;
    }
}

.service-in-box {
    padding: 16px;
    background: var(--bd-grey-1);
    margin-bottom: 20px;
    min-height: calc( 100% - 20px);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.service-in-box img{
    max-width: 100%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center;
}
.service-in-box p {
    color: #000;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
    line-height: 18px;
    font-size: 13px;
}

.service-in-list{
    display: flex;
    align-items: flex-start;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 15px;
}
.service-in-list img{
    width: 24px;
    object-fit: contain;
    margin-right: 12px;
}

@media (max-width: 767px){
    .service-in-box{
        padding: 10px;
    }
    .service-in-box img {
        width: 70px;
        height: 70px;
    }
    .service-in-box p{
        font-size: 12px;
    }
}

.service-last-box {
    padding: 20px;
    background: var(--bd-grey-1);
    margin-bottom: 25px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.service-last-box img{
    max-width: 100%;
    width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.service-last-box p {
    color: #000;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
    line-height: 20px;
}

/*---- 08. COUNTER CSS ----*/
.bd-counter__item {
    border-right: 1px solid var(--bd-border-2);
    margin-left: 25px;
    margin-right: 25px;
}

.bd-counter__icon {
    margin-right: 20px;
}

.bd-counter__icon span {
    font-size: 48px;
    color: var(--bd-common-black);
}

.bd-counter__title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
}

.bd-counter__info span {
    font-size: 21px;
    color: var(--tp-text-1);
    display: inline-block;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .bd-counter__item {
        border-right: 0;
        margin: 20px 25px;
    }
}
@media (max-width: 576px) {
    .bd-counter__item {
        flex-flow: column;
    }
    .bd-counter__icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .bd-counter__info {
        text-align: center;
    }
}


/*---- 07. FEATURE CSS -----*/
.bd-feature__section {
    position: relative;
}

.bd-feature__section::after {
    content: "";
    background-color: #e2ebf4;
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-feature__section::after {
        display: none;
    }
}

.bd-feature__item {
    margin-bottom: 30px;
}

.bd-feature__icon {
    margin-right: 30px;
    flex: 0 0 auto;
}

.bd-feature__icon span {
    font-size: 20px;
    color: var(--bd-common-black);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(191, 205, 219);
    background-color: rgba(255, 255, 255, 0);
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    display: inline-block;
    color: var(--bd-common-black);
}

.bd-feature__title {
    font-size: 17px;
    font-weight: 500;
    color: var(--bd-common-black);
    text-transform: uppercase;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-feature__img img {
        width: 100%;
    }
}

/*---- 09. CONTACT CSS  -----*/
.bd-cta__info span {
    color: var(--bd-common-white);
    font-size: 16px;
}

.bd-cta__title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}
@media (max-width: 420px){
    .bd-cta__title {
        font-size: 25px;
    }
}


.bd-contact__map iframe {
    width: 100%;
    height: 100vh;
}

.contact__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: var(--bd-common-white);
    color: var(--bd-text-body);
    -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;
    margin-right: 15px;
}

.contact__social a:hover {
    background: var(--bd-theme-secondary);
    color: var(--bd-common-white);
}

.postbox__comment-form {
    /* margin-bottom: 20px; */
    padding: 40px 30px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
    background: var(--bd-common-white);
}
.map-inbox{
    text-align: center;
    padding: 15px;
}
#googleMap h3 {
    font-size: 16px;
}
#googleMap button.gm-ui-hover-effect{
    top: 0 !important;
    right: 0 !important;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox__comment-form {
        /* padding: 40px 10px; */
        margin-bottom: 20px; 
    }
}

.postbox__comment-form-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.postbox__comment-input {
    position: relative;
    margin-bottom: 20px;
}

.postbox__comment-input span {
    font-weight: 600;
    color: var(--bd-common-black);
    margin-bottom: 12px;
    display: block;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
    height: 55px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;
    color: var(--bd-common-black);
    outline: none;
    border: 1px solid transparent;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    background: #f7f7f7;
}

.postbox__comment-input input::-webkit-input-placeholder,
.postbox__comment-input textarea::-webkit-input-placeholder {
    color: grey;
}

.postbox__comment-input input:-moz-placeholder,
.postbox__comment-input textarea:-moz-placeholder {
    color: grey;
}

.postbox__comment-input input::-moz-placeholder,
.postbox__comment-input textarea::-moz-placeholder {
    color: grey;
}

.postbox__comment-input input:-ms-input-placeholder,
.postbox__comment-input textarea:-ms-input-placeholder {
    color: grey;
}

.postbox__comment-input textarea {
    height: 175px;
    resize: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.pt-inner-sidebar {
    padding: 34px;
}
.tp-pt__inmner-step img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.tp-pt__inmner-step h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 4px;
}
.inmner-step-back{
    padding: 24px;
    background: var(--bd-common-white);
    min-height: 150px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.con_text h4{
    font-size: 26px;
    padding-bottom: 12px;
}
.tp-pt__inmner-step h5 {
    font-size: 15px;
    font-weight: 500;
    margin-top: 12px;
}

/*---- 10. TESTIMONIAL CSS ----*/
.bd-testimonial__item {
    background-color: var(--bd-common-white);
    padding: 40px;
}
@media (max-width: 420px){
    .bd-testimonial__item {
        padding: 30px;
    }
}

.bd-testimonial__icon {
    text-align: center;
    margin-bottom: 30px;
}

.bd-testimonial__icon span {
    font-size: 46px;
}

.bd-testimonial__review {
    margin-bottom: 30px;
}

.bd-testimonial__revirwer-avata img {
    margin-right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 30px;
    object-fit: cover;
}
@media (max-width: 420px){
    .bd-testimonial__revirwer-avata img {
        margin-right: 16px;
        width: 50px;
        height: 50px;
    }
}

.bd-testimonial__revirwer-name {
    line-height: 1;
}

.bd-testimonial__revirwer-name h3 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
@media (max-width: 420px){
    .bd-testimonial__revirwer-name h3{
        letter-spacing: 1.4px;
    }
}
.testimonial-slider-button-prev {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    width: 47px;
    height: 47px;
    background-color: var(--bd-grey-2);
    border-radius: 50%;
    text-align: center;
    line-height: 47px;
    z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-slider-button-prev {
        position: static;
        transform: translateY(0%);
        top: auto;
        margin: 20px 15px;
        bottom: -100px;
    }
}

.testimonial-slider-button-next {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    width: 47px;
    height: 47px;
    background-color: var(--bd-grey-2);
    border-radius: 50%;
    text-align: center;
    line-height: 47px;
    z-index: 1;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-slider-button-next {
        margin: 20px 15px;
        transform: translateY(0%);
        position: static;
        top: auto;
        bottom: -100px;
    }
}

.testimonial3-slider-prev span,
.testimonial3-slider-next span {
    font-size: 20px;
    width: 47px;
    height: 47px;
    line-height: 47px;
    background-color: var(--bd-grey-2);
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    display: inline-block;
}

.testimonial3-slider-prev {
    margin-right: 10px;
}

.bd-testimonial-3__title {
    font-size: 26px;
    color: var(--bd-common-black);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    position: relative;
}

.bd-testimonial-3__title::before {
    content: "\f10d";
    position: absolute;
    top: -30px;
    left: -40px;
    font-family: var(--bd-ff-fontawesome);
    font-weight: 300;
    font-size: 25px;
}

.bd-testimonial-3__name {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/*---- 11. BRAND CSS ----*/
.bd-brand__item {
    border: 1px solid var(--bd-border-1);
    /* margin: -1px 0 0 -1px; */
    text-align: center;
    height: 100px;
    /* width: 150px; */
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-brand__item img {
    max-width: 100%;
    filter: grayscale(100%);
    height: auto;
}

.bd-brand__item:hover img {
    filter: grayscale(0);
}

@-webkit-keyframes s_scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-180px * 5));
        transform: translateX(calc(-180px * 5));
    }
}

@keyframes s_scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-180px * 4));
        transform: translateX(calc(-180px * 4));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 30px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: s_scroll 30s linear infinite;
    animation: s_scroll 30s linear infinite;
    display: flex;
    width: calc(180px * 14);
}

.slider .slide-track:hover {
    animation-play-state: paused;
}

.slider .slide {
    height: 100px;
    width: 180px;
}

.slider .slide-track2 {
    -webkit-animation: s_scroll 15s linear infinite;
    animation: s_scroll 15s linear infinite;
    display: flex;
    width: calc(180px * 10);
}

.slider .slide-track2:hover {
    animation-play-state: paused;
}

.slider .slide2 {
    height: 100px;
    width: 180px;
}



/*---- 16. FOOTER CSS -----*/
.bd-footer-widget {
    margin-bottom: 25px;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bd-footer-widget__logo {
    margin-bottom: 20px;
}

.bd-footer-widget__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bd-footer-widget__content p {
    margin-bottom: 0;
    line-height: 22px;
    font-size: 15px;
    max-width: 800px;
    text-align: center;
}

.bd-footer-widget__form {
    position: relative;
    margin-bottom: 40px;
}

.bd-footer-widget__form input {
    height: 52px;
    width: 100%;
    padding-left: 20px;
    padding-right: 200px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #bfcddb;
}

.bd-footer-widget__form input::-webkit-input-placeholder {
    color: var(--bd-text-body);
}

.bd-footer-widget__form input:-moz-placeholder {
    color: var(--bd-text-body);
}

.bd-footer-widget__form input::-moz-placeholder {
    color: var(--bd-text-body);
}

.bd-footer-widget__form input:-ms-input-placeholder {
    color: var(--bd-text-body);
}

.bd-footer-widget__form button {
    position: absolute;
    right: 0;
    height: 100%;
    border: 1px solid #bfcddb;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.bd-footer-widget__form button:hover {
    color: var(--bd-theme-primary);
}

.bd-footer-widget__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: var(--bd-grey-1);
    color: var(--bd-text-body);
    -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;
    margin-right: 15px;
}

.bd-footer-widget__social a:hover {
    background: var(--bd-theme-primary);
    color: var(--bd-common-white);
}

.bd-footer-widget__menu ul {
    display: flex;
    justify-content: end;
}
@media (max-width: 991px){
    .bd-footer__copyright span{
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }
    .bd-footer-widget__menu ul {
        justify-content: center;
    }
}
@media (max-width: 465px){
    .bd-footer-widget__menu ul {
        display: block;
    }
}


.bd-footer-widget__menu ul li {
    list-style: none;
    margin-bottom: 10px;
    margin-left: 24px;
    display: inline-block;
}

.bd-footer-widget__menu ul li a {
    display: inline-block;
}

.bd-footer-widget__menu ul li a:hover {
    color: var(--bd-theme-primary);
}

.bd-footer-widget__blog-thum {
    flex: 0 0 auto;
    width: 80px;
    height: 100%;
}

.bd-footer-widget__blog-thum img {
    object-fit: cover;
    width: 100%;
}

.bd-footer-widget__blog-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.7;
}

.bd-footer-widget__blog-title a:hover {
    color: var(--bd-theme-primary);
}


.bd-footer__copyright a {
    color: var(--bd-common-black);
    text-transform: uppercase;
    font-weight: 500;
}

.bd-footer__copyright.bd-border-top {
    border-top: 1px solid #bfcddb;
}

/* footer col design for home 1 */
.footer-col-2 {
    display: inline-block;
    padding: 0 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-col-2 {
        padding: 0 10px;
    }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-col-2 {
        padding: 0;
    }
}