 @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Rubik:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary:#2B90CF;
  --secondary:#1e99e6;
  --white:#fff;
  --black:#000;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background:var(--primary); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

body {
    margin: 0;
    padding: 0 !important;
    font-family: 'Rajdhani', sans-serif;
	font-family: "DM Sans", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #ddd;
    color: #444;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 15px;
    padding: 14px 20px;
    width: 100%;
    outline: 0;
    border-radius: 4px;
font-family: "DM Sans", sans-serif;
}
input[type="submit"] {
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
  border: none;
  padding: 11px 25px;
  font-size: 14px;
  border: 0;
  letter-spacing: 0.8px;
  cursor: pointer;
  outline: none;
  font-weight: 600;
border-radius: 4px;
font-family: "DM Sans", sans-serif;
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
    height: 110px;
    margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
font-family: 'Rajdhani', sans-serif;
    color: var(--primary);
    font-weight: 600;
    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 {
padding: 0;
    margin: 0 0 10px 0;
    color: #444;
    font-weight: 400;
font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 24px;
}
ul, li, a{
  list-style-type: none;
font-family: "DM Sans", sans-serif;
  color: #444;
    font-size: 15px;
    line-height: 24px;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading {
    margin-bottom: 40px;
    font-size: 35px;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.heading:before {
    content: '';
    position: absolute;
    border-top: solid 3px var(--secondary);
    width: 60px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.subheading {
    margin: 0px auto 10px;
    font-size: 17px;
    color: var(--secondary);
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}


/* TOPBAR SECTION CSS */

.topbar {
    background: var(--primary);
    padding: 9px 0;
}
.topbar .row {
	align-items: center;
}
.top-contact {
    display: flex;
    column-gap: 15px;
}
.top-contact p {
margin:0;
}
.top-contact i {
    margin-right: 8px;
}
.topbar p:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.topbar p, .topbar p a, .smoicons ul li a {
    color: var(--white);
}
.smoicons ul {
    display: flex;
    align-items: center;
    justify-content: end;
}
.smoicons li {
    border-right: 1px solid #ffffff2e;
    padding: 0 15px;
}
.smoicons li i {
    font-size: 16px;
}
.smoicons li:last-child {
    border: none;
    padding-right: 0;
}
.smoicons ul li, .smoicons ul li a {
    color: var(--white);
    font-size: 18px;
}


/* HEADER SECTION CSS */

.mainmenu.fixed {
    position: fixed;
    top: 0;
    background: var(--white);
    z-index: 999;
    width: 100%;
    box-shadow: 2px 2px 13px #ddd;
	 padding: 3px 0;
}
.mainmenu {
    padding: 6px 0;
}
header .row {align-items: center;}
header img {
    width: 85px;
}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}

/* Menubar */


.mainmenu .btn-primary {
    border-radius: 50%;
    padding: 0;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* SLIDER SECTION CSS */


.mainslider figure{
	margin:0;
}
.mainslider figure img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    filter: brightness(0.7);
}
.mainslider .carousel-caption {
    top: 50%;
    left: 0;
    right: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    bottom: inherit;
}
.mainslider .carousel-content {
    text-align: center;
    padding: 0 10%;
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    letter-spacing: .6px;
    text-transform: capitalize;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    margin: 20px 0;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-caption span {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 25px;
}
.mainslider a.phnbtn {
    font-size: 20px;
    display: block;
    color: var(--white);
}
.mainslider .carousel-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}
.mainslider .carousel-caption p {
    font-size: 16px;
    margin: 20px 0 22px;
    line-height: 29px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
}
 .mainslider .carousel-caption p {
    padding: 0 200px;
}
.mainslider .carousel-content .btn {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
    padding: 11px 25px;
    border-radius: 4px;
    font-size: 17px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.mainslider button i {
    background: rgba(0,0,0,.5);
    font-size: 27px;
    width: 35px;
    height: 55px;
    line-height: 55px;
}

/* Scrolling Promotions */

.enable-animation {
    background: var(--primary);
    padding: 15px 0;
}
.enable-animation ul li {
    display: inline-flex;
    font-weight: 500;
    letter-spacing: .3px;
    align-items: center;
    margin: 0 15px;
    font-size: 15px;
    text-transform: uppercase;
}
.enable-animation ul li img {
    width: 25px;
    margin-right: 10px;
}
section.enable-animation ul li {
    border-right: solid 1px var(--white);
    color: var(--white);
    padding-right: 50px;
}
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
  }
}

.enable-animation .marquee__content {
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 15s linear infinite;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  -webkit-animation-name: scroll-abs;
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }

  to {
    transform: translateX(0);
  }
}



/* Services */

.products {
    padding: 50px 0 70px;
}
.products .row {
    row-gap: 25px;
}
.products-item {
    border: solid 1px var(--primary);
    padding: 15px;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    background: #f2ede55c;
    transition: all ease-in-out .5s;
}
.products-item:hover {
    transform: translateY(-5px);
}
figure{
	position:relative;
	overflow:hidden;
}
figure:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: #2b90cf24;
    transform: skewX(-25deg);
    transition: all .3s ease;
    z-index: -3;
}
.products-item:hover figure:before, .services-item:hover figure:before{
    animation: shine 1s;
	z-index: 1;

}
@keyframes shine{
	100% {
    left: 125%;
}
}
.products-item img {
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.products-item h3 {
    margin: 20px 0 10px;
    font-size: 25px;
}

/* Service Areas */

.services {
    background: linear-gradient(#ffffff7a, #ffffffa3), url(../images/servicesbg.png);
    padding: 65px 0 65px;
    background-attachment: fixed;
    background-size: cover;
}
.services .row{
	justify-content:center;
	row-gap:25px;
}
.services-item {
    position: relative;
}
.services-item figure{
	border-radius:6px;
}
.services-item figure img {
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    transition: all ease-in-out .5s;
}
.services-item:hover img {
    transform: scale(1.1) rotate(3deg);
}
.servicescptn {
    text-align: center;
    padding: 15px;
}
.services-item h3 {
    font-size: 25px;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}
.services-item h3:after {
    content: '';
    position: absolute;
    width: 50px;
    border-bottom: solid 3px var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.services-item:hover .btn-primary{
	background:var(--secondary);
}

/* CABINETRY SECTION CSS */

.calgary {
    padding: 50px 0 75px;
    background: #2b90cf0f;
}
.cabinetry .row {
    row-gap: 22px;
    justify-content: center;
}
.calgary-item {
    background: var(--primary);
    padding: 25px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ae7e3a21;
    text-align: center;
}
.calgary-item img {
    width: 65px !important;
    filter: invert(1) brightness(100);
}
.calgary-item h3 {
    color: var(--white);
    font-size: 25px;
    margin: 25px 0 12px;
}
.calgary-item p {
    color: var(--white);
}
.cabinetry-item figure {
    margin-bottom: 10px;
}


/* Cabinetry */

.cabinetry {padding: 65px 0 70px;}

.cabinetry-item {
    border: solid 1px var(--primary);
    height: 100%;
    padding: 15px;
    border-radius: 12px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.cabinetry-item img {
    width: 60px !important;
}

.cabinetry-item h3 {
    margin: 0;
}
.cabinetry-item h4 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0 8px;
    line-height: normal;
}

/* WHY CHOOSE US */

.whychooseus {
    padding: 60px 0 150px;
    text-align: center;
    background: linear-gradient(#093b79a6, #0016328c), url(../images/whychooseusbg.png);
}
.whychoose-list {
    margin-top: -115px;
}
.whychooseus .heading, .whychooseus p {
    color: var(--white);
}
.whychooseus p {
    width: 50%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
}
.whychooseus-item {
    padding: 40px 15px 25px;
    text-align: center;
    box-shadow: 0px 9px 54px 0px rgb(32 32 32 / 10%);
    background: var(--white);
    transition: all ease-in-out .5s;
    border-radius: 4px 4px 0 0;
    border-bottom: 2px solid var(--primary);
}
.whychooseus-item p {
    color: #626262;
    font-size: 15px;
    width: 100%;
	margin:0;
}
.whychooseus-item:hover {
    transform: translateY(-10px);
}
.whychooseus-item img {
    width: 45px;
    z-index: 1;
}
.whychooseus-item figure {
    position: relative;
    display: inline-flex;
}
.whychooseus-item figure:before {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background: #e5eeff;
    height: 55px;
    width: 55px;
    content: '';
    border-radius: 50px;
}
.whychooseus-item h3 {
    font-weight: 500;
    font-size: 22px;
    margin: 10px 0 7px;
    letter-spacing: .7px;
}


/* ABOUT US */

.homeabout {
    padding: 60px 0;
}
.homeabout figure {
    margin: 0;
    position: relative;
}
.homeabout img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.about-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border: 1px dashed #21176036;
    height: 100%;
}
.about-content h3 {
    color: #1b2540;
    font-size: 19px;
}
.about-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
    line-height: 35px;
    color: #03020a;
    font-weight: 700;
}
.about-content p strong {
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}
.about-content p:last-child {
    margin-bottom: 0;
}

/* Our Clients */

.ourclients {
    padding: 60px 0 70px;
}
.ourclients .row {
    row-gap: 25px;
}
.ourclients-item {
    border: dotted 1px var(--secondary);
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: all ease-in-out .5s;
}
.ourclients-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    border-radius: 20px;
}
.ourclients-item img {
    width: 90px;
    border-radius: 50%;
    border: dotted 2px var(--primary);
}
.ourclients-item h3 {
    font-size: 19px;
    margin: 0;
}
.ourclients-item h3 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding-top: 10px;
    color: #555;
}

/* Gallery */

.gallery{
	padding:60px 0;
}
.gallerypage h3 {
    font-size: 32px;
    margin: 30px 0 20px;
}
.envira-lazy {
    position: relative;
    overflow: hidden;
	 border-radius: 6px !important;
	 outline: solid 1px var(--secondary) !important;
    outline-offset: 5px !important;
}
.envira-lazy:before {
    transform: scale(0);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5fbff2e;
    transition: .5s;
    z-index: 1;
}
.envira-lazy:hover:before {
    transform: scale(1.5);
}

/* Gallery */

.gallery-item figure img {
    height: 280px;
    width: 100% !important;
    border-radius: 10px;
    object-fit: cover;
    transition: all ease-in-out .5s;
}
.gallery-item figure {
    overflow: hidden;
	border-radius: 6px;
}
.gallery-item {
    padding: 15px;
    border-radius: 10px;
    background: var(--primary);
}
.gallery-item h3 {
    margin: 0;
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
    font-size: 20px;
    padding: 10px 0 0;
}
.gallery-item:hover figure img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}

/* Contact Us*/

.contactus {
    background: #2b90cf0f;
    padding: 60px 0 65px;
}
.contactus form {
    padding: 25px;
    border: 1px dotted var(--primary);
    background: var(--white);
    border-radius: 6px;
}
.contactus form p {
  margin: 0;
}
.contactus form h3 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 22px;
}
.contactus_details {
    background: var(--white);
    border: dotted 1px var(--primary);
    padding: 15px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 6px;
}
.contactus_details i {
    font-size: 19px;
    color: var(--white);
    background: var(--primary);
    height: 50px;
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.contactus_details h3 {
    font-weight: 600;
    margin: 12px 0 5px;
    font-size: 20px;
}
.contactus_details ul li, .contactus_details a {
  font-size: 16px;
}
.googlemap iframe {
    width: 100%;
    height: 420px;
    margin-top: 10px;
    border-radius: 8px;
}
.contactus_details p {
    margin-bottom: 0;
}
.contactus iframe {
    width: 100%;
	height:450px;
    border-radius: 6px;
    margin-top: 5px;
}

.financecnt {
    background: var(--primary);
    padding: 20px;
    height: 100%;
    border-radius: 12px;
}

.financecnt h3, .financecnt h4, .financecnt p, .financecnt ul li {
    color: var(--white);
}

.financecnt h4 {
    margin-top: 19px;
}

.financecnt ul li {
    margin: 6px 0;
    list-style-type: square;
}

.financecnt ul {
    padding-left: 15px;
}
.subttl p {
    font-size: 16px;
    width: 60%;
    margin: 0 auto 40px;
    text-align: center;
}


/* Footer */

footer {
    background: #000;
}
footer .col-lg-3 {
    border-right: 1px solid #ffffff29;
    padding: 50px 30px 40px;
}
footer .col-lg-3:first-child {
    padding-left: 0;
}
.footerabout .footer-logo {
    background: var(--white);
    padding: 10px 20px;
    width: fit-content;
    border-radius: 5px;
}
.srvcarea ul#menu-service-areas {
    display: flex;
    flex-wrap: wrap;
}

.srvcarea ul#menu-service-areas li {
    width: 50%;
}
span.wpcf7-spinner {
    position: absolute;
    left: 0;
}


/* FAQ */

.hfaqs {
    padding: 60px 0;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
    background: #fff !important;
    font-size: 17px !important;
    letter-spacing: 0 !important;
    color: var(--black) !important;
}

.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
    float: right !important;
    margin: 0 !important;
    color: var(--primary) !important;
}
.faqcta {
    margin-top: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 18px;
}

.faqcta a {
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

/* Footer */


footer .col-lg-3:last-child {
    border: none;
}
footer ul li.menu-item a {
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
.footersmo li i {
    color: #4d4a4f;
    font-size: 18px;
}
footer h4 {
    margin-bottom: 15px;
    letter-spacing: .5px;
    font-size: 20px;
    color: var(--white);
}
footer a, footer p, .footerabout a, footer ul li {
    color: #ffffffd1;
    line-height: 30px;
}
footer p {
    line-height: 25px;
}
footer a:hover {
    color: var(--primary) !important;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
    display: flex;
    column-gap: 8px;
}
footer ul.footer-details li:last-child {
    margin-bottom: 0;
}
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.footer-details li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 42px;
}
footer ul.footer-details li i {
    color: var(--white);
    font-size: 13px;
    background: var(--primary);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    left: 0;
}
footer form {
    position: relative;
}
footer input[type="email"] {
    background: var(--white);
    font-size: 14px;
    border-radius:10px;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
.copyright {
    padding: 25px 0;
    background: var(--black);
    border-top: solid 1px;
}
.copyright .col-sm-4 {
    justify-content: flex-end;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
    font-size: 14px;
}
.copyright p a {
    color: var(--white);
}
.copyright ul {
    display: flex;
    justify-content: center;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.copyright img {
    width: 280px;
}





#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 33px;
    border-radius: 50%;
    z-index: 99999999;
    padding: 0;
    border: solid 2px var(--primary);
    background: var(--white);
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--primary);
    text-decoration: none;
    padding-top: 10px;
    box-shadow: 3px 11px 12px #0000009c;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 20px;
    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;
}
/* BLOG SECTION */
.blog{
	padding:60px 0;
}
.blog-item {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    transition: 0.5s;
	overflow:hidden;
}
.blog-content {
    padding: 30px 20px 15px;
}
.blog-item figure{
	height:255px;
	margin:0;
}

.blog-item img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.blog ul.blog_top_cnt {
    column-gap: 31px;
    margin-bottom: 15px;
}
.blog .blog_top_cnt li, .blog .blog_top_cnt li a {
    text-transform: uppercase;
    font-family: "Rajdhani", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: #696969;
}
.blog .blog_top_cnt li i{
	margin-right: 10px;
	color:var(--secondary);
}
.blog h3 a {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: capitalize;
    color: #130F40;
    line-height: 40px;
}

/* why choose section  */
.whychoose{
	padding:60px 0;
}
.whychoose .row{
	row-gap:22px;
}
.whychoose-item {
    padding: 10px;
    border: 1px solid #21176030;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    column-gap: 20px;
}
.whychoose-item figure  img{
    height: 100%;
    width: 245px;
	object-fit:cover;
	border-radius:10px;
}
.whychoose-item h3 {
    font-size: 22px;
    font-size: 26px;
    font-weight: 700;
}

/* Reviews */

.testimonial {
    padding: 60px 0;
    background: linear-gradient(#000000b8, #2b90cfdb), url(../images/reviewbg.jpg);
    background-attachment: fixed;
    background-size: cover;
}
.testimonial-item {
    background: var(--white);
    border-radius: 6px;
    padding: 15px;
}
.testimonial-cnt h3 {
    margin: 10px 0 0;
}
.testimonial figure {
    outline: 2px solid #21176047;
    border-radius: 50%;
    outline-offset: 5px;
    overflow: hidden;
    height: 100px;
    width: 100px;
    margin: 0 auto 25px;
}
.testimonial figure img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.rating {
    column-gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}
.rating i {
    color: #ffab00;
}
/*
.testimonial-desc {
    height: 140px;
    overflow-y: scroll;
    padding-right: 10px;
}
 .testimonial-desc::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .testimonial-desc::-webkit-scrollbar {
 width: 5px;
 background-color: #F5F5F5;
}
 .testimonial-desc::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}
.gglrvw img {
    width: 180px;
    margin-top: 5px;
}
*/

.sidebar-inquiry, .sidebar-contactdtls {
    padding: 18px 25px;
}
.sidebar-inquiry {
    background: #fbfdff;
    box-shadow: 2px 2px 13px #ddd;
}
.sidebar-contactdtls {
    background: var(--primary);
}
.sidebar-inquiry input, .sidebar-inquiry textarea, .sidebar-inquiry select{
    border: solid 1px  var(--secondary);
}
.sidebar-inquiry input[type="submit"] {
    margin-top: 8px;
    background: var(--primary);
    border: none;
}
.contactus-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    border-bottom: solid 1px #eee;
    padding-bottom: 12px;
}
.sidebar-contactdtls .contactus-cnt h5 {
    font-size: 17px;
    margin-bottom: 5px;
}
.sidebar-contactdtls .contactus-details i {
    color: var(--white);
}
.contactus-details i {
    font-size: 30px;
    margin-right: 30px;
    color: #2e3191;
    height: 35px;
    width: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar-contactdtls .contactus-cnt p {
    margin: 0;
}
.sidebar-contactdtls .contactus-cnt h5, .sidebar-contactdtls .contactus-cnt p, .sidebar-contactdtls .contactus-cnt ul li, .sidebar-contactdtls .contactus-cnt a {
    color: #fff;
}
.sidebar-contactdtls .contactus-details {
    border-bottom: solid 1px #ffffff3b;
}
.sidebar-contactdtls .contactus-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-sidebar h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 22px;
}
.sidebar-contactdtls h3{
color:#fff;
}
.details-content {
    background: #fbfdff;
    box-shadow: 2px 2px 13px #eee;
    padding: 20px;
}
.details-content p{
text-align: justify;	
}
.details-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

/* Breadcrumbs */

.breadcrumb {
    padding: 65px 0;
    background: linear-gradient(#0000005e, #000000d1), url(../images/breadcrumbbg.webp) no-repeat center center / cover;
}
.breadcrumb .row {
  align-items: center;
  display: flex;
}
.breadcrumb h1 {
    color: var(--white);
    background: #2997f6a8;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 50px;
    font-size: 27px;
    padding: 3px 30px 1px;
    letter-spacing: 1px;
}
.breadcrumb p {
    text-align: center;
    margin: 0;
}
.breadcrumb h1 p {
    text-align: left;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    color: var(--white);
    font-weight: 500;
}
.breadcrumb p a{
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}
.breadcrumb h1 span {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .5px;
    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 p{
  float:left;
}
.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;
}
.secondary-container {
padding: 60px 0;
}

.dtlscnt {
    padding: 25px;
    background: #f9f9f9;
    border: dotted 2px var(--primary);
    margin-top: 25px;
}
.dtlscnt ul li {
    line-height: 25px;
}
.dtlscnt ul li {
    margin: 10px 0;
}
.dtlscnt ul li:last-child {margin-bottom: 0;}
.srvccnt {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    background: #eee;
    padding: 10px;
    column-gap: 15px;
    border: dotted 2px var(--primary);
}

/* Blog */

.homebloglist img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.homebloglist {
    border: solid 1px #ddd;
    height: 100%;
    border-radius: 6px;
    background: #f9f9f9;
}

.homeblogbox {
    padding: 20px;
}

.homeblog .row {
    row-gap: 25px;
}
.homebloglist h3 a {
    font-size: 18px;
    line-height: 30px;
}
.homeblogbox span {
    color: var(--primary);
    font-weight: 600;
}

.homeblogbox span i {
    color: var(--secondary);
    margin-right: 8px;
}

.homebloglist h3 {
    margin: 12px 0 0;
}

@media only screen and (max-width:1200px){
	.mainslider .carousel-caption p {
    padding: 0;
}
.mainslider figure img {
    height: 550px;
}
.products-item img {
    height: 170px;
}
.gallery-item figure img {
    height: 220px;
}	
}
@media only screen and (max-width:1000px){
.mainslider .carousel-caption h1 {
    font-size: 50px;
    line-height: 50px;
}	
.mainslider .carousel-caption span {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1px;
}	
.mainslider figure img {
    height: 480px;
}
.products .row {
    row-gap: 25px;
}	
.products-item img {
    height: 230px;
}	
.about-content {
    margin-top: 15px;
}
.services-item figure img {
    height: 300px;
}
.contactus {
    padding: 50px 0;
}
.mainmenu {
    padding: 15px 0;
}
.menubar {
    display: flex;
    justify-content: flex-end;
}
div#rmp-menu-title-573 {
    display: none;
}
#rmp-menu-wrap-573 .rmp-menu-current-item .rmp-menu-item-link {
    background-color: var(--secondary) !important;
}
#rmp-container-573 {
    background-color: var(--black) !important;
}
.sidebar-inquiry {
    margin: 15px 0;
}	
}
@media only screen and (max-width:768px){
.mainslider figure img {
    height: 430px;
}
.mainslider .carousel-caption h1 {
    font-size: 40px;
    line-height: 30px;
}
.contactus .col-sm-6 {
    width: 100%;
}
.contactus {
    padding: 45px 0 60px;
}
.arrowbutton.prev {
    left: 0 !important;
}
.arrowbutton.next {
    right: 0 !important;
}	
footer .col-lg-3, footer .col-lg-9 {
    width: 100%;
}	
.footerabt {
    justify-content: center;
}	
.footerabt img {
    width: 300px !important;
    margin: 0 auto;
}
.mainmenu.fixed {
    position: relative;
}	
}
@media only screen and (max-width:568px){
.mainmenu .col-sm-2, .mainmenu .col-sm-10 {
    width: 50%;
}	
.carousel-control-prev {
    left: 5px !important;
}
.carousel-control-next {
    right: 5px !important;
}
.carousel-control-next, .carousel-control-prev {
    width: 40px !important;
    height: 40px !important;
}
.products-item img {
    height: 280px;
    clip-path: none;
}
.products .row {
    row-gap: 15px;
}
.gallery-item figure img {
    height: 300px;
}	
.mainslider .carousel-caption h1 {
    font-size: 35px;
    line-height: 35px;
}	
.mainslider .carousel-caption span {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0;
}	
.mainslider .carousel-caption p {
    font-size: 15px;
    margin: 27px 0 18px;
    line-height: 24px;
}
.breadcrumb {
    padding: 35px 0;
}
.details-banner img {
    height: 400px;
}	
}
@media only screen and (max-width:479px){
.mainslider .carousel-caption h1 {
    font-size: 25px;
    line-height: 26px;
}	
.mainslider .carousel-caption span {
    margin-bottom: 10px;
}
.mainslider .carousel-caption p {
    margin: 8px 0 18px;
    line-height: 24px;
}
.copyright ul {
    column-gap: 15px;
    margin-bottom: 20px;
}	
.footerabt img {
    width: 250px !important;
}
.smoicons {
    display: none;
}
.top-contact {
    justify-content: center;
}	
.copyright {
    margin-top: 15px;
}
.breadcrumb h1 {
    font-size: 22px;
}
.about-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 35px;
}
.about-content {
    padding: 20px;
}	
.details-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}	
}
@media only screen and (max-width:414px){
.top-contact i {
    margin-right: 5px;
}	
}
@media only screen and (max-width:375px){
	
}
@media only screen and (max-width:360px){
	
}