/*Main Css */
html{
    scroll-behavior: smooth;
}
:root {
    --primary: #1b1b1b;
    --black: #000000;
    --white: #fff;

    --font-Gotham-Regular: 'Gotham-Regular', sans-serif;
    --font-Gotham-Lght: 'Gotham-Light', sans-serif;
    --font-Gotham-Book: 'Gotham-Book', sans-serif;
    --font-FreightDispPro: 'FreightDispPro', sans-serif;

    --font-heading: 'FreightDispPro', sans-serif;
    --font-accent: 'Inter', sans-serif;
    --font-body: 'Gotham-Book', sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}

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

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    color: var(--body-color);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
}

body.inner-header {
    padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    color: var(--secondary);
    /*! text-transform: capitalize; */
}

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 73px;
    letter-spacing: 0em;
    text-align: left;

}

h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 61px;
    letter-spacing: 0em;
}

h2 span.text-bold {
    font-weight: bold;
}

h4 {
    font-size: 26px;
    line-height: 1.12;
}

h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.84px;
}

.text-black {
    color: var(--black) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn {
    padding: 18px 30px;
    text-transform: capitalize;
    font-family: var(--font-heading) !important;

}

.btn:focus,
.btn:active:focus {
    box-shadow: none;
}

.btn i {
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--white);
    color: var(--white) !important;
}

/* .btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: transparent !important;
    border: 1px solid var(--black) !important;
    color: var(--black) !important;
} */

.themeBtn:hover,
.themeBtn:active,
.themeBtn:focus {
    background-color: #333333 !important;
    border: 1px solid #333333 !important;
    color: #fff!important;
}

.footOne .themeBtn:hover,
.footOne .themeBtn:active,
.footOne .themeBtn:focus {
    background-color: transparent !important;
    border: 1px solid var(--white) !important;
    color: var(--white) !important;
}


.btn-primary-border {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}

.btn-primary-border:hover,
.btn-primary-border:active,
.btn-primary-border:focus {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
}


.btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black) !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white) !important;
}

.btn-dark {
    background-color: var(--dark);
    border: 1px solid var(--dark);
    color: var(--white) !important;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
    background-color: transparent;
    border: 1px solid var(--dark);
    color: var(--dark) !important;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

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

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/

/* header {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
position: fixed;
background: transparent;
z-index: 1;
left: 0;
right: 0;
top: 0;
}
header.sticky{
background: white;
box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
top: 0;
} */

.main-header {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 13px;
}

/* .menuWrap {
display: flex;
align-items: center;
justify-content: center;
} */

.desktop-header .menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu-callnow {
    color: var(--primary) !important;
    background: transparent;
}

.menu-callnow i {
    color: var(--dark) !important;
    line-height: 2;
}

.menu>li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 30px;
}

.menu>li>a,
.menu li a {
    display: block;
    font-family: var(--font-Gotham-Book);
    font-family: "Questrial", sans-serif;
    font-size: 12px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000000;
}

.btn-header {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400 !important;
}

.btn-header:hover {
    transform: scale(1.03);
}

.menu>li :hover>a,
.menu>li.active>a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes scale-display--reversed {
    0% {
        display: inline-flex;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    99% {
        display: inline-flex;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        display: none;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }

    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }

    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */


/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

span.count {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 0.92;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    font-weight: 500;
}

.counter span.text-white {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 0.92;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    font-weight: 500;
}

.form-select,
.form-select:focus {
    background: transparent;
    border: 1px solid #626262;
    border-radius: 24px;
    padding: 8px 34px 8px 29px;
    color: #ddd;
    font-size: 13px;
    margin-bottom: 18px;
    color: var(--bg-light);
    box-shadow: none;
}

.slick-center button.slick-prev.slick-arrow {
    position: absolute;
    top: 96%;
    left: 50%;
    font-size: 0px;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    z-index: 0;
}

.slick-center button.slick-prev.slick-arrow::before {
    content: "\f177";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow {
    position: absolute;
    top: 92%;
    right: 4%;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.slick-center button.slick-next.slick-arrow {
    position: absolute;
    top: 96%;
    right: 46%;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 30px;
    height: 30px;
    z-index: 0;
}

.slick-center button.slick-next.slick-arrow::before {
    content: "\f178";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow::before {
    content: "\f178";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
}

/* .slider-for img{
width: 100%;
object-fit: cover;
object-position: center;
height: 454px;
margin-bottom: 16px;
}

.slider-nav img{
height: 174px;
width: 100%;
object-fit: cover;
object-position: center;
} */

.slick-center img {
    width: 100%;
    height: 500px;
}

.slick-center .slick-list.draggable {
    padding: 0 24% 0 !important;
}

.slick-center .slick-slide {
    margin: 0 70px;
}

.slick-center .slick-current img {
    position: relative;
    top: -41px;
}

.sliderDiv {
    background-size: cover;
    height: 1200px;
    width: 100%;
    background-repeat: no-repeat;
}

.socail-icons {
    display: flex;
}

ul.socail-icons li i {
    color: #fff;
    font-size: 18px;
    font-weight: 300;

}

ul.socail-icons li {
    margin-right: 10px;
}

a.logo {
    font-size: 30px;
    color: var(--white);
    font-family: var(--font-heading);
    position:relative;
    /* z-index:2222; */
}



/* inner pages */

.inner-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 193px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    position: relative;
}

.inner-banner .inner-hero-content {
    position: absolute;
    padding: 30px 0px;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    bottom: 0;
    height: fit-content;
    text-align: center;
}
.inner-banner .inner-hero-content h1 {
    font-weight: 700;
    font-family: var(--font-Gotham-Book);
    letter-spacing: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--black);
    /*font-style: italic;*/
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 66px;
}
.inner-banner .content h1 {}

/* inner pages */

.footer-border {
    height: 1px;
    margin: 61.5px 83px 29px 177px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

ul.footer-social-icons {
    display: flex;
    margin-top: 20px;
}

ul.footer-social li a {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: var(--white);
    margin-bottom: 15px;
}

ul.footer-social li a i {
    color: var(--primary);
    margin-right: 17px !important;
}

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

ul.footer-social-icons li {
    margin-right: 12px;
}

ul.footer-social-icons li a {
    color: var(--white);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    border-radius: 50%;
}

ul.footer-social-icons li a i {
    font-size: 22px;
}

.menu-Bar a.logo {
    font-size: 45px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #1dd3b0;
}

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

ul.breadcrumb-menu {
    display: block;
    text-transform: uppercase;
}

ul.breadcrumb-menu li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.84px;
}

ul.breadcrumb-menu li a {
    color: var(--dark-light);
}

ul.breadcrumb-menu li+li {
    margin-left: 0px;
}

ul#counter {
    display: flex;
    align-items: center;
    gap: 7rem;
    /* padding: 24px 36px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
    /* background-color: #222; */
    /* margin-top: -112px;*/
}

.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}

ul#counter li .counter>div {
    font-weight: 600;
    line-height: 1;
    font-size: 38px;
    color: #fff;
    /* padding-bottom: 10px; */
    flex-shrink: 0;
}

ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul#counter li .counter span.text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
    font-weight: normal;
}

ul#counter li:nth-child(1) .counter>div {
    color: #ec4e52;
}

ul#counter li:nth-child(2) .counter>div {
    color: #ebd142;
}

ul#counter li:nth-child(3) .counter>div {
    color: #62a488;
}

.counter span.text-dark {
    font-weight: 600;
    font-size: 30px;
}

/* ------- */

.index-slider-news button.slick-prev.slick-arrow {
    position: absolute;
    top: 23%;
    left: -68px;
    font-size: 0px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background-color: transparent;
    z-index: 2;
    line-height: 0;
    border-radius: 50%;
}

.index-slider-news button.slick-prev.slick-arrow::before {
    content: "\f104";
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-slider-news button.slick-next.slick-arrow {
    position: absolute;
    top: 23%;
    right: -70px;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background-color: transparent;
    background-color: transparent;
    line-height: 0;
    border-radius: 50%;
    z-index: 2;
}

.index-slider-news button.slick-next.slick-arrow::before {
    content: "\f105";
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    border: 1px solid #D2D2D2;
    margin-bottom: 20px;
    border-radius: 0;
    height: 35px;
}

/* Accordian */

.accordion-list {
    position: relative;
}

.accordion-list li {
    padding: 0px 0px 22px 2px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border-bottom: 0;
    background: white;
    box-shadow: none;
    border-radius: 0px;
    margin-bottom: 0rem;
}

ul.accordion-list li span {
    display: flex;
    position: relative;
}

.accordion-list li h3 {
    color: var(--secondary);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin-right: 14px;
}

.accordion-list li.active h3 {
    color: var(--primary);
    font-size: 20px;

}

ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: var(--secondary);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 900;
    top: 0;
}

.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}

ul.accordion-list li.active h3:after {
    content: "\f077";
    color: var(--primary);
}

.answer p {
    margin-top: 16px;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

/* Accordian */

/* Subscription */

.subscribe {
    border: solid 1px #c9cbd6;
    height: 60px;
    margin-top: 18px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.subscribe button.btn-subscribe {
    text-transform: uppercase;
    display: inline-block;
    height: 58px;
    border-radius: 0;
    border: none;
    background: var(--primary);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 35px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.23;
    text-align: center;
    color: var(--white);
}

.subscribe input.form-control {
    border: none;
    /* width: 100%; */
    padding: 8px 13px;
    height: 100%;
    margin: 0;
    display: inline-block;
    color: var(--secondary);
    background-color: transparent;
    padding-right: 9.5rem;
}

/* Subscription */

.sec-pad {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* topbar */

.top-bar {
    padding: 15px 0;
    background: var(--primary);
}

.top-social-icons {
    display: flex;
    justify-content: end;
    gap: 20px;
}

.top-contact-info {
    display: flex;
    gap: 22px;
}

.top-contact-info li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.top-contact-info li a {
    color: var(--white);
}

.top-social-icons li a i {
    color: var(--white);
}

/* topbar */

/* contact page */

.contactIconBg li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contactIconBg .icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    background-color: var(--primary);
}

/* contact page */

.related-slider span.arr-left {
    top: 35%;
    position: absolute;
    left: -2%;
    font-size: 26px;
    color: var(--secondary);
    cursor: pointer;
}

.related-slider span.arr-right {
    top: 35%;
    position: absolute;
    right: -2%;
    font-size: 26px;
    color: var(--secondary);
    cursor: pointer;
}

.mainBanner {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: relative;
    z-index: 1;
}

.hero .hero-slide-1 .hero-content{
    position: absolute;
    padding: 30px 0px;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    bottom: 0;
    top: 0;
    height: fit-content;
}
.hero .hero-slide-2 .hero-content{
    position: absolute;
    padding: 30px 0px;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    bottom: 0;
    height: fit-content;
}
.hero .hero-slide-3 .hero-content{
    position: absolute;
    padding: 30px 0px;
    left: 6%;
    /* right: 0px; */
    /* margin: auto; */
    width: fit-content;
    bottom: 0;
    top: 9%;
    height: fit-content;
    /* transform: translate(50%, -40%); */
    /* bottom: 0px; */
}

.hero .hero-slide-1 .hero-content .btn-primary, .hero .hero-slide-2 .hero-content .btn-primary{
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    backdrop-filter: blur(10px);             
    -webkit-backdrop-filter: blur(10px);   
    color: var(--white) !important;
    font-family: var(--font-Gotham-light) !important;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    height: 55px;
}
.hero .hero-slide-3 .hero-content .btn-primary{
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    backdrop-filter: blur(10px);             
    -webkit-backdrop-filter: blur(10px);   
    color: var(--black) !important;
    font-family: var(--font-Gotham-light) !important;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    height: 55px;
}

.hero .hero-slide-1 .hero-content h1 {
    font-weight: 400;
    font-family: var(--font-Gotham-Book);
    letter-spacing: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--white);
    /*font-style: italic;*/
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 58px;
    line-height: 66px;
    font-family: "Questrial", sans-serif;
}
.hero .hero-slide-2 .hero-content h1 {
    font-weight: 400;
    font-family: "Questrial", sans-serif;
    letter-spacing: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--white);
    /*font-style: italic;*/
    margin-top: 8px;
    margin-bottom: 10px;
   font-size: 100px;
    line-height: 66px;
}
.hero .hero-slide-3 .hero-content h1 {
    font-weight: 400;
    font-family: "Questrial", sans-serif;
    letter-spacing: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--white);
    /*font-style: italic;*/
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 100px;
    line-height: 66px;
    /*! margin-right: -55px; */
    /*! margin-left: -93px; */
}
.hero-content h1 span {
    text-transform: lowercase;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    text-transform: lowercase;
    font-family: "Questrial", sans-serif;
    font-size: 100px;
}

.hero-content p {
    font-weight: 400;
    font-family: var(--font-Gotham-Book);
    font-size: 22px;
    line-height: 42px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--white) !important;
    width: 70%;
    margin: auto;
}



section.about .about-img {
    /* filter: grayscale(1); */
}

section.about .content {
    padding-left: 5%;
}

section.about .content h2.abt-title {
    font-weight: 300;
    font-size: 58px;
    line-height: 62px;
    font-family: var(--font-FreightDispPro);
    letter-spacing: 0.96px;

}


.about.aboutSec h2.abt-title {
font-family: "Questrial", sans-serif !important;
}


section.about .content h2.abt-title span {
    font-weight: 500;
    font-size: 58px;
    font-style: italic;
    line-height: 62px;
    font-family: var(--font-FreightDispPro);
    letter-spacing: 5.11px;
    font-style: normal;
    letter-spacing: 5.11px;
    font-weight: 600 !important;
    text-transform: lowercase;
    font-family: "Questrial", sans-serif;
}

section.about .content h3.abt-sub-title {
    font-weight: 500;
    font-size: 20px;
    font-style: italic;
    line-height: 22.4px;
    font-family: var(--font-Gotham-Book);
    letter-spacing: 0.96px;
    margin-top: 15px;
    margin-bottom: 10px;
}

section.about .content p.abt-para {
    font-weight: 500;
    font-size: 16px;
    line-height: 22.4px;
    font-family: var(--font-Gotham-light);
    letter-spacing: 0.96px;
    margin-bottom: 31px;

}

section.about .content .btn-primary {
    margin-top: 45px;
    font-weight: 700;
    font-size: 12px;
    line-height: 43.92px;
    text-transform: uppercase;
    font-family: var(--font-Gotham-light) !important;
    padding: 0px 17px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black) !important;
}

/* .swiper.mySwiper.worksec{
    position: relative;
}
.sweper-nav-box{
    position: absolute;
    display: flex;
    width: 10%;
    top: 75px;
} */
.swiper-pagination {
    bottom: 50px !important;
}

/* Menu Dropdown CSS ---------------------------------------------------------------->*/
.menu li {
    position: relative;
    list-style: none;
}

/* Nested dropdown (right side) */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border: 1px solid #eee;
}

.menu-item-has-children .sub-menu li {
    width: 100%;
}

.menu-item-has-children .sub-menu li a {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 400;
    padding: 15px 10px;
    width: 100%;
}


.menu,
.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 11;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #eee;
    min-width: 150px;
}

.menu-item-has-children .sub-menu li:hover>a {
    background-color: var(--primary);
    color: var(--white);
}

/* Show on hover */
.menu-item-has-children:hover>.sub-menu {
    display: block;
    border: 1px solid #eee;
}

/* Menu Dropdown CSS ---------------------------------------------------------------->*/
header .main-header ul.right-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .main-header ul.right-bar img {
    height: 12px;
}

header .main-header ul.right-bar li a {
    margin-left: 20px;
    font-family: var(--font-Gotham-Book);
    font-size: 20px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000000;
}
.palm-cat-box{
  position: relative;
  /* margin-bottom: 20px; */
  overflow:hidden;
  text-align: center;
  justify-content: center;
  /*! align-content: center; */
  /*! display: flex; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.palm-cat-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    
}
.palm-cat-box img:hover{
    cursor: pointer;
    filter: none;
}
.palm-cat-box:hover > .content-box{
    display: block;
-webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
 
}
.palm-cat-box .content-box{position: absolute;top: 0;left: 0;background-color: #000000a8;width: 100%;height: 97%;padding: 20px;cursor: pointer;display: none;}

.palm-cat-box .content-box a  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !IMPORTANT;
}
.palm-cat-box .content-box h2{
    color: var(--white);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: lowercase;
    font-family: "Questrial", sans-serif;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.palm-cat-box .content-box p{
color: var(--white);
font-size: 15px;
}
.palm-cat-box .content-box .btn-secondary{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.8px;
    display: inline-block;
    padding: 5px 1em;
    margin-top: 10px;
}

.workSec{
    position: relative;
}
/* .workSec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 77px;
    bottom: 45px;
    left: 0px;
    right: 0px;
    z-index: 1;
    -webkit-box-shadow: inset -1px -16px 22px -7px #FFFFFF;
    box-shadow: inset -1px -61px 22px -7px #fff;
} */

/* My Css */

.workContent {
    text-align: center;
}

.workContent h2 {
    color: var(--black);
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-accent);
}

.workContent p {
    width: 76%;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.workHeading h2 {
    font-size: 30px;
    color: var(--black);
    margin-bottom: 2rem;
}

.workHeading i {
    font-style: italic;
    text-transform: lowercase;
}

.workImages {
    display: flex;
    gap: 20px;
    position: relative;
}

.workImages figure {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.workImages figure img {
    width: 100%;
    filter: grayscale(1);
    transition: 0.8s ease;
    cursor: pointer;
}

.workImages figure img:hover {
    filter: grayscale(0);
}

.workSec {
    padding-bottom: 70px;
}

.workImages:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #ffffff00, #FFFFFF);
    width: 100%;
    height: 250px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.videoWraps {
    position: relative;
}

.videoWraps figure img {
    /* filter: grayscale(1); */
}

.videoWraps .videoIcon {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    margin: auto;
    border: 5px solid var(--white);
    width: 90px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    color: white;
    font-size: 24px;
}

.testimonialSec {
    padding: 80px 0;
}

.testimonialSec h2 {
    text-align: center;
    font-weight: 300;
    color: var(--black);
    font-size: 58px;
    letter-spacing: 0.96px;
    /*! font-family: "Questrial", sans-serif; */
    font-family: var(--font-FreightDispPro);
}

.testimonialBox {
    border: 1px solid #808080;
    padding: 45px 45px;
    text-align: center;
    height: 484px;
    margin-top: 50px;
}

.testimonialBox p {
    color: var(--black);
    font-size: 28px;
    line-height: 1.3;
    font-family: var(--font-FreightDispPro);
    font-weight: 300;
    letter-spacing: 0.96px;
    width: 85%;
    margin: 0 auto 45px;
}

.testimonialBox span {
    font-size: 20px;
    line-height: 1.3;
    font-family: var(--font-FreightDispPro);
    color: var(--black);
    letter-spacing: 0.96px;
}

.shopCard figure img {
    filter: grayscale(1);
    width: 100%;
}

.shopContent h3 {
    font-size: 22px;
    color: #000000;
    font-weight: 600;
    font-family: var(--font-Gotham-Book);
    margin: 1rem 0;
}

.shopContent p {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 18px;
}

.themeBtn {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.8px;
    background: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 10px 2em;
    border: 1px solid var(--black);
        border-radius: 50px;
}

.abtSect .content p {
    margin: 1rem 0 40px 0;
    width: 97%;
}

.abtSect .row+.row {
    margin-top: 120px;
}

.installationSec {
    padding-bottom: 120px;
}

.installContent h2 {
    color: var(--black);
    font-size: 60px;
    font-family: var(--font-FreightDispPro);
    /*! font-family: "Questrial", sans-serif; */
    font-weight: 300;
    font-size: 58px;
    line-height: 62px;
}

.installContent p {
    color: var(--black);
    width: 71%;
    margin: 1rem 0;
}

.installImages img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* filter: grayscale(1); */
}

.installSlider {
    margin-right: -6rem !important;
}

footer {
    background: var(--black);
    padding: 60px 0 90px 0;
}

.footOne {
    text-align: center;
}

footer h2 {
    color: var(--white);
    text-align: center;
    font-size: 29px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-FreightDispPro);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footOne p {
    color: var(--white);
    font-weight: 300;
    width: 80%;
    margin: 0 auto 1.5rem;
    font-size: 15px;
    line-height: 1.6;
}

.footOne form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footOne input {
    background: #1B1B1B;
    border: unset;
    outline: unset;
    box-shadow: unset;
    height: 45px;
    width: 200px;
    padding-left: 1rem;
    font-size: 12px;
    color: var(--white);
}

.footOne .themeBtn {
    border: 1px solid #000;
    outline: unset;
    background: var(--white);
    color: var(--black);
    height: 45px;
    padding: 0 1.75rem;

}

.footTwo p {
    color: var(--white);
    text-align: center;
    font-size: 15px;
    width: 80%;
    margin: auto;
}

a.footMail {
    color: var(--white);
    font-size: 15px;
    text-align: center;
    display: block;
    text-decoration: underline;
    letter-spacing: 0.75px;
    margin-bottom: 1.75rem;
}

.footTwo ul li a {
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--white);
    margin-top: 1rem;
}

.footThree ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footThree ul li a {
    color: var(--white);
}

.footThree p {
    color: rgb(255 255 255 / 55%);
    text-align: center;
    font-size: 15px;
    margin: 1rem 0 0 0;
}

.footThree p b {
    font-weight: 600;
    color: var(--white);
}

.footTwo {
    border-left: 1px solid #5C5C5C;
    border-right: 1px solid #5C5C5C;
}

/* My Css */
header {
    /* position: fixed;
    top: 0; */
    width: 100%;
    z-index: 22;
    background: #fff;
}


.hero .hero-slide-1 .hero-content a {
  border-radius: 30px;
  border: 1px solid #fff;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white) !important;
  font-family: var(--font-Gotham-light) !important;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  height: 55px;
  font-family: "Questrial", sans-serif;
}
.hero .hero-slide-2 .hero-content a {
border-radius: 30px;
  border: 1px solid #fff;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white) !important;
  font-family: var(--font-Gotham-light) !important;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  height: 55px;
  font-family: "Questrial", sans-serif;
}

.hero .hero-slide-3 .hero-content a {border-radius: 30px;border: 1px solid #fff;background-color: transparent;backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);color: #fff !important;font-family: var(--font-Gotham-light) !important;text-transform: uppercase;font-size: 15px;font-weight: 700;height: 55px;font-family: "Questrial", sans-serif;}

.mainBanner {

    z-index: -1;
    /* margin-top: -200px; */
}


.mySwiper {
  height: 100vh;
}



.hero .hero-slide-2 .hero-content {
  margin-bottom: 46px;
}


.hero .hero-slide-1 .hero-content a {
  margin-top: 20px;
}

.fine-art-abt{padding: 40px 0px;}
/* .hero-content{
    animation: fadeInOut 5s ease-in-out 1s forwards infinite;
  opacity: 0; 
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1; 
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0; 
  }
} */



/*@-webkit-keyframes fadeIn {*/
/*  0% {opacity: 0;}*/
/*  100% {opacity: 1;}*/
/*  }*/
/*  @keyframes fadeIn {*/
/*  0% {opacity: 0;}*/
/*  100% {opacity: 1;}*/
/*  }*/

section.abt-inner.about .about-img, section.abt-inner .installImages img {
    filter: grayscale(0);
}
section.about .about-img {
    /* filter: grayscale(1); */
}

section.about.abt-inner.editorial-sec .abt-img img {
    object-fit: cover;
    filter: initial;
    height: 100%;
}

section.about.abt-inner.editorial-sec .abt-img {
    height: 100%;
}

.text-white {
    color: #fff !important;
}

section.about .content h2.abt-title {
    font-weight: 300;
    font-size: 58px;
    line-height: 62px;
    font-family: var(--font-FreightDispPro);
    letter-spacing: 0.96px;
    margin-bottom: 10px;
    margin-top: 14px;
    px; */
}
  
  .abt-inner .content h4 {
    font-weight: 700;
    font-family: var(--font-Gotham-Book);
    letter-spacing: 5px;
    text-transform: capitalize;
    text-align: center;
    color: var(--black);
    font-size: 30px;
    line-height: 66px;
}

.abt-inner .content h5 {
    font-weight: 500;
    font-family: var(--font-Gotham-Book);
    letter-spacing: 5px;
    text-transform: initial;
    text-align: center;
    color: var(--black);
    font-size: 25px;
    line-height: 66px;
    /*! font-style: italic; */
}

section.about.abt-inner .abt-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

section.about.abt-inner .abt-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.abt-inner .content {
    text-align: center;
}

section.about .content {
    padding-left: 5%;
}

.themeBtn {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.8px;
    background: #33333300;
    color: #333333;
    display: inline-block;
    padding: 10px 2em;
    border: 1px solid #333333;
}

.menu>li>a, .menu li a {
    display: block;
    font-family: var(--font-Gotham-Book);
    font-size: 12px;
    line-height: 35px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000000;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.dropdown-menu {
    height: 100vh;
    position: fixed;
    bottom: -10;
    left: 0;
    width: 100%;
    border: 0;
    padding: 50px 85px;
    display: none;
}

.abt-inner.installationSec .installImages h3 {
    color: var(--black);
    font-size: 30px;
    font-family: var(--font-FreightDispPro);
    text-align: center;
    font-weight: 700;
    line-height: 62px;
}

.installImages {
    text-align: center;
}

  header {
  transition: all 0.5s;
}
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
}



section.inner-banner.book-hero-sec {
    height: 800px;
}


/* Our Frames Start*/
section .content.our-frame h2{
font-weight: 400;
letter-spacing: normal;
line-height: 0.85;
text-align: left;
font-size: 61px;
font-family: var(--font-FreightDispPro);
}
section .content.our-frame p.italic{
letter-spacing: 0.07em;
font-weight: 100;
line-height: 0.85;
font-style: italic;
font-size: 22px;
font-family: var(--font-FreightDispPro);
margin-top: 20px;
margin-bottom: 50px;
}
section .content.our-frame p{
font-family: var(--font-Gotham-Book);
font-weight: 300;
font-size: 16px;
letter-spacing: 0.06em;
line-height: 1.4;
}
section .content.our-frame.cl{
padding-right: 20%;
text-align: left;
}
section .content.our-frame.cr{
padding-left: 20%;
text-align: left;
}
section.our-frame-bottom-frame{
background-image: linear-gradient(rgb(255 255 255 / 0%), rgba(255, 255, 255, 0.7)), url(../images/our-frame-bottom-frame.png);
width: 100%;
padding-top: 100px;
padding-bottom: 100px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
height: 100vh;
margin-top: 50px;
    
}
section.our-frame-bottom-frame .content.our-frame h2{
font-size: 73px;
font-weight: 500;
}
section.fine-art-abt .installContent h2{
    font-size: 97px;
}
section hr{
    opacity: 1;
}
.slick-slide{ margin:0 !important }
.woocommerce div.product div.images .wpgs-for .woocommerce-product-gallery__image,
.woocommerce div.product div.images .wpgs-for .attachment-shop_single{width:100%;height: auto;object-fit:cover;}

.hero .hero-slide-1 .hero-content a, .hero .hero-slide-2 .hero-content a, .hero .hero-slide-3 .hero-content a{
    margin-top:20px;
}

/* Our Frames End*/


/*.abt-inner .content p {*/
/*  text-align: left;*/
/*}*/

/*section .content.our-frame p {*/
/*    text-align: center !important;*/
/*}*/