@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..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: #EB741F;
    --secondary: #8B0304;
    --white: #fff;
    --black: #000;
	--gradient: linear-gradient(#EB741F, #8B0304);
}

body {
    margin: 0;
    padding: 0 !important;
	font-family: "Archivo", 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: #333;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 16px 20px;
    width: 100%;
    outline: 0;
    border-radius: 4px;
    font-family: "Archivo", sans-serif;
    background: var(--white);
}
::placeholder {
    color: #333 !important;
	font-size:13px;
	font-family: "Archivo", sans-serif;
    font-size: 16px;
	font-weight:300;
}
form#commentform textarea, form#commentform input[type="text"] {
    background: #ffffff0d;
}
.comments label {
    background: no-repeat;
    border: none;
    padding: 5px 0;
}


select,
input[type="date"] {
    padding: 14px 17px;
}
input[type="submit"] {
    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: 500;
    border-radius: 4px;
    font-family: "Archivo", sans-serif;
    color: var(--white);
}
input[type="submit"]:hover {
    background: var(--primary);
    color: var(--white);
    transition: 0.8s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-family: "Archivo", sans-serif;
    color: var(--white);
    font-weight: 500;
    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;
    font-family: "DM Sans", serif;
    color: #161616b8;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}

ul,
li,
a {
    list-style-type: none;
    font-family: "Archivo", sans-serif;
    color: #222;
    line-height: 24px;
   font-size: 16px;
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}
.heading, .leftheading {
    font-size: 37px;
    font-weight: 700;
    line-height: 52px;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: var(--black);
}
.heading span {
    color: var(--primary);
}
.heading-text {
    font-size: 18px;
    color: #333;
    line-height: 30px;
}
.leftheading {
    margin-bottom:30px;
}
.leftheading {
    margin-bottom: 15px;
}
.subheading {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.book-btn {
    padding: 12px 18px;
    background: no-repeat;
    border: 1px solid var(--white);
}






/* Loader */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.pageloader .load {
    color: var(--white);
    letter-spacing: 6px;
    margin-top: 15px;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlay .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}


/* TOP BAR CSS */

.topbar {
    background: var(--primary);
    padding: 4px 0;
}
.smoicons{
	column-gap:8px;
}
ul.smoicons li {
    color: var(--white);
}
.topbar .smoicons li a{
    border-radius: 50px 50px 0;
    background: #ffffff2b;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
}
.top-contact i{
  border-radius: 50px 50px 0;
    background: #ffffff2b;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
}
footer .smoicons i{
   border-radius: 50px 50px 0;
    background: #ffffff2b;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    margin-right:6px;
}
.smoicons li {
    padding: 0 !important;
    margin: 0 !important;
}
.smoicons li i {
    position: inherit !important;
    top: inherit !important;
    left: inherit !important;
    padding: inherit !important;
}
.bottom-link li a {
    margin: 0 !important;
}
.book-demo {
    color: var(--white);
    top: -36px;
    left: 50%;
    background: var(
    --primary);
    padding: 5px 20px;
    transform: translate(-50%);
    border-radius: 10px 10px 0 0;
}
.top-contact p {
    padding: 0 15px;
}
.top-contact p:first-child {
    padding-left: 0;
    border-right: 1px solid #ffffff26;
    font-family: "Archivo", sans-serif;
}
.top-contact i {
    color: var(--white);
    font-size: 16px;
    margin-right: 8px;
}
.top-contact p a, .top-contact p {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.topbar-rgt {
    column-gap: 45px;
}
.topbar a.arrow-btn {
    display: inline-block;
    color: var(--white);
    transition-delay: 0.1s;
}

/* Header */

header {
    background: var(--white);
}
header .row {align-items: center;}
.logo img {
    width: 130px;
}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menubar {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 50px;
}
.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 {
    box-shadow: 0 2px 12px #00000014;
}
.mainmenu.fixed {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    box-shadow: 3px 3px 13px #777;
	z-index:10;
}
.mainmenu .btn-primary {margin-left: 10px;}
.menubar p{
	margin:0;
}
.menubar form .wpcf7-form-control{
	border:unset;
	padding:0;
}    



/* SLIDER SECTION CSS */
.mainslider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.carousel-content {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}
.carousel-content ul {
    column-gap: 40px;
}
.carousel-content ul li {
    color: var(--white);
    font-weight: 300;
    font-size: 17px;
    position: relative;
    font-family: "DM Sans", serif;
}
.carousel-content li:before {
    position: absolute;
    top: 8px;
    left: -15px;
    content: '';
    height: 10px;
    width: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 30px;
    border: 1px solid var(--white);
}
.mainslider #carouselExampleFade img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.mainslider .carousel-caption small {
    font-size: 14px;
    padding: 4px 17px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    background: #f0f0f026;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 2px;
}
.mainslider .btn-primary {
    opacity: 0;
    animation: its .5s ease-in-out 1.3s forwards;
}
.mainslider .carousel-caption h2 {
    font-size: 50px;
    margin-bottom: 18px;
    font-weight: 700;
    display: block;
    line-height: 55px;
    letter-spacing: 1px;
    text-transform: capitalize;
    opacity:0;
    color: var(--white) !important;
    animation: its .5s ease-in-out .3s forwards;
}
@keyframes its {
0% {
    transform: translateX(-150px);
}
100% {
    opacity: 1;
    transform: translateX(0px);
}
}

.mainslider .carousel-caption h2 span {
    font-size: 45px;
    font-weight: 700;
    display: inline;
}
.mainslider .carousel-caption p {
    font-size: 16px;
    line-height: 29px;
    opacity: 0;
    animation: its .5s ease-in-out .8s forwards;
    width: 90%;
    margin: 0 auto 25px;
}
.carousel-item:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: linear-gradient(90deg, #010f1c00, #010f1cc2, #010f1c00);
}
.large-header {
    position: relative;
    width: 100%;
    background: #333;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
#large-header {
    position: absolute;
    top: 50%;
    z-index: 11;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
}
/* about us section  */
.about{
  padding:50px 0;
}
.about img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    border-radius:6px;
}
.aboutimg {
    overflow: hidden;
    position: relative;
    border-radius:50%; 
}
.aboutimg:after {
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: 25px solid #fff;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    border-radius: inherit;
}
.about .leftheading span {
    color: var(--primary);
}
.mission-item {
    background: var(--white);
    padding: 20px 16px;
    border-radius: 8px;
    clip-path: polygon(9% 0, 93% 0, 100% 9%, 100% 94%, 92% 100%, 8% 100%, 0 92%, 0 9%);
    text-align: center;
    height: 100%;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
}
.mission-item figure {
    background: #eb741f1f;
    height: 85px;
    width: 85px;
    margin: 0 auto 15px;
    border-radius: 8px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.mission-item img {
    width: 55px;
    height: auto;
}
.mission-info h3 {
    color: var(--black);
}












/* benefits SECTION CSS */
.benefits {
    background: url(../images/counter-bgs.jpeg);
    padding: 60px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    background-attachment: fixed;
}
.benefits:before {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.about-benefits {
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    border: 1px solid #eb741f2b;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
}
.about-benefits figure {
    height: 105px;
    width: 105px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 auto 15px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.benefits-info h3 {
    font-size: 22px;
    margin: 0;
    color: var(--black);
}
.benefits-info h4 {
    font-size: 27px;
    color: var(--primary);
    font-weight: 700;
}
.benefits-info p {
    color: var(--white);
    width: 85%;
}
.about-benefits figure img {
    width: 50px;
}
.benefits .col-lg-3 {
    height: 100%;
    border-right: 1px solid #cccccc5e;
    text-align: center;
}

.benefits .col-lg-3:last-child{
    border-right: none;
}

/* COUNTER SECTION CSS */

.counter {
    background: linear-gradient(90deg, #2b478ab8, #813500bd, #2b478aa3), url(../images/counter.jpg);
    padding: 40px 0 60px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.counter ul {
    column-gap: 15px;
}
.counter li {
    width: 25%;
    text-align: center;
    background: #ffffff1f;
    padding: 10px;
    border-radius: 15px 0 15px 15px;
    border: 1px solid #ffffff30;
    box-shadow: inset 0 0 15px #3297a8a8;
}
.counterlist {
    background: var(--white);
    border-radius: 15px 0 15px 15px;
    padding: 10px 0;
    transition: .5s;
}
.counterlist:hover {
    transform: scale(.9);
}
.counterlist img {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: #ebebf1;
    padding: 15px;
    width: 100px;
}
.counterlist h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 8px 0 3px;
    color: var(--primary);
}
.counterlist p {
    font-weight: 400;
    color: #000;
    font-size: 18px;
    margin: 0;
}



/* HOMECONTACT SECTION CSS */

.homecontact {
    padding: 70px 0 60px;
    background: linear-gradient(45deg, #040f2ab5, #040f2ab5), url(../images/contact-bg.jpg) no-repeat center center / cover;
    overflow: hidden;
    background-attachment: fixed;
}
.homecontact-form .leftheading {
    color: var(--white);
    font-size: 30px;
}
.homecontact .homecontact-form {
    padding: 30px;
    background: #ffffff12;
    border-radius: 4px;
    backdrop-filter: blur(3px);
    text-align: center;
}
.homecontact .homecontact-form p {
    margin-bottom: 10px !important;
}
.google-map iframe {
    height: 465px;
    border-radius: 4px;
    width: 100%;
    margin-top: 50px;
}
span.wpcf7-spinner {
    position: absolute;
    margin: 0;
}
.hmcntctdtlslist {
    background: var(--white);
    padding: 21px 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.hmcntctdtlslist:first-child {
    padding: 6px 28px 10px;
}
.hmcntctdtlslist p {
    margin: 0 !important;
    font-weight: 500 !important;
    margin-left: 20px !important;
    font-size: 14px !important;
    line-height: 24px !important;
}

.hmcntctdtlslist p strong {
    display: block;
    font-size: 17px;
    line-height: 38px;
    color: var(--dark);
}

/* contact us page  */
.contactus_details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    background: #ae7d9d1f;
    border-right: 3px solid var(--primary);
    column-gap: 20px;
    padding: 16px;
    border-radius: 10px;
}
.contactus_details .fas {
    height: 50px;
    width: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    font-size: 17px;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
}
.contactus_details h3 {
    color: var(--black);
    font-weight: 400;
    margin-bottom: 12px;
}
form.wpcf7-form.init {
    background: #8b030408;
    padding: 12px;
    border-radius: 10px;
}

.contactus textarea {
    height: 105px;
    margin-bottom: 5px;
}
.contactus p {
    margin: 0 0 4px 0;
}









/* OPTION SECTION CSS */

.whychoose {
    background: linear-gradient(45deg, #000000cf, #000000cf), url(../images/whychoose.jpg);
    padding: 50px 0 60px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.whychooseus.whychoose {
    background: #111;
}
.whychooseus.whychoose .row {
    row-gap: 25px;
}
.whychoose-item {
    background: #0000009c;
    padding: 20px;
    border-radius: 15px;
    transition: .5s;
    position: relative;
    height: 390px !important;
}
.whychoose-item:after {
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	transform: scaleX(0)
}
.whychoose-item:hover:after {
	transform: scaleX(1)
}
.whychoose-item:before {
	border-right: 1px solid var(--white);
	border-left: 1px solid var(--white);
	transform: scaleY(0)
}
.whychoose-item:hover:before {
	transform: scaleY(1)
}
.whychoose-item:before,
.whychoose-item:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
	border-radius:15px;
}
.whychoose-item h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}
.whychoose-item figure {
    background: var(--white);
    height: 105px;
    width: 105px;
    margin: 0 auto 15px;
    border-radius: 100px;
}
.whychoose-item img {
    width: 65px !important;
}


/* SERVICES SECTION CSS */

.service {
    padding: 45px 0 60px;
}
.service .btn-primary {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}
.service .row {
    row-gap: 22px;
}
.service-item h3 {
    margin: 15px 0 5px;
}
.service-item img {
    height: 350px;
    object-fit: cover;
    transition: 1s;
}
.service-item figure {
	position:relative;
    overflow: hidden;
    border-radius: 10px;
}
.service-item figure:after, .service-item figure:before {
    background: #ffffff80 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}
.service-item figure:hover:after {
    bottom: 50%;
    opacity: 1;
    top: 50%;
}
.service-item figure:hover:before {
    left: 50%;
    opacity: 1;
    right: 50%;
}
.service-item figure:hover img{
  transform:scale(1.1);
  transition: 1s;
}
.service-info {
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #000000e0, #010f1cc2, #010f1c03);
    padding: 20px;
    width: 100%;
}
.service-info a {
    color: var(--white);
    font-weight: 300;
    letter-spacing: .5px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.service-info p {
    margin-bottom: 5px;
}


/* Reviews  */

.reviews {
    margin-bottom: 35px;
    margin-top:60px;
}
.reviews-info {
    background: var(--white);
    padding: 75px 70px 25px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    height: 300px;
}
.reviews-info:after {
    content: "";
    position: absolute;
    bottom: -85px;
    left: -15px;
    width: 206px;
    height: 200px;
    background-image: url(../images/review-flowers-1.png);
    background-repeat: no-repeat;
    animation: zoom-two 5s linear infinite;
    animation-delay: 3s;
}

.reviews-info:before {
    content: "";
    position: absolute;
    top: -25px;
    right: -90px;
    width: 206px;
    height: 200px;
    background-image: url(../images/review-flowers-2.png);
    background-repeat: no-repeat;
    animation: zoom-two 5s linear infinite;
}
.reviews-info p {
    margin: 15px 0;
}
.reviews-info span.starreviews i {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 5px;
}
.reviews-info figure img {
    width: 80px;
    border-radius: 50px;
}
.reviews-info figure {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-40px);
    box-shadow: 0 21px 10px rgba(4,4,4,.05);
    border-radius: 50%;
    outline: 1px solid #c1c1c1;
    overflow: hidden;
    outline-offset: 10px;
    margin-bottom: 30px;
    z-index: 1;
}
.slick-track {
    margin-top: 50px;
    margin-bottom: 50px;
}
.reviews-info h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 25px;
}


/* HOMEABOUT SECTION CSS */
.aboutus {
    padding: 60px 0;
}

.aboutus-content {
    padding-left: 15px;
}
.aboutus-content p:last-child {
    margin: 0;
}
.aboutus .leftheading span {
    color: var(--primary);
}
figure.aboutus-img {
    position: relative;
}
.secondary-container.about .aboutus figure.aboutus-img img {
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
}
.missionvi {
    background: #eb741f0d;
    padding: 45px 0 50px;
}
.aboutus-img:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    border: 25px solid #fff;
    height: 450px;
    width: 450px;
    border-radius: 50%;
    transform: translate(-50%,-50%);
}
.aboutuspage-content .btn-primary {
    padding: 5px 10px 5px 5px;
    font-weight: 300;
}
.aboutuspage-content .btn-primary i {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-size: 18px;
    background: #c0b40042;
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin-right: 7px;
}
.about .subheadings {
    letter-spacing: 1px;
    background: #009f0729;
    color: var(--black);
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    margin: 15px 0;
}
/* partners section  */
.partners {
    background: #f9f9f9;
    padding: 35px 0 0px;
}
.partners img {
    width: 100% !Important;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 7%);
    border-radius: 6px;
    border: 1px solid #eb741f42;
    overflow: hidden;
}
.partnersldr.slick-initialized.slick-slider {
    margin-top: -20px;
}
/* BLOG SECTION CSS */

.homeblog {
    padding: 40px 0 60px;
}
.zoomeffect {
    overflow: hidden;
}
.homebloglist img {
    width: 100% !important;
    height: 300px;
    object-fit: cover;
    transition: 1s;
}
.homebloglist:hover img {
    transform: scale(1.1);
}
.date {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white);
    background: var(--primary);
    font-size: 14px;
    padding: 5px 15px;
    letter-spacing: .8px;
    border-radius: 30px;
}
.homeblogbox h3 a {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    display: block;
    color: var(--black);
    margin-bottom:13px;
}
.homeblogbox .btn-primary {
    padding: 10px 28px !important;
}
.homeblogbox {
    margin: 14px;
}
.homebloglist {
    background: #8b03040d;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
/* OUR GALLERY SECTION CSS */
.gallerys .work {
    background: unset;
}
.work {
    padding: 45px 0 50px;
    background: #eb741f12;
}
.work .tab-pane .row {
    row-gap: 15px;
}
.work .nav-pills {
    margin-bottom: 40px;
}
.work .tab-pane .row .col-lg-3{
 padding:5px;
}
.ourgallery {
    padding: 60px 0;
}
.gallerylightbox {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 15px;
}
.gallerylightbox a {
    width: 100%;
    overflow: hidden;
	border-radius:6px;
}
.gallerylightbox a img {
    height: 100%;
    transform: scale(1, 1);
    transition: all 300ms ease;
}

.gallerylightbox a img:hover {
    transform: scale(1.1, 1.1);
}
.gallerylightbox .gallerylightboxlist {
    height: 200px;
    background-size: cover;
    position:relative;
    border-radius: 6px !important;
}
.gallerylightbox .gallerylightboxlist:after {
    background-color: #000000b0;
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
    transform: rotate3d(1,-1,0,100deg);
    opacity: 0;
}
.gallerylightbox .gallerylightboxlist:hover:after {
    transform: rotate3d(0,0,0,0deg);
    opacity: .6;
}

.gallery ul#pills-tab {
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    column-gap: 15px;
}
.gallery .nav-link {
    border-radius: 3px;
    border: 2px solid var(--primary);
    padding: 8px 30px;
    color: var(--primary);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
}
/* Footer */

footer {
    background: url(../images/footer-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
footer:before {
    background: linear-gradient(90deg, #000000f2, #000000d9);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.footerabout img {
    width: 190px;
    display: block;
}
.footerabout {
    height: auto;
    background: #8b030426;
    z-index: 1;
    border-radius: 0 0 50px 50px;
    padding: 20px 16px;
}
.footerabout p {
    margin-top: 25px !important;
    font-size: 15px;
}
.footerabout a {
    font-style: italic;
    margin-top: 15px !important;
    display: block;
    text-decoration: underline;
    font-weight: 400;
}
footer .col-lg-3 {
    padding: 45px 20px 30px;
    position: relative;
}
footer .col-lg-2{
  padding: 45px 20px 30px;
    position: relative;
}
span.wpcf7-spinner {
    position: absolute;
    left: 0;
}
.footerabout p {
    margin: 10px 0 0;
}
footer .col-lg-3:last-child {
    border: none;
}
footer ul.menu li {
    position: relative;
    padding-left: 20px;
}
footer ul.menu li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 10px;
}
footer ul li.menu-item a {
    margin-bottom: 10px;
    display: block;
    font-weight: 300;
    letter-spacing: .2px;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
footer h4 {
    margin-bottom: 28px;
    letter-spacing: .5px;
    font-size: 20px;
    color: var(--white);
    padding-bottom: 15px;
    background: url(../images/under-title.png) no-repeat bottom left;
}
footer a, footer p, .footerabout a {
    color: var(--white);
    font-size: 15px;
}
footer a:hover {
    color: var(--white) !important;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
}
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 {
    position: relative;
    padding-left: 20px;
    color: var(--white);
    margin-bottom: 15px;
}
footer ul.footer-details li i {
    color: var(--white);
    padding-right: 5px;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 7px;
}
footer form {
    position: relative;
}
footer form input {
    border-color: #ffffff26 !important;
    padding: 7px 15px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
.copyright {
    padding: 10px 0;
    border-top: 1px solid #ffffff14;
}
.copyright .col-sm-4 {
    justify-content: flex-end;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.bottom-link li a {
    margin: 0 !important;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
    text-align: center;
}
.copyright p a {
    text-decoration: underline;
}
.copyright ul {
    display: flex;
    justify-content: end;
}
footer .menu li {
    margin-bottom: 6px;
}
ul.smoicons li {
    margin-bottom: 12px !important;
}
.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 {
    top: 0;
    right: 50px;
    background: #ffffff1f;
    padding: 7px 15px;
    border-radius: 0 0 6px 6px;
    color: #fff;
    font-weight: 300;
}

#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 10px;
    border-radius: 3px;
    z-index: 99999999;
    padding: 0;
    border: 1px solid var(--white);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 44px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 11px;
    box-shadow: 3px 11px 12px #00000045;
    color: var(--white);
}
#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: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

#whatsappbtn img {
    width: 30px;
    margin-top: 10px;
}
.book-demo {
    top: -37px;
    left: 50%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 5px 20px;
    font-size: 14px;
    transform: translate(-50%);
    border-radius: 10px 10px 0 0;
    color: var(--white);
    border-top: 2px solid var(--white);
}
#menu-bottom-link li:before {
    display: none;
}
/* BREADCRUMB SECTION CSS */

.breadcrumb img {
    height: 200px;
    object-fit: cover;
    object-position: center;
    width: 100% !important;
    filter: brightness(0.7);
}
.breadcrumb-info {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.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: capitalize;
    line-height: normal;
    font-family: "Syne", sans-serif !important;
}

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