@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --primary: #f26522;
    --secondary: #0d61af;
    --white: #fff;
    --black: #111;
}

body {
    margin: 0;
    padding: 0 !important;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth
}

input[type=date], input[type=email], input[type=tel], input[type=text], select, textarea {
    background: none;
    border: solid 1px #ddd;
    color: #444;
    background: #fff;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 20px;
    padding: 14px 20px;
    width: 100%;
    outline: 0;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
}
input[type=submit] {
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    border: 0;
    letter-spacing: .8px;
    cursor: pointer;
    outline: 0;
    font-weight: 600;
    border-radius: 4px;
    font-family: Lato, sans-serif
}

input[type=submit]:hover {
    background: #277cc0;
    color: var(--white);
    transition: .8s
}

textarea {
    height: 100px;
    margin-bottom: 5px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
    color: #121212;
    font-weight: 400;
    text-transform: inherit;
    line-height: normal
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0 0 10px 0;
    color: #444;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

a,
li,
ul {
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    color: #444;
    line-height: 25px;
    font-size: 15px
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}

.heading {
    margin: 0px;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 16px;
}
.heading:before {
    content: '';
    position: absolute;
    border-bottom: solid 3px var(--secondary);
    bottom: 0;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.heading span {
    color: var(--primary);
}

.subheading {
    width: 80%;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    color: #121212;
    font-family: 'Open Sans', sans-serif
}

.zoomeffect {
    overflow: hidden;
    position: relative
}

.zoomeffect img {
    transition: transform .8s ease-in-out
}

.zoomeffect:hover img {
    transform: scale(1.1)
}

/* HEADER SECTION CSS */


.topbar {
    background: var(--primary);
    padding: 6px 0;
    position: relative;
    z-index: 1;
}

.topbar:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 27%;
    height: 100%;
    background: var(--secondary);
    border-radius: 70px 0 0;
    z-index: -1;
    border-left: solid 8px var(--white);
}
.contact ul {
    display: flex;
    justify-content: left;
    align-items: center;
    column-gap: 40px;
}
.contact li {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.contact li i,
.smoicons li a i {
    height: 35px;
    width: 35px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: #ffffff2e;
    border-radius: 50%;
}

.contact ul li a {
    color: var(--white);
    font-size: 18px;
}

.smoicons ul {
    column-gap: 5px;
}



.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*
header {
    position: relative;
}
header:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 305px;
    height: 100%;
    background: #f5f5f5;
    z-index: -1;
    border-radius: 0 70px 0 0;
}
*/
header {
    padding: 8px 0;
}
header.fixed {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    box-shadow: 3px 3px 13px #ddd;
    background: var(--white);
}
header.fixed img{
    max-width: 250px;
}
header a.nav-link.btn.btn-primary.text-light {
    padding: 10px 20px 12px;
    margin-left: 15px;
}
.menubar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menubar ul li a {
    display: inline-block;
    font-size: 16px;
    padding: 30px 19px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    letter-spacing: .5px;
    color: #333;
}
header img {
    max-width: 350px;
}
/*
header img {
    max-width: 100px;
    animation-name: spin3D;
    animation-duration: 7s;
    animation-iteration-count: 100;
    animation-timing-function: ease-in-out;
}
@keyframes spin3D{
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
    }
*/    
.header-btn a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #111;
}

.header-btn a i {
    background: #d9460030;
    height: 33px;
    width: 33px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-right: 8px;
}

/* Main Slider */

.mainslier {
    position: relative;
    z-index: 1;
}
/*
.mainslier:before {
    content: '';
    background: #0d61af3d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
*/
.nivo-caption {
    width: 85% !important;
    text-align: center;
    padding: 18px !important;
    border-radius: 50px !important;
    bottom: inherit !important;
    top: 50% !important;
    left: 50% !important;
    transform: translateY(-50%) translateX(-50%) !important;
    font-size: 42px !important;
    opacity: 1 !important;
    background: none !important;
    font-weight: 600;
    letter-spacing: 1px;
}
.mainslier .carousel-caption {
    z-index: 111;
}

.carousel-caption h1 {
    font-size: 50px;
    margin-bottom: 23px;
    display: block;
    line-height: 70px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0;
	animation: .5s ease-in-out .7s forwards lts;
	text-transform: uppercase;
}
@keyframes lts {
	0% {
		transform: translateX(-150px)
	}

	100% {
		opacity: 1;
		transform: translateX(0)
	}
}
.carousel-item img {
    height: 630px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}
.mainslider .carousel-content h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    font-family: cursive;
opacity: 0;
    animation: .5s ease-in-out .7s forwards lts;
}
@keyframes lts {
	0% {
		transform: translateX(-150px)
	}

	100% {
		opacity: 1;
		transform: translateX(0)
	}
}

.carousel-caption p {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 30px;
    opacity: 0;
	animation: .5s ease-in-out .9s forwards lts
}
.slider .btn-secondary{
	opacity: 0;
	animation: .5s ease-in-out .1s forwards tpbtm
}
@keyframes tpbtm {
	0% {
		transform: translateY(150px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.nivo-caption h1 {
	margin:0;
    background: #00000052;
    padding: 10px 30px;
    border-radius: 6px;
}
.nivo-caption h1{
    font-size: 40px !important;
    color: var(--white) !important;
    line-height: 65px;
/*     opacity: 0; */
/*     transform: translate(-150px, 0) scale(.3); */
/*     animation: leftRight .5s forwards 1.05s; */
/*     display: inline-block; */
    text-transform: uppercase;
    font-weight: 700;
}
@keyframes leftRight {
	40% {
		transform: translate(50px, 0) scale(.7);
		opacity: 1;
		color: var(--green);
	}

	60% {
		color: #0f40ba;
	}

	80% {
		transform: translate(0) scale(2);
		opacity: 0;
	}

	100% {
		transform: translate(0) scale(1);
		opacity: 1;
	}
}
.nivo-caption h1 span:nth-of-type(2) {
	animation-delay: 1.10s;
}
.nivo-caption h1 span:nth-of-type(3) {
	animation-delay: 1.15s;
}
.nivo-caption h1 span:nth-of-type(4) {
	animation-delay: 1.20s;
}
.nivo-caption h1 span:nth-of-type(5) {
	animation-delay: 1.25s;
}
.nivo-caption h1 span:nth-of-type(6) {
	animation-delay: 1.30s;
}
.nivo-caption h1 span:nth-of-type(7) {
	animation-delay: 1.35s;
}
.nivo-caption h1 span:nth-of-type(8) {
	animation-delay: 1.40s;
}
.nivo-caption h1 span:nth-of-type(9) {
	animation-delay: 1.45s;
}
.nivo-caption h1 span:nth-of-type(10) {
	animation-delay: 1.50s;
}
.nivo-caption h1 span:nth-of-type(11) {
	animation-delay: 1.55s;
}
.nivo-caption h1 span:nth-of-type(12) {
	animation-delay: 1.60s;
}
.nivo-caption h1 span:nth-of-type(13) {
	animation-delay: 1.65s;
}
.nivo-caption h1 span:nth-of-type(14) {
	animation-delay: 1.70s;
}
.nivo-caption h1 span:nth-of-type(15) {
	animation-delay: 1.75s;
}
.nivo-caption h1 span:nth-of-type(16) {
	animation-delay: 1.80s;
}
.nivo-caption h1 span:nth-of-type(17) {
	animation-delay: 1.85s;
}
.nivo-caption h1 span:nth-of-type(18) {
	animation-delay: 1.90s;
}
.nivo-caption h1 span:nth-of-type(19) {
	animation-delay: 1.95s;
}
.nivo-caption h1 span:nth-of-type(20) {
	animation-delay: 2s;
}
.nivo-caption h1 span:nth-of-type(21) {
	animation-delay: 2.5s;
}
.nivo-caption h1 span:nth-of-type(22) {
	animation-delay: 2.10s;
}
.nivo-caption h1 span:nth-of-type(23) {
	animation-delay: 2.15s;
}
.nivo-caption h1 span:nth-of-type(24) {
	animation-delay: 2.20s;
}
.nivo-caption h1 span:nth-of-type(25) {
	animation-delay: 2.25s;
}
.nivo-caption h1 span:nth-of-type(26) {
	animation-delay: 2.30s;
}
.nivo-caption h1 span:nth-of-type(27) {
	animation-delay: 2.35s;
}
.nivo-caption h1 span:nth-of-type(28) {
	animation-delay: 2.40s;
}
.nivo-caption h1 span:nth-of-type(29) {
	animation-delay: 2.45s;
}
.nivo-caption h1 span:nth-of-type(30) {
	animation-delay: 2.50s;
}
.nivo-caption h1 span:nth-of-type(31) {
	animation-delay: 2.55s;
}
.nivo-caption h1 span:nth-of-type(32) {
	animation-delay: 2.60s;
}
.nivo-caption h1 span:nth-of-type(33) {
	animation-delay: 2.65s;
}
.nivo-caption h1 span:nth-of-type(34) {
	animation-delay: 2.70s;
}
.nivo-caption h1 span:nth-of-type(35) {
	animation-delay: 2.75s;
}
.nivo-caption h1 span:nth-of-type(36) {
	animation-delay: 2.80s;
}
.nivo-caption h1 span:nth-of-type(36) {
	animation-delay: 2.85s;
}
.nivo-caption h1 span:nth-of-type(37) {
	animation-delay: 2.90s;
}
.nivo-caption h1 span:nth-of-type(38) {
	animation-delay: 2.95s;
}
.nivo-caption h1 span:nth-of-type(39) {
	animation-delay: 3s;
}
.nivo-caption h1 span:nth-of-type(40) {
	animation-delay: 3.5s;
}

/* About Us */

.about {
    padding: 30px 0 0;
}
.about video {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
.about h3 {
    text-align: center;
    margin: 5px 0 0;
    color: var(--secondary);
}
.videosec {
    border-top: solid 1px var(--secondary);
    margin-top: 30px;
    padding-top: 30px;
}
.videosec video {
    height: 400px;
    object-fit: cover;
}
.about2 .cube {
    -webkit-animation: spin 9s infinite linear;
    animation: spin 9s infinite linear;
    width: 330px;
    height: 330px;
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg) translateZ(-200px);
    transform: rotateY(0deg) translateZ(-200px);
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
 }
 @-webkit-keyframes spin {
    from {
        transform: rotateY(0) rotateX(0);
    }
    to {
        transform: rotateY(-360deg) rotateX(360deg);
    }
 }
 @keyframes spin {
    from {
        transform: rotateY(0) rotateX(0);
    }
    to {
        transform: rotateY(-360deg) rotateX(360deg);
    }
 }
 .about2 .cube > div {
    border: 1px solid #333;
    width: 380px;
    height: 380px;
    position: absolute;
    opacity: 0.95;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 15px;
 }
 .about2 .cube > div:hover {
    opacity: 1;
    transition: opacity 0.3s linear;
 }
 .cube-layer-1 {
    transform: rotateX(90deg) translateZ(100px);
    background: url(https://bkcabins.in/wp-content/uploads/2024/04/product1.jpg) no-repeat center !important;
 }
 .cube-layer-2 {
    transform: translateZ(100px);
    background: url(https://bkcabins.in/wp-content/uploads/2024/04/product2.jpg) no-repeat center !important;
 }
 .cube-layer-3 {
    transform: rotateY(90deg) translateZ(100px);
    background: url(https://bkcabins.in/wp-content/uploads/2024/04/product3.jpg) no-repeat center !important;
 }
 
 .cube-layer-4 {
    transform: rotateY(180deg) translateZ(100px);
    background: url(https://bkcabins.in/wp-content/uploads/2024/04/product4.jpg) no-repeat center !important;
 }
 .cube-layer-5 {
    transform: rotateY(-90deg) translateZ(100px);
    background: url(https://bkcabins.in/wp-content/uploads/2024/04/product5.jpg) no-repeat center !important;
 }
 .cube-layer-6 {
    transform: rotateY(-90deg) translateZ(100px);
    background: url(hthttps://bkcabins.in/new/wp-content/uploads/2024/04/product6.png) no-repeat center !important;
 }
 
 .course-boxs {
    margin-top: 30px;
 }
 
 .rightTI {
    background: #ff002b;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 18s linear infinite;
 }
 .rightTI:hover {
    animation-play-state: paused;
 }
 @-webkit-keyframes marquee {
    0% {
        text-indent: 100%;
    }
    100% {
        text-indent: -100%;
    }
 }
 
 .rightCSS {
    background: #a35dc1;
    overflow: hidden;
 }
 .rightCSS div {
    position: relative;
    animation: CSSright linear 18s infinite;
 }
 @keyframes CSSright {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
 }
 .rightCSS:hover div {
    animation-play-state: paused;
 }
 
 .rightJS {
    background: #ffa900;
 }
 
 .rightJQ {
    background: #00a753;
 }
 
 .admision-text {
    width: 100%;
    padding: 23px 15px;
    margin: auto;
    height: 20px;
    box-shadow: 0 0.1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #fff;
    font-size: 19px;
    margin-bottom: 50px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    background: #ffb607;
 }   

.about img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25% 25% 23% 13% / 50% 27% 50% 10%;
}
/*
.about-content {
    padding: 25px;
    height: 100%;
}
*/
.about-content .leftheading span {
    color: var(--primary);
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 10px;
}

.about-content .leftheading {
    font-size: 32px;
    line-height: 43px;
    text-transform: capitalize;
    font-weight: 700;
}


/* Feature */

.feature {
    padding: 60px 0 70px;
    position: relative;
    z-index: 1;
}
.feature-item {
    padding: 30px;
    border-radius: 6px;
    height: 100%;
    background: white;
    box-shadow: 0 0 14px #bbbbbb78;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transition: all ease-in-out .5s;
}
.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}
.feature-item figure {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50px;
    box-shadow: 0 0 16px #dfdfdf;
}
.feature-item img {
    width: 55px !important;
    height: auto;
}
.feature-item h3 {
    margin: 15px 0 8px;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
}
.feature-item p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/*Products */

.products {
    padding: 60px 0 70px;
    background: url(../images/productbg.jpg) no-repeat center / cover;
    background-attachment: fixed;
    background-size: cover;
}

.products .row {
    row-gap: 22px;
}
.productsitem {
    border: solid 1px #E0E6F7;
    border-radius: 4px;
    position: relative;
    padding: 15px;
    transition: all ease-in-out .5s;
    background: #fffc;
    text-align: center;
}
.productsitem:hover {
    box-shadow: 3px 3px 13px #ddd;
    transform: translateY(-3px);
}

.productsitem figure {
    overflow: hidden;
}

.productsitem figure img {
    width: 100%;
    height: 250px;
    transition: transform .4s ease-in-out;
}

.productsitem figure:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

.productsitem img {
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.productsinfo {
    padding: 20px 0 5px;
}

.productsinfo h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.productsinfo p {
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Why Choose Us */

.whyus {
display: flex;
    column-gap: 50px;
    align-items: center;
}
.whyus h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}
.whyus ul {
    padding-right: 80px;
}
.whyus .whyusleft, .whyus .whyusright {
    width: 50%;
}

.whyus img {
    width: 100%;
}
.whyus ul li {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.whyus ul li h4 {
    font-weight: 500;
    margin-bottom: 8px;
}
.whyus ul li figure {
    background: #0d61af2e;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyus-cptn {
    width: 80%;
}

.whyus ul li figure img {
    width: 60px;
}

.whyus ul li:nth-child(2) figure {
    background: #f2652240;
}

.whyus ul li:nth-child(3) figure {
    background: #25aae159;
}


/* Reviews */

.reviews {
    padding: 60px 0 65px;
    background: url(../images/reviewbg.png) no-repeat center / cover;
    background-attachment: fixed;
    background-size: cover;
}
.reviews-item {
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    background: #0d61af5c;
    border: solid 1px #ffffff3b;
}
    .reviews-item img {
        width: 100px;
        border-radius: 50%;
        height: 100px;
        object-fit: cover;
        margin: 0 auto 20px;
    }
    .reviews-item h3 {
        font-size: 20px;
    }
    .reviews-item h3 small {
        color: var(--primary);
        font-size: 17px;
        display: block;
        padding-top: 6px;
        font-weight: 600;
    }
    .reviews-item h3, .reviews-item p {
        color: var(--white);
    }

 /* Home Contact */
 
.homecontact {
    padding: 55px 0 70px;
    background: linear-gradient(#000000d4, #054178eb), url(../images/contactbg.jpeg) no-repeat bottom / cover;
    background-attachment: fixed;
}
 .homecontact iframe{
   width: 100%; 
   height: 100%;
   border-radius: 6px;
 }
.homecontact-form {
    padding: 30px;
    border-radius: 6px;
    border: solid 1px #ffffff47;
    background: #0d61af1f;
}
.homecontact-form input[type="submit"]{
    margin-top: 10px;
    background: var(--primary);
}
.homecontact-form input, .homecontact-form textarea {
    background: none;
    border: solid 1px #dddddd4f;
    color:#fff;
}
.homecontact-form ::placeholder{
    color:#fff;
}



/* Footer */


footer {
    padding: 50px 0 0;
    background: linear-gradient(99deg, #000000c2, #000000e0),url(../images/footerbg.jpg)no-repeat center center/cover;
    background-attachment: fixed;
	position:relative;
}

footer:before {
    position: absolute;
    content: '';
    height: 55px;
    width: 100%;
    background: url('../images/ftrshape.png')no-repeat center center/cover;
    top: -4px;
    background-size: contain;
    background-repeat: no-repeat;
	filter:brightness(2)
}
.home footer:before{
	filter:unset;
}

.footerabout .footerlogo {
    margin-right: 20px;
}
.footerabout img {
    width: 100%;
}
.footerabout {
    padding-right: 50px;
}
footer .col-sm-4:nth-child(2) {
    padding-left: 70px;
}
footer form input[type="email"] {
    margin: 0;
    border-radius: 6px;
    padding: 15px 20px;
    border: solid 1px #eeeeee1f;
    background: #ffffff05;
    font-size: 14px;
}
.footer-contact .col-sm-4:nth-child(2) {
    padding-left: 10px;
}
.footer-contact {
    padding: 30px 0;
    border-top: solid 1px #ffffff29;
    border-bottom: solid 1px #ffffff29;
    margin-top: 40px;
}
.smo {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-top: 20px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item a:hover {
    color: var(--secondary);
}
.footerabout p {
    margin: 25px 0 20px;
}
.smo li a {
    background: #4064ac;
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    transition: all ease-in-out .5s;
}
.smo li:nth-child(2) a {
    background: #0A66C2;
}
.smo li:nth-child(3) a{
background: #1DA1F2;	
}
.smo li:nth-child(4) a {
   background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.smo li a:hover {
	background: var(--primary);	
    transform: translateY(-5px);
}
footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    text-transform: capitalize;
    font-size: 22px;
    padding-bottom: 18px;
    letter-spacing: .5px;
    border-bottom: dashed 1px #ddddddbd;
}
footer h3:before {
    content: '';
    position: absolute;
    border-bottom: solid 3px var(--primary);
    width: 80px;
    bottom: -1px;
    z-index: 1;
}
footer p {
    margin-bottom: 6px;
}
footer figure {
    background: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 4px;
}
footer ul.ftrmenu li {
    position: relative;
}
footer ul.ftrmenu li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    padding-right: 10px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}
}
footer figure img {
width: 150px;
}
footer ul.socialicon {
  display: flex;
    column-gap: 6px;
	justify-content: flex-end;
}
footer ul.socialicon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #212222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin: 0;
}
footer .readbtn {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 15px;
    display: block;
}
footer ul.socialicon li a:hover {
  background: var(--primary);
}

footer .ftdetails li i {
  margin-right: 8px;
}
footer ul li, footer ul li a, footer p, footer p a {
    color: #eee;
}
footer ul.smo li:before {
    display: none;
}

footer ul.smo li {
    padding: 0;
}
footer ul li {
    position: relative;
    padding-left: 22px;
    line-height: 32px;
}
footer ul li {
    line-height: 35px;
}
footer ul li:before {
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 13px;
}
.copyright {
    padding: 20px 0;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.copyright ul {
    display: flex;
    justify-content: flex-end;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}

/* Footer Contact */

.ftrcontact-item {
    background: #ffffff14;
    border-radius: 6px;
    border: 1px solid #ffffff2e;
    text-align: center;
    padding: 15px;
    height: 100%;
}
.ftrcontact-item strong {
    display: block;
    color: var(--white);
    font-weight: 400;
    font-size: 19px;
    margin: 12px 0 8px;
}
.ftrcontact-item i {
    margin: 0 auto;
    color: var(--white);
    font-size: 20px;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ftr-info p {
    margin: 0;
}
.ftr-info p, .ftr-info a {
    color: #eee;
}

/* WhatsApp */

#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99999999;
    padding-top: 8px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
}
#whatsappbtn:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50%;
	background: #4fcc5d;
	box-shadow: 0 0 10px #4fcc5d;
	animation: whtsbtn 2s linear infinite forwards;
}
#whatsappbtn img{
width: 110px;    
}
 @keyframes whtsbtn {
 from {
 transform:scale(1.0);
 opacity: 1;
}
to {
	transform:scale(1.5);
	opacity: 0;
}
}
#whatsappbtn img {
	width: 30px;
	margin-top: 4px;
}

/* BREADCRUMB SECTION CSS */

.breadcrumb {
    padding: 30px 0px;
    margin: 0px;
    background:var(--secondary);
}
.breadcrumb h1 {
    margin-bottom: 0;
}

.breadcrumb p {
    margin: 0;
    text-align: center;
}

.breadcrumb p,
.breadcrumb span,
.breadcrumb p a {
    color: #fff;
    font-weight: 500;
}

.breadcrumb p a {
    padding-right: 18px;
    margin-right: 5px;
    position: relative;
}
.breadcrumb h1 span {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--white);
    text-transform: uppercase;
    line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
    font-size: 28px;
    margin: 0 0 15px;
    font-weight: 800;
}

.breadcrumb h1 span a {
    display: none;
}
.breadcrumb a:after {
    position: absolute;
    content: '\f101' !important;
    font-size: 10px !important;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free' !important;
    color: var(--white);
    right: 0;
    top: -2px;
}
.secondary-container {
    padding: 60px 0;
}

/* CONTACT US PAGE CSS */

.contact-form .heading{
	margin-bottom: 50px;
}
.contact-img:after {
    background: url(../images/circle.png) no-repeat center;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    z-index: -1;
}
.contact-img img {
    width: 100%;
    animation: updown 3s ease-in-out alternate infinite;
    filter: drop-shadow(9px 3px 0px var(--primary));
}
@keyframes updown {
 from {
 transform: translateY(-30px);
}
to {
    transform: translateY(5px);
}
}
.cnt-dtl{
	padding: 60px 0;
    background: #171d34;
}
.stars{
    right: 95px;
    filter: brightness(0.5);
    rotate: 180deg;
    width: 70px;
    bottom: 58px;
}

.contact-form {
    padding: 50px 0;
	overflow:hidden;
	background:#1b2137;
	position:relative;
	z-index:1;
}
.contact-form .star {
    left: -76%;
    position: absolute;
    top: -225px;
	z-index:-1;
	filter: brightness(0.7);
}
.contactus_details {
    background: #1d233c;
    padding: 35px 25px 40px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #29569373;
	box-shadow: inset 0 0 10px #ffffff38;
    transition: ease-in-out 0.5s;
}
.contactus_details:hover{
	box-shadow:unset;
}
.contactus_details img {
    width: 105px;
    height: 105px;
    border: 1px solid #ffffff17;
    padding: 11px;
    border-radius: 14px;
}
.contactus form p {
  margin: 0;
}
.contactus textarea {
    height: 120px;
    resize: none;
}
.contactus form h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 22px;
}


.contactus_details h3 {
	color:var(--white);
    font-weight: 600;
	margin: 15px 0;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: .5px;
}
.contactus iframe {
    width: 100%;
    height: 450px;
    filter: invert(1);
    margin-bottom: -7px;
}
.contactus_details p, .contactus_details a {
    margin-bottom: 0;
    font-size: 15px;
	color:var(--white)
}
.contactus-form form {padding: 32px 30px 30px;box-shadow: 4px 4px 15px #0808081c;}
.contactus-form figure {
    width: 98%;
    height: auto;
    border-radius: 20px;
    overflow:hidden;
}
.contactus-form figure img {
    width: 100%;
    height: 445px;
    object-fit: cover;
}

.storelocation {
    padding: 60px 0;
    margin-bottom: 55px;
    background: #c98d8317;
}

.storelocationlist {
    padding: 35px;
    background: var(--white);
    text-align: center;
    box-shadow: 3px 3px 15px #00000014;
    border-radius: 18px;
}

.storelocation .row {
    row-gap: 23px;
}

.storelocationlist h3 {
    color: var(--primary);
    font-size: 23px;
}

.contact-form input, .contact-form textarea {
    background: transparent;
    border: solid 1px #dddddd59;
    padding: 20px;
    color: #ccc !important;
}

.contact-form ::placeholder {
    color: #ccc;
}

.contact-form input[type="submit"] {
    background: var(--primary);
    padding: 14px 37px;
    color: var(--white) !important;
    border: none;
    margin-top: 9px;
}

/* About Us */

.about .feature {
    padding-bottom: 0;
}
.about .aboutus-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px 0 0 8px;
}
.aboutus-content {
    background: #f8f8f8;
    height: 100%;
    padding: 30px;
    box-shadow: 3px 3px 13px #ddd;
    border-radius: 0 8px 8px 0;
}
.aboutus-content h2 {
    font-weight: 600;
    margin-bottom: 20px;
}


/* Product Details */

.prdctdtls-contact {
    background: var(--primary);
    padding: 30px 35px 35px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 0 0;
}
.prdctdtls-contact h3 {
    font-size: 26px;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.prdctdtls-contact a {
    display: block;
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
    width: fit-content;
    margin: 0 auto;
}

.prdctdtls-contact i {
    display: inline-flex;
    height: 65px;
    width: 65px;
    justify-content: center;
    align-items: center;
    background: #75b743;
    border-radius: 50%;
    font-size: 24px;
    color: transparent;
    -webkit-text-stroke: 1.4px var(--white);
    border: 2px solid var(--white);
}
.prdctdtls-contact h3 {
    margin: 18px 0 12px;
}
.prdctdtls-sidebar ul li a {
    display: block;
    background: #f8f8f8;
    padding: 12px 18px;
    margin-bottom: 5px;
    border-left: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: .5s;
    font-size: 16px;
    font-weight: 600;
}
.prdctdtls-sidebar ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: var(
    --primary);
    transition: .5s;
}
.prdctdtls-sidebar ul li.current-menu-item a, .prdctdtls-sidebar ul li a:hover {
    padding-left: 25px;
    background: var(--secondary);
    color: var(--white);
}
.prdctdtls-sidebar ul li.current-menu-item a:before, .prdctdtls-sidebar ul li a:hover:before {
    left: -34px;
}
.prdctdtls-content {
    padding: 10px;
    border: 2px dotted #1b6dc14a;
    border-radius: 5px;
}
.prdctdtls-content p {
    margin-bottom: 12px;
}
.prdctdtls-content p:last-child {
    margin: 0;
}
.prdctdtls-content h2 {
    font-weight: 700;
    font-size: 24px;
    margin: 15px 0 10px;
    color: var(--primary);
}
.prdctdtls-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
}

.prdctdtls-sidebar {
    position: sticky;
    top: 0;
    background: #eee;
    padding: 15px;
    border-radius: 6px;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 35px;
    right: 25px;
    z-index: 99;
    padding: 0;
    background: var(--primary);
    width: 50px;
    height: 50px;
    color: var(
    --white);
    text-align: center;
    padding-top: 12px;
    font-size: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
}
#rmp-menu-title-573 .rmp-menu-title-image {
    width: 100% !important;
    height: auto !important;
}
#rmp_menu_trigger-573 .responsive-menu-pro-inner, #rmp_menu_trigger-573 .responsive-menu-pro-inner::before, #rmp_menu_trigger-573 .responsive-menu-pro-inner::after {
    background-color: #fff !important;
}
#rmp-menu-wrap-573 {
    padding: 15px !important;
}
#rmp-menu-wrap-573 .rmp-menu-item-link {
    color: var(--white) !important;
}
#rmp-container-573 {
    left: 0;
}
.rmp-container.rmp-slide-right, .rmp-container.rmp-push-right {
   transform: translateX(-100%) !important;
}
.rmp-container.rmp-container.rmp-slide-right.rmp-menu-open {
    transform: translateX(0) !important;
}

.product-gallery {
    margin-bottom: 10px;
}

.product-gallery .envira-lazy {
    border-radius: 6px;
}
.envira-lazy {
    background: #fff;
    padding: 25px 15px;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
	border-radius: 20px;
}
.envira-lazy:before {
    transform: scale(0);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
      background: rgba(255,255,255,.2);
    transition: .5s;
    z-index: 1111111;
}
.envira-lazy:hover:before {
    transform: scale(1.5);
}
.partners{
	padding:60px 0;
}
.partners .row {
    row-gap: 25px;
}
.partners-item {
    border: dotted 2px var(--secondary);
    padding: 15px;
    border-radius: 6px;
}
.partners-item img {
    width: 100% !important;
    aspect-ratio: 2/1.5;
    object-fit: contain;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
    color: var(--white);
}
.envira-lazy {
    border: solid 1px var(--primary) !important;
    border-radius: 6px !important;
    padding: 20px;
}

@media only screen and (max-width:768px){
.topbar .col-sm-5 {
    display: none;
}	
.ftrcontact-item {
    padding: 15px;
}	
.contact ul {
    justify-content: center;
    column-gap: 18px;
}	
.contact li i, .smoicons li a i {
    height: auto;
    width: auto;
    background: none;
	margin-right: 5px;
}
header .col-3 {
    width: 70%;
}
.about-content {
    padding: 25px 25px 0;
}	
.products .row {
    row-gap: 15px;
}	
.mainslider .carousel-control-prev, .mainslider .carousel-control-next {
    display: none;
}	
.mainslider .carousel-content h2 {
    font-size: 53px;
    font-weight: 600;
    color: var(--white);
}	
header .col-9 {
    width: 30%;
}	
.about {
    padding: 60px 0 0 !important;
}
.about2 .cube > div {
    width: 280px !important;
    height: 280px !important; 
}	
.feature {
    padding: 60px 0 0;
}	
.whyus {
    column-gap: 0;
    flex-direction: column;
	padding: 0 15px;
}
.homecontact-form {
    padding: 30px 30px 20px;
}	
.whyus .whyusleft, .whyus .whyusright {
    width: 100%;
}	
.whyus ul {
    padding-right: 0;
}	
.whyus ul li {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.whyus-cptn {
    width: 100%;
    margin-top: 10px;
}	
.whyus img {
    height: auto;
}
.whyus h2 {
    font-size: 28px;
    margin: 30px 0 20px 0;
    text-align: center;
}	
header img {
    max-width: 250px;
}
.smoicons ul {
    column-gap: 5px;
    justify-content: center !important;
}	
	.topbar:before{
		display:none;
	}	
.feature .row {
    row-gap: 10px;
}
.about-content .leftheading {
    font-size: 22px !important;
    line-height: 30px !important;
}
.about-content {
    padding: 0;
    margin-top: 60px;
    text-align: center;
}
.heading {
    font-size: 28px;
}
.homecontact iframe {
    height: 250px;
}
.footerabout {
    padding-right: 15px;
    margin-bottom: 25px;
}
footer ul li a {
    line-height: 32px;
}	
.footer-contact .row {
    row-gap: 15px;
}	
#rmp_menu_trigger-573 {
    background: var(--secondary) !important;
    border-radius: 4px !important;
}
.menucontainer ul li:last-child a {
    margin-left: 0;
}	
#rmp-container-573 {
    background-color: var(--white) !important;
}
.about .col-lg-6.col-md-12.col-sm-12.pe-0 {
    padding-right: 15px !important;
}	
.aboutus-content {
    padding: 15px;
    box-shadow: none;
}
.about .col-lg-6.col-md-12.col-sm-12.ps-0 {
    padding-right: 0 !important;
}	
.about .feature {
    padding-bottom: 60px;
}	
.about .aboutus-img img {
    border-radius: 6px;
}
.contact-img img {
    height: auto;
    margin-top: 45px;	
}
.contact-form input, .contact-form textarea {
    padding: 15px 20px;
}
.contactus textarea {
    height: 80px;
}
.cnt-dtl .row {
    row-gap: 13px;
}
#rmp-menu-wrap-573 .rmp-menu-current-item .rmp-menu-item-link {
    color: var(--white) !important;
    background-color: var(--primary);
}	
.contactus_details img {
    width: 85px;
    height: 85px;
}	
#rmp-menu-item-2323 a.rmp-menu-item-link {
    background: none !important;
    padding-left: 0 !important;
}
.prdctdtls-content img {
    height: auto;
}
.prdctdtls .col-lg-4 {
    order: 2;
}
.prdctdtls .col-lg-8 {
    order: 1;
}
.mainslider .carousel-content h2 {
    font-size: 30px;
}
.carousel-item img {
    height: 220px;
}
button.slick-prev.slick-arrow{
		left:0 !important;
}
button.slick-next.slick-arrow{
		right:0 !important;
}	
.about {
    overflow: hidden;
}	
.contact ul li a {
    font-size: 15px;
}	
.nivo-caption h1 {
    font-size: 21px !important;
    line-height: 35px;
}	
.nivo-caption {
    width: 100% !important;
}	
}
@media only screen and (max-width:414px){
.about2 .cube > div, .about2 .cube{
    width: 220px !important;
    height: 260px !important; 
}
.about-content {
    margin-top: 40px;
}	

}	