/*Main Css */

:root {
--primary: #E13C33;
--secondary: #333333;
--white: #fff;

--font-heading: 'Syne', sans-serif;
--font-accent: 'Work Sans', sans-serif;
--font-body: 'Work Sans', 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;
background-color: #000;
font-weight: 500;
font-size: 16px;
line-height: 25.6px;
color: var(--white);
}

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

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

h1 {
font-weight: 800;
font-size: 51.2px;
line-height: 56.03px;
letter-spacing: 0.51px;
}

h2 {
font-weight: 800;
font-size: 36.8px;
line-height: 41.86px;
letter-spacing: 0.37px;
}

.top-title {
font-weight: 700;
font-style: Bold;
font-size: 16px;
line-height: 25.6px;
margin-bottom: 16px;
}

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-primary {
color: var(--primary) !important;
}

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

.btn {
padding: 30px 68px;
text-transform: capitalize;
font-weight: 500;
font-size: 14.4px;
line-height: 16px;
letter-spacing: 0.29px;
text-transform: uppercase;
border-radius: 100vmax;
}

.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(--primary);
color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
border: 1px solid #c3342c;
color: #ffffff !important;
background: #c3342c;
}

.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(--secondary);
border: 1px solid var(--secondary);
color: var(--white) !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
background-color: transparent;
border: 1px solid var(--secondary);
color: var(--secondary) !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: 999;
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;
}

header.sticky .main-header {
background-color: #000;
padding-bottom: 0;
}

.main-header {
width: 100%;
padding-top: 5px;
padding-bottom: 18px;
position: absolute;
z-index: 999;
}

header.sticky .main-header .logo img {
max-width: 140px;
}

/* .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 38px;
}

.menu>li>a {
display: block;
font-family: var(--font-body);
font-weight: 500;
font-size: 14.4px;
line-height: 23.04px;
color: #fff;
}

.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);
}

/* 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;
}

.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: 28px 0 30px;
justify-content: end;
}

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-left: 12px;
}

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

ul.footer-social-icons li a i {
font-size: 18px;
color: #000;
}

.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 {
margin-bottom: 20px;
border-radius: 0;
height: 47px;
background: #FAFAFA;
border: 1px solid #A9A9A9;
}

/* 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 {
height: 60px;
margin-top: 18px;
border-radius: 5px;
position: relative;
display: flex;
max-width: 450px;
margin: auto;
}

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

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

/* 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;
}

footer {
background-color: #000;
}

footer .border-top {
border-top: 1px solid #808080 !important;
}

.f-logo {
font-size: 30px;
text-align: left;
color: var(--white);
font-family: var(--font-heading);
line-height: normal;
}

.f-logo:hover {
color: var(--white);
}

.f-logo-content {
margin-top: 12px;
color: var(--white);
font-family: 'Syne';
font-weight: 800;
font-size: 19.2px;
line-height: 23.04px;
letter-spacing: 0.19px;
text-align: center;
margin-bottom: 38px;
}

.f-menu {
margin-top: 30px;
}

.f-menu .f-icon-box {
display: flex;
align-items: baseline;
gap: 20px;
margin-bottom: 10px;
}

.f-menu .f-icon-box a,
.f-menu .f-icon-box p {
color: var(--white);
}

.f-menu .f-icon-box i {
color: var(--white);
}

ul.f-menu li a {
color: #E13C33;
font-size: 15px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0.5px;
margin-bottom: 14px;
text-decoration: underline;
}

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

.footer-content {
padding-top: 80px;
padding-bottom: 70px;
margin-inline: 5rem;
}

footer h6 {
font-family: var(--font-heading);
color: var(--white);
position: relative;
font-weight: 800;
font-size: 19.2px;
line-height: 22.86px;
letter-spacing: 0.19px;
}

.copyright {
padding-top: 11px;
padding-bottom: 11px;
background: var(--primary);
}

.copyright p {
font-family: var(--font-body);
font-size: 16px;
line-height: 28px;
letter-spacing: normal;
font-weight: 400;
}

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

.hero-content p.para {}

.hero-content .btn-primary {}

section.about .content p.para {
font-weight: 700;
max-width: 630px;
}

section.about .content .btn-primary {}

/* Menu Dropdown CSS */

.has-child {
position: relative;
z-index: 2;
}

.dropdown {
position: absolute;
background: white;
/* padding: 1rem; */
border-radius: 0px;
top: 97%;
/* min-width: 190px; */
box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
display: none;
text-align: start;
right: 0;
left: 0;
border-radius: 8px;
z-index: 9;
margin: auto;
min-width: 200px;
/* right: -50px; */
padding: 5px !important;
height: auto !important;
}

/* @keyframes slide {
0% {
height: 0;
}

100% {
height: auto;
}
} */

.dropdown ul li a {
font-size: 16px;
line-height: 26px;
color: var(--dark);
padding: 5px 24px;
position: relative;
display: block;
text-transform: capitalize;
}

/* .dropdown ul li a::before {
position: absolute;
content: "\f054";
height: 2px;
width: 2px;
left: 8px;
top: 6px;
font-family: "Font Awesome 5 Pro";
font-size: 13px;
} */

.dropdown ul li a:hover {
background-color: var(--primary);
border-radius: 5px;
color: var(--white);
}

.dropdown ul li:hover a::before {
left: 12px;
}

.dropdown ul li {
border-bottom: 0 !important;
}

.con-pad {
padding-left: 75px;
padding-right: 75px;
}

.hero-content {
padding-top: 168px;
padding-left: 95px;
}

.hero-content p {
max-width: 666px;
padding: 25px 0 18px;
}

.hero-content .btns {
display: flex;
align-items: center;
gap: 10px;
}

section.about .content p {
padding-block: 36px;
}

section.about .abt-img1 {
position: relative;
}

section.about .abt2 {
position: absolute;
right: -1.6rem;
bottom: -12rem;
}

section.featured {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

section.featured .top-sec p {
padding-bottom: 18px;
padding-top: 15px;
}

section.featured .featuredImg {
padding-block: 18px 24px;
}

section.enjoy .top-sec p {
padding: 20px 0 36px;
}

.enjoy-card {
text-align: center;
}

.enjoy-card h6 {
padding: 11px 0 25px;
font-weight: 800;
font-size: 19.2px;
line-height: 22.86px;
letter-spacing: 0.19px;
text-align: center;

}

.enjoy-card p {
max-width: 408px;
}

section.listen .content p {
padding: 29px 0 31px;
max-width: 535px;
}

section.about .content {
padding-left: 22px;
padding-top: 100px;
}

section.about {
margin-bottom: 140px;
}

section.experience .content p {
padding-top: 18px;
}

section.listen {
background-size: cover;
background-repeat: no-repeat;
}

.industryTxt p {
font-family: var(--font-heading);
font-weight: 800;
font-size: 19.2px;
line-height: 21.84px;
letter-spacing: 0.19px;
text-align: center;
}

.industryTxt span {
font-weight: 500;
font-style: Italic;
font-size: 14.4px;
line-height: 23.04px;
padding-top: 12px;
display: block;
text-align: center;
}

section.industry h2 {
text-align: center;
padding-bottom: 80px;
}

form label {
font-size: 16px;
line-height: 25.6px;
margin-bottom: 2px;
}

input.btn.btn-primary {
line-height: 0;
padding: 24px 36px;
}

textarea.form-control {
height: 100px !important;
}

section.contact {
background-size: cover;
background-repeat: no-repeat;
}

section.contact .content p {
padding: 28px 0 0px;
max-width: 535px;
}

section.contact .content a {
display: block;
color: #E13C33;
padding-top: 24px;
text-decoration: underline;
}

a.f-logo {
display: flex;
justify-content: center;
}

.contact-footer {
text-align: end;
}

.industrySlider button {
color: #000;
background: #fff;
height: 50px !important;
width: 50px !important;
border-radius: 50%;
font-size: 3px;
}

.industrySlider .slick-prev,
.industrySlider .slick-next {
height: 50px;
position: absolute;
bottom: -96%;
transform: translateY(-50%);
z-index: 10;
background: none;
border: none;
font-size: 25px;
color: #ffffff;
cursor: pointer;
background: var(--primary);
width: 30px;
}

.industrySlider .slick-prev:hover,
.industrySlider .slick-next:hover {
background: hwb(15deg 20% 2% / 50%);
display: flex;
align-items: center;
justify-content: center;
}

.industrySlider .slick-prev {
left: 45%;
}

.industrySlider .slick-next {
right: 48%;
}

section.industry {
padding-bottom: 11rem;
}

.flip-container {
-webkit-perspective: 1000;
background: transparent;
margin: 30px auto;
}

/* flip the picture when hover */

.flip-container:hover .flipper,
.flip-container.hover .flipper {
-webkit-transform: rotateY(180deg);
}

/* flip speed */

.flipper {
-webkit-transition: 1.5s;
-webkit-transform-style: preserve-3d;
position: relative;
}

/* hide back during flip */

.flip-container .front,
.flip-container .back {
-webkit-backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}

/* front placed above back */

.flip-container .front {
z-index: 2;
}

/* back, initially hidden */

.flip-container .back {
-webkit-transform: rotateY(180deg);
}

.flip-container .front img,
.flip-container .back img {
border-radius: 10px;
}

.mainBanner video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: fill ;
pointer-events: none;
z-index: -1;
}

.mainBanner .overlay-bg {
height: 100%;
width: 100%;
background: #080606;
position: absolute;
opacity: .3;
z-index: 0;
transition: all 1s ease;
top: 0px;
left: 0;
}

.video-container {

margin: 0 auto;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding-top: 15px;
}

.video-container .video-wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.video-container video {
width: 100%;
height: 100%;
border-radius: 4px;
}

.play-button-wrapper {
position: absolute;
top: -5rem;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
pointer-events: none;
}

.play-button-wrapper .circle-play-b {
cursor: pointer;
pointer-events: auto;
}

.play-button-wrapper .circle-play-b svg {
width: 100px;
height: 100px;
fill: #fff;
stroke: #fff;
cursor: pointer;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 50%;
opacity: 0.9;
}

.circle-play-b i {
-webkit-backdrop-filter: blur(15px);
/* backdrop-filter: blur(15px); */
background: rgba(0, 0, 0, .6);
height: 120px;
width: 120px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100vmax;
font-size: 32px;
}

.innerBanner {
background-size: cover;
background-repeat: no-repeat;
padding-top: 360px;
padding-bottom: 220px;
text-align: center;
}

section.aboutInner .content p {
padding-top: 22px;
max-width: 700px;
}

section.aboutInner .content h2 {
max-width: 620px;
}

section.aboutInner .abt-img01 {
padding-right: 4rem;
}

section.aboutInner2 {
padding-inline: 9rem;
}

section.music .content p {padding-top: 20px;/* max-width: 75%; */margin: auto;}

section.music .content p.last {
/*max-width: 650px;*/
}

section.music ul {
list-style: disc;
margin-left: 20px;
padding: 20px 0 28px;
}

section.music ul li {
padding-block: 6px;
}

section.music .bottom {
margin-top: -2rem;
}

section.music .bottom .content {
padding-top: 6rem;
}

section.music .bottom .flip-container {
/*padding-left: 2rem;*/
}

section.videos .content {
text-align: center;
}

section.videos .content h2 {
padding-bottom: 1rem;
}

section.videos .content .video-container {
padding-block: 3rem 6rem;
}

.galleryImg img {
width: 100%;
}

section.contact .content p {
max-width: 850px;
margin: auto;
}

section.contact .content ul {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 5rem;
}

section.contact .content ul li {
display: flex;
align-items: baseline;
gap: 1rem;
}

section.contact .content ul li span {
color: var(--white);
margin-right: 6px;
}

.field span.checkBoxWrap {
display: flex;
margin-bottom: 16px;
gap: 6px;
}

section.voltage .txt p {
max-width: 690px;
padding: 30px 0 22px;
}

section.voltage .voltageImg {
padding-block: 2rem;
}

.innerBanner p {
max-width: 860px;
margin: auto;
padding-top: 22px;
}

.audio-player {
width: 100%;
position: relative;
display: flex;
align-items: center;
background: #181818;
height: 75px;
max-width: 550px;
margin-bottom: 1.5rem;
}

.audio-player .controls {
display: flex;
padding: 14px 18px 15px;
justify-content: center;
}

.progress {
height: 75px;
background-color: #181818;
width: 100%;
position: absolute;
top: 0;
bottom: 0;
margin-left: 4rem;
}

.progress-bar {
width: 0;
height: 100%;
background-color: #262626;
position: relative;
z-index: 2;
border-left: 1px solid #3a3a3a;
border-radius: 0 !important;
}

.current-time,
.total-time {
margin-top: 0;
display: inline-block;
position: relative;
z-index: 3;
margin-inline: 4px;
}

.audio-player audio.audio {
display: none;
}

.audio-player input.volume-control {
display: none;
}

button.play-pause-button {
display: flex;
height: 30px;
width: 30px;
align-items: center;
justify-content: center;
background: transparent;
border: 0;
}

button.play-pause-button i {
position: absolute;
color: #fff;
font-size: 22px;
font-weight: 600;
}

.audio-player .timeWrap {
margin-left: 1rem;
position: relative;
z-index: 5;
}

.audio-player .timeWrap span{
margin-right: 1rem;
}

section.music h2 {
     /*text-align: center; */
}


.padSec{
    padding-bottom: 20px;
}
.relatedProduct.enjoy-card a{
   padding: 17px 68px !important;
   margin-top: 25px;
}