.card-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  font-family: 'Poppins', sans-serif;
}
.card-container .card .icon svg{
        height: 74px;
    color: #df1e24;
}
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Icon styling */
.card i {
  font-size: 3rem;
  color: #f97316;
  margin-bottom: 20px;
  display: inline-block;
  background: #fff7ed;
  padding: 20px;
  border-radius: 50%;
}

/* Heading */
.card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

/* Text */
.card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* Hover effect */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.card:hover i {
  background: #f97316;
  color: #ffffff;
  transition: 0.3s ease;
}
.whychooseus {
  background: linear-gradient(to bottom, #fff7ed, #ffffff);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.heading {
  text-align: center;
  margin-bottom: 70px;
}

.heading h2 {
  font-size: 2.6rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.heading p {
  max-width: 720px;
  margin: auto;
  color: #4b5563;
  font-size: 1.05rem;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #1f2937;
}

.feature-box p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Icon */
.icon {
  font-size: 1.8rem;
  background: #fff7ed;
  color: #f97316;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Slider */
.image-slider {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.image-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slide 12s infinite;
  opacity: 0;
}

.image-slider img:nth-child(1) { animation-delay: 0s; }
.image-slider img:nth-child(2) { animation-delay: 4s; }
.image-slider img:nth-child(3) { animation-delay: 8s; }

@keyframes slide {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .image-slider {
    height: 320px;
  }
}



.about-section {
  max-width: 900px;
  margin: 0px auto 50px;
  padding: 37px 50px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background element */
.about-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: #ffedd5;
  border-radius: 50%;
  z-index: 0;
}

.about-section h2 {
  font-size: 1.5rem;
  color: #1f2933;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-section p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.about-section:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}










:root {
	--bodyfont:'Poppins', sans-serif;
	--headfont: 'Titillium Web', sans-serif;
    --white: #fff;
    --background-white: #fff;
	--color-black: #222;
	--background-bg: #efefe3;
	--maincolor:#e11e24;
	--darkcolor:#af2220;
	--secondcolor:#ffed00;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}
.mission-section {
  padding: 80px 0;
  background: #f9fafc;
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mission-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.mission-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.mission-image-box {
  position: relative;
  text-align: center;
}

.mission-image-box img {
  max-width: 100%;
  border-radius: 16px;
}

.counter-box {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.counter {
  text-align: center;
}

.counter h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 5px;
}

.counter span {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 991px) {
  .counter-box {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

#testimonials-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f1f0, #ffffff);
}

#testimonials-sec .sec-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
  position: relative;
}

#testimonials-sec .sec-title h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

#testimonials-sec-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-inner {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  opacity: 0;
  transition: 0.4s;
}

.testimonial-inner:hover::before {
  opacity: 0.08;
}

.testimonial-inner:hover {
  transform: translateY(-10px);
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffb347;
}

.testimonial-holder {
  margin-left: 15px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.item-star i {
  color: #ffb347;
  font-size: 14px;
}

.testimonial-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 15px;
  position: relative;
}

.arrow-quote::before {
  content: "❝";
  font-size: 50px;
  color: #ffb347;
  position: absolute;
  top: -10px;
  right: 20px;
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
  #testimonials-sec {
    padding: 60px 15px;
  }
}

.about-section {
  text-align: center;
  /* padding: 50px 20px; */
  background-color: #ffffff;
}

.about-section h2 {
  color: #b22222;
  margin-bottom: 15px;
}

.about-section p {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}
/* Base (Desktop Default) */
.card-container {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  width: 30%;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: #b22222;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 20px;
  text-align: left;
}

.card p {
  color: #666;
  line-height: 1.5;
  text-align: left;
}

/* ===================== */
/* Tablet (768px – 991px) */
/* ===================== */
@media (max-width: 991px) {
  .card {
    width: 45%; /* 2 cards per row */
  }
}

/* ===================== */
/* Mobile (max-width: 767px) */
/* ===================== */
@media (max-width: 767px) {
  .card-container {
    padding: 30px 15px;
    gap: 15px;
  }

  .card {
    width: 100%; /* 1 card per row */
    padding: 20px;
  }

  .card h3 {
    font-size: 18px;
    text-align: left;
  }

  .card p {
    font-size: 14px;
    text-align: left;
  }
}
/* FOOTER BASE */
.footer-top {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 70px 0 40px;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

/* LOGO */
.footer-logo img {
    max-width: 180px;
}

/* ABOUT TEXT */
.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
    color: #ccc;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 3px;
    /* background: #ffb400; */
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* LINKS */
.text-widget ul,
.address-widget ul,
.social-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-widget ul li {
    margin-bottom: 10px;
}

.text-widget ul li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-widget ul li a:hover {
    color: #ffb400;
    padding-left: 6px;
}

/* SOCIAL ICONS */
.social-icon {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon li a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 16px;
}

.social-icon li a:hover {
    background: #ffb400;
    color: #000;
    transform: translateY(-4px);
}

/* ADDRESS */
.add-number li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
}

.add-number li i {
    color: #ffb400;
    font-size: 16px;
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .footer-top {
        text-align: center;
    }

    .footer-title::after {
        /* left: 50%; */
        /* transform: translateX(-50%); */
    }

    .social-icon {
        justify-content: center;
    }

    .add-number li {
        justify-content: left;
        display: flex;
    }
}

.whychooseus {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff8f2, #ffffff);
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.heading p {
  max-width: 800px;
  margin: auto;
  color: #555;
  font-size: 13px;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d11a23, #d98002);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box h4,
.feature-box p {
  position: relative;
  z-index: 1;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

.feature-box:hover h4,
.feature-box:hover p {
  color: #fff !important;
}

.image-slider {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: slider 12s infinite;
  opacity: 0;
}

.image-slider img:nth-child(1) { animation-delay: 0s; }
.image-slider img:nth-child(2) { animation-delay: 4s; }
.image-slider img:nth-child(3) { animation-delay: 8s; }

@keyframes slider {
  0% { opacity: 0; transform: scale(0.95); }
  10% { opacity: 1; transform: scale(1); }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .image-slider {
    height: 280px;
  }
}

.owl-theme .owl-controls {
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 80px;
    margin-left: -40px;
}
body {
    margin: 0;
	padding: 0; 
	font-family: var(--bodyfont);
}
a {
	outline: 0;
	text-decoration: none ;
	color: inherit;
	transition: all all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  box-shadow:none;

}
figure {
	margin: 0;
	padding: 0;
}
dl,
ol,
ul {
	list-style: outside none none;
	padding-left: 0px;
	margin-bottom: 0px;
}
ul li {
	padding: 0;
	margin: 0;
	list-style: none;
}
a img {
	border: none;
	max-width: 100%;
}
img {
	max-width: 100%;
	vertical-align: middle;
	border: none;
}
table,
td,
th {
	border: 1px solid #222;
	border-collapse: collapse;
}
table tbody tr td {
	padding: 8px;
	color: #222;
	font-size: 16px;
}
th {
	font-weight: 700;
}
p {
	padding: 0;
	margin: 6px 0px;
	font-size: 15px;
	color: #838383 !important;
}
h1,h2,h3,h4,h5,h6 {
	margin: 4px 0px;
	padding: 4px 0px;
	color: #222;
}
button:focus {
	outline: 0;
	box-shadow: none;
	border: 0;
}
input, textarea, select, button {
	border: 1px solid #222;
	outline:none;
	box-shadow: none;
}
textarea {
	resize: none;
}
.btn-primary.focus,
.btn-primary:focus {
	box-shadow: none !important;
}
.btn-danger.focus,
.btn-danger:focus {
	box-shadow: none !important;
}
.btn-secondary.focus,
.btn-secondary:focus {
	box-shadow: none !important;
}
.btn-success.focus,
.btn-success:focus {
	box-shadow: none !important;
}
.btn-info.focus,
.btn-info:focus {
	box-shadow: none !important;
}
.btn-warning.focus,
.btn-warning:focus {
	box-shadow: none !important;
}
.btn-dark.focus,
.btn-dark:focus {
	box-shadow: none !important;
}
.btn-light.focus,
.btn-light:focus {
	box-shadow: none;
}

.form-control:focus {
	box-shadow: none;
}
/*--- Headding Section CSS  -----*/
.mb-50 {
    margin-bottom: 25px;
}
.sec-title h2 {
    color: #282828;
    position: relative;
    padding-bottom: 26px;
    font-size: 30px;
    line-height: 46px;
    font-weight: 700;
	font-family: var(--headfont);
	
}
.sec-title h2:after {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 5px;
    background: var(--maincolor);
    z-index: 9;
    margin-left: 0;
    left: 0;
    bottom: 15px;
    border-radius: 10px;
}
.sec-title h2.line-middle:after {
    left: 50%;
    transform: translateX(-50%);
}
/*--- Header Section CSS --*/
.pd-tb-50{
	padding:50px 0;
	/* background: #e9e9e9; */
} 
.pd-tb-40{
	padding:40px 0;
}
.mrb-20{
	margin-bottom:20px;
}
.navigation-bar {
	width:100%;
	padding: 0 0px;
}
.header-address{
	background:var(--maincolor);
	z-index: 9999;
}
.address-left{
    display: flex;
    padding: 10px 0;
}

.address-left ul{}
.address-left ul li{
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    padding-right: 10px;
    font-size: 15px;
    border-right: 1px solid #dbddd1;
    padding-right: 25px;
    padding-left: 20px;
    /* color: #000; */
    font-weight: 500;
    font-size: 15px;
}
.address-left ul li:last-child{
	  border-right: none;
}
.address-left ul li i{
    margin-right: 2px;
    padding-right: 6px;
    font-size: 16px;
}
.social-right{
    display: flex;
    padding: 10px 0;
    justify-content: flex-end;
}
.social-right ul li{
    display: inline-block;
    color: #fff;
    margin-right: 5px;
    padding-right: 5px;
    font-size: 15px;
}
.social-right ul li a{
    margin-right: 2px;
    padding-right: 6px;
    font-size: 16px;
    color: #fff;
}
.social-right ul li a:hover{
	color:#fff;
}
/*---- Navbar Section CSS  ----*/ 
.navbar-section{
    position: absolute;
    top: 44px;
    background: #fff;
    z-index: 99999;
}
.navbar-section .navbar-brand img{
    height: 46px;
}
.manubar li{
    padding: 12px 10px;
}
.manubar li a{
    font-size: 16px;
    font-weight: 700;
    font-family: var(--headfont);
    position: relative;
}
.pdfdd{
        text-transform: uppercase;
    background: red;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
}
.navbar-section .conatct-btn a{
	 color: #fff;
	 font-size: 16px;
	 padding: 10px 23px;
	 display: block;
	 font-weight: 700;
	 text-transform: uppercase;
	 position: relative;
	 z-index: 1;
	 background: #009961;
	 border: none;
	 font-family: var(--headfont);
	 border-radius: 5px;
}
.inner-submenu{
    transition: all 0.2s ease-out;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 230px;
    margin-top: 0px;
    display:none;
}
.inner-submenu ul{
    position: relative;
   transition: all 0.2s ease;
}
.inner-submenu ul li{
    width: 100%;
    transition: all 0.2s ease;
    padding: 0;
}
.inner-submenu ul li a{
	color: #030202;
	display: block;
	padding: 11px 20px;
	text-transform: capitalize;
	font-size: 13px;
	transition: all 0.2s ease;
	background: var(--background-bg);
}
.inner-submenu ul li a:hover{
	color:#fff;
	background:var(--darkcolor);
}
.manubar li a:before, .inner-submenu ul li a:after{
	display:none;
	}
.manubar li:hover .inner-submenu.show{
  display: block;
}
#sliders{
	margin-top: 65px;
}
.fixedheader {
    position: fixed;
    top: 0px;
    z-index: 999999999;
    left: 0px;
    width: 100%;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,.3);
    animation-name: fixedHeader;
    animation-duration: .6s;
    padding: 0 15px;
}  
/* Sticky Header */
@keyframes fixedHeader {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--Slider Section CSS ----*/
.bg-set-image-1,
.bg-set-image-2,
.bg-set-image-3 {
    height: 550px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
}
#sliders .carousel-caption {
    position: absolute;
    right: 10%;
    bottom: 60px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}
.slide_description_wrapper {
    padding: 30px 0;
}
.slide_description {}

.with_corner_border {
    position: relative;
    z-index: 1;
}
.intro_section .thin {
    font-size: 24px;
    color: #ffffff;
}
.intro_section .highlight {
    font-size: 48px;
    margin-bottom: 0.6em;
    margin-top: 0.27em;
    color: #fff;
    font-family: var(--headfont);
    font-weight: 900;
}
.intro_section p {
    margin-bottom: 0;
    color: #fff;
}
.slide_description .slider_btns {
    padding: 12px 25px;
    margin-bottom: 4px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    position: relative;
    transition: all 0.4s linear 0s;
    background: #009961;
}
/*--- Welcome Section CSS --*/
.wel-box-body .sub-text{
    color: var(--maincolor);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: none;
    line-height: 26px;
}
.wel-box-body h1{
    color: #222;
    font-size: 37px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 800;
    font-family: var(--headfont);
}
.wel-box-body p{
    font-size: 15px;
    line-height: 28px;
}
.wel-box-body .director{
    display: inline-block;
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -.1px;
}
.wel-box-body .designation{
    display: inline-block;
    color: #878787;
    font-family: "Poppins",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 3px;
    padding-left: 8px;
    font-style: normal;
    text-transform: uppercase;
}
/*----------------------------------------
    25. Order Section CSS
----------------------------------------*/

#order-steps {
    padding-top: 40px;
    padding-bottom: 40px;
	
}
.address-1 i img{
    font-size: 50px;
    color: #212529;
}
.address-text-heading h4 {
    margin-bottom: 4px;
    text-transform: uppercase;
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: bold;
    font-family: var(--headfont);
}
.color-bg{
	background: var(--background-bg);
	background: #222;
}
.border-lr{
	border-right: 2px dotted #009961;
    border-left: 2px dotted #009961;
}
 /* fomm */

.too-national {
    position: relative;
}
.too-national .img-bg {
    float: right;
    height: 620px;
}
.too-national .too-national-content {
    position: absolute;
    width: 420px;
    top: 90px;
    right: 130px;
}
.too-national .too-national-content h1 {
    font-size: 66px;
    color: #ffffff;
    margin-right: 63px;
    line-height: 1;
    letter-spacing: -3px;
    font-family: var(--headfont);
    font-weight: 900;
}
.too-national .too-national-content p {
    font-family: 'Lato',Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #eeeeee;
    margin-right: 60px;
}
.too-national .too-national-content .buy-now {
    margin-top: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 30px;
    border: none;
    border-radius: 1px;
    position: relative;
    z-index: 2;
    line-height: 20px;
    -o-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    background-color:#fff;
    color:#222;
}
.too-request {
    padding: 91px 70px;
}
.module-title {
    text-align: center;
    background: transparent;
    color: #222222;
    font-size: 35px;
    margin-top: -8px;
    margin-bottom: 40px;
    text-transform: initial;
    letter-spacing: -1.6px;
    padding: 0;
    font-weight: 700;
    line-height: 1;
    position: relative;
    font-family: var(--headfont);
}
.too-contact-home .sp_quickcontact .too-form {
    padding-left: 0;
    padding-right: 40px;
}
.too-contact-home .sp_quickcontact .too-input {
    width: 100% !important;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e9e9e9;
    color: #666666;
    height: 50px;
    padding: 1.12em 1.65em;
    margin-bottom: 35px;
    box-shadow: none !important;
    background-color: transparent;
    font-size: 14px;
}
.too-contact-home .sp_quickcontact .button {
    margin-top: 25px;
	background-color: #222222;
    color: #ffffff !important;
	font-family: 'Lato',Arial,sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 30px;
    border: none;
    border-radius: 1px;
    position: relative;
    z-index: 2;
    line-height: 20px;
    -webkit-backface-visibility: hidden;
    -o-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
 /*----------------------------------------
    25. choose Section CSS
----------------------------------------*/ 
.choose-icons img{
	text-align: center;
	}
.choose-icons {
	text-align: center;
	}
.choose-icons i{
	line-height: 60px;
	font-size: 24px;
	}
.choose-tiitle-icons
	{
	float: left;
	width: 100%;
	}
.choose-tiitle-icons .choose-subtiitle{
	margin-top: 13px;
	font-size: 23px;
	text-transform: capitalize;
	line-height: 32px;
	margin-bottom: 8px;
	font-weight: 900;
	}
.choose-tiitle-icons .choose-para-tittle{
	font-size: 15px;
	line-height: 26px;
	text-align: center;
	letter-spacing: 0.2px;
}

/* Our Service CSS =*/
.wrd-button.wrd-service-page {
    margin-top: 40px;
}
.service-section.service-page {
    padding: 110px 0 105px;
}
.service-section {
    background-color: #f4f5ef;
    padding: 110px 0 85px;
    position: relative;
}
.wrd-service-item {
    position: relative;
    margin-bottom: 30px;
}
.wrd-service-item img{
	width:100%;
}
.wrd-service-box-content-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, .8);
    width: 100%;
    height: 100%;
    text-align: center;
    -ms-transform: scale(.85);
    -webkit-transform: scale(.85);
    transform: scale(.85);
    transition: .3s;
    display: table;
}
.wrd-service-box-content {
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}
.wrd-service-icon {
    height: 70px;
    width: 70px;
    text-align: center;
    font-size: 70px;
    line-height: 70px;
    color: #77b922;
    display: inline-block;
    margin-bottom: 30px;
}
.wrd-service-title {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 0;
    transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 800;
    font-family: var(--headfont);
    padding: 0 11px;
}

.wrd-service-details {
    height: 50px;
    width: 50px;
    background: #0f3517;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    display: inline-block;
    margin-top: 30px;
    -ms-transform: translateY(250%);
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
    opacity: 0;
    visibility: hidden;
}
.wrd-service-details:hover {
    color: #ffffff;
}
.wrd-service-icon-title {
    -ms-transform: translateY(40px);
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
	 -webkit-transition: .3s;
    transition: .3s;
}
.wrd-service-item:hover .wrd-service-icon-title {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
	 transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}
.wrd-service-item:hover .wrd-service-icon {
    margin-bottom: 15px;
    color: #ffffff;
}
.wrd-service-item:hover .wrd-service-details {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
	 transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}
.wrd-service-details i{
	 font-size: 22px;
}
.wrd-service-item:hover .wrd-service-box-content-wrapper {
    background-color: rgba(129, 182, 12, .8);
}
.wrd-service-item:hover .wrd-service-title {
    color: #ffffff;
}
 /* Our Latest Plants */
.background-bg-img{
    /* background: url(../images/plants-category.jpg); */
    background-size: cover;
    padding-top: 29px;
    padding-bottom: 27px;
    background: #e9e9e9a6;
}

/* Footer Section CSS */

.rs-footer {
    background: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.rs-footer .footer-top {
  padding: 55px 0 45px;
  /* background: var(--darkcolor); */
}
.rs-footer .footer-top .footer-logo {
  margin: 8px 0 21px;
}
.rs-footer .footer-top .footer-logo img{
    width: 173px;
}
.rs-footer .footer-top .social-icon li {
  display: inline-block;
  margin-right: 7px;
  text-align: center;
}
.rs-footer .footer-top .social-icon li a {
  color: #ffffff;
}
.rs-footer .footer-top .social-icon li a i {
  padding: 0 10px 0 5px;
  font-size: 20px;
}
.rs-footer .footer-top .social-icon li a:hover {
  color: #009961;
}
.rs-footer .footer-top .widget-text .footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
  font-family: var(--headfont);
}
.rs-footer .footer-top .widget-text .footer-title:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 50px;
  left: 0;
  bottom: -5px;
  display: block;
  z-index: 1;
  background: var(--white);
}
.rs-footer .footer-top .widget-text .text-widget ul li {
  position: relative;
  padding: 1px 20px 3px 30px;
  margin: 0 0 10px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
.rs-footer .footer-top .widget-text .text-widget ul li:before {
  font-family: FontAwesome;
  content: "\f058";
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 99;
  font-size: 18px;
  display: block;
  color: #fff;
}
.rs-footer .footer-top .widget-text .text-widget ul li.closed:before {
  content: "\f057";
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-img {
  width: 90px;
  float: left;
  padding-right: 15px;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-img img {
  border-radius: 5px;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-item {
  overflow: hidden;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-item .post-desc a {
  font-size: 14px;
  color: #ffffff;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-item .post-desc a:hover {
  color: #009961;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-item .post-desc .date-post {
  color: #aaa;
  display: block;
  font-size: 14px;
}
.rs-footer .footer-top .widget-text .recent-widget .show-featured .post-item .post-desc .date-post i {
  margin-right: 3px;
  position: relative;
  bottom: 1px;
  color: #009961;
}
.rs-footer .footer-top .widget-text p {
  color: #ffffff;
  font-size: 14px;
}
.rs-footer .footer-top .widget-text .footer-inner {
  margin: 30px 0 0;
  position: relative;
}
.rs-footer .footer-top .widget-text .footer-inner input[type=email] {
  border: none;
  width: 100%;
  font-size: 13px;
  padding: 10px 65px 10px 10px;
  margin: 0;
  border-radius: 7px;
  background: #fff;
  color: #212121;
  border-color: #009961;
}
.rs-footer .footer-top .widget-text .footer-inner input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  background: #009961;
  padding: 0 40px 0 14px;
  border-radius: 0 5px 4px 0;
  border-color: #009961;
  cursor: pointer;
  -webkit-appearance: button;
  border: none;
}
.rs-footer .footer-top .widget-text .footer-inner i {
  position: absolute;
  right: 0;
  transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  padding: 16px 19px;
  pointer-events: none;
  color: #ffffff;
}
.rs-footer .footer-bottom {
  border-top: 1px solid #02281a;
  padding: 20px 0;
  background: #02281a;
}
.rs-footer .footer-bottom .copyright {
  text-align: center;
}
.rs-footer .footer-bottom .copyright p {
  margin: 0;
  color: #fff;
}
.rs-footer .footer-bottom .copyright p a {
  color: #009961;
}
.rs-footer .footer-bottom .copyright p a:hover {
  color: #ffffff;
}
.rs-defult-partner .owl-carousel .owl-item img {
  width: auto;
}
.rs-defult-partner .owl-nav {
  display: none !important;
}
.rs-defult-partner .owl-nav.style2 .partner-item a img {
  color: #ffffff;
}
.pr-md-50 {
  padding-right: 50px;
}
.address-widget .add-number {
    padding-left: 0;
}
.address-widget .add-number li span{
    display: block;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 0px 4px 0px;
    text-transform: capitalize;
    color: #ffffff;
    width: calc(100% - 30px);
    float: left;
}
.add-number li i {
    width: 30px;
    margin-top: 9px;
    float: left;
    color: #ffffff;
    font-size: 17px;
}
.footer-about{
	margin-bottom:20px;
}
.footer-about p{
	color:#fff;
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
}
.side-public{
    text-align: center;
    padding: 20px 0px 20px;
    font-size: 15px;
}
.side-public a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffff;
}
.side-public span{
	text-align: center;
	margin: auto;
	justify-content: center;
	}
.side-public a img{
    height: 25px;
    padding-left: 7px;
}
.questions{
    float: left;
    width: 100%;
    padding: 20px 0px 0px;
}
.questions ul{
    text-align: right;
}
.questions ul li{
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    color: #808080;
}
.questions ul li a{
	color: #808080;
	font-size: 15px;
}
	
 /*-- Plants Category Section CSS -*/ 
.category-plants{
	padding: 6px;
	background: var(--background-white);
	box-shadow: 0 4px 5px rgb(0 0 0 / 30%);
	position: relative;
	}
.category-plants .image{
	    display: block;
    overflow: hidden;
    position: relative;
}
.image-overlay{
	position: absolute;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: rgba(34,34,34,0.7);
	 opacity: 0; 
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .9s;
	-o-transition: all .9s;
	transition: all .9s;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 100%;
	color: #fff;
}
.category-plants .image:hover .image-overlay{
	opacity:1;
}
.image-overlay a {
	 width: 52px;
	 height: 52px;
	 line-height: 52px;
	 text-align: center;
	 -webkit-border-radius: 50%;
	 -ms-border-radius: 50%;
	 border-radius: 50%;
	 background-color: rgba(255,255,255,0.3);
}
.image-overlay a i{
    font-size: 22px;
    color: #fff;
    line-height: 52px;
}
.category-plants .plants-names{
	text-align:
	center;
	padding: 15px 15px 15px 15px;
	-webkit-transition: 0.5s;
	position: relative;
	z-index: 1;
	font-family: var(--headfont);
	font-weight: 900;
	font-size: 20px;
}
.category-plants .plants-names h3{
	margin: 0 0 3px;
	line-height: 10px;
	font-size: 15px;
	font-weight: 900;
}
.category-plants .plants-names h3 a{
	color: var(--maincolor);
	font-weight: bold;
	line-height: 27px;
}
.wrd-about-promo-title-wrapper .wrd-section-title {
    margin-bottom: 35px;
    font-size: 47px;
    line-height: 57px;
}

.wrd-about-promo-wrapper {
    margin-top: 50px;
}

.wrd-about-promo-box {
    background-color: #f4f5ef;
    padding: 20px 20px 15px 20px;
    margin-bottom: 30px;
    border-radius: 9px;
}


.wrd-about-promo-title {
    display: inline-block;
    background: var(--maincolor);
    padding: 6px 30px;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--headfont);
    border-radius: 4px;
}

.mission-and-skills {
    padding-bottom: 30px;
}

.about-us-section {
    padding-bottom: 115px;
}

.wrd-tabs-wrapper.tab-layout-one ul.nav a {
    min-height: 200px;
    width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f6ef;
    flex-direction: column;
    padding: 25px;
}

.wrd-tabs-wrapper.tab-layout-one .nav-tabs {
    border-bottom: 0;
    width: 200px;
    float: left;
}

.wrd-tabs-wrapper.tab-layout-one .nav-tabs li:last-child {
    margin-bottom: 0;
}

.wrd-tabs-wrapper.tab-layout-one .nav-tabs li {
    margin-bottom: 25px;
}

.tab-layout-one .wrd-tab-icon-wrapper {
    font-size: 55px;
    height: 55px;
    line-height: 55px;
    color: #81b60c;
}

.tab-layout-one .wrd-tab-menu-text {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Noto Serif', serif;
    display: block;
    color: #113417;
    text-align: center;
    line-height: 35px;
    margin-top: 20px;
}

.wrd-tabs-wrapper.tab-layout-one ul.nav a.active,
.wrd-tabs-wrapper.tab-layout-one ul.nav a:hover {
    background-color: #fbfbfb;
}

.wrd-tabs-wrapper.tab-layout-one ul.nav a.active .wrd-tab-menu-text,
.wrd-tabs-wrapper.tab-layout-one ul.nav a:hover .wrd-tab-menu-text {
    color: #ffffff;
}

.tab-layout-one .tab-content {
    padding-left: 250px;
}

.tab-layout-one .wrd-tab-content-wrapper .wrd-tab-subtitle {
    text-transform: uppercase;
    font-weight: 700;
    color: #80b511;
    letter-spacing: .5px;
    display: block;
}

.tab-layout-one .wrd-tab-content-wrapper .wrd-tab-title {
    font-size: 50px;
    line-height: 62px;
    margin: 20px 0 35px;
}

.wrd-tab-content-wrapper strong {
    color: #123417;
    display: block;
    margin-top: 25px;
}

.wrd-tab-content-wrapper .wrd-count-number-unit {
    color: #77b922;
    font-family: 'Noto Serif', serif;
    display: flex;
}

.wrd-tab-content-wrapper .wrd-count-number {
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
}

.wrd-tab-content-wrapper .wrd-count-unit {
    font-size: 30px;
    line-height: 1;
}

.wrd-tab-content-wrapper .wrd-count-title {
    font-weight: 700;
    color: #123417;
    display: block;
    margin-top: 25px;
}

.wrd-tab-content-wrapper .wrd-tab-counter-box {
    margin-top: 30px;
}

/* Tab Layout Two */
.about-us-section.about-us-section-two {
    padding: 115px 0 0;
}

.wrd-about-two-top-bg {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 685px;
}

.wrd-about-two-bottom-bg {
    position: absolute;
    bottom: -50%;
    max-width: 180px;
    left: 0;
}

.wrd-tabs-wrapper.wrd-tab-layout-two {
    background-color: #f4f5ef;
    padding: 10px;
}

.wrd-tab-layout-two .nav-tabs {
    border-bottom: 0;
    text-align: center;
    justify-content: center;
}

.wrd-tab-layout-two .nav.nav-tabs li {
    display: inline-block;
}

.wrd-tab-layout-two .nav li a {
    display: inline-flex;
    align-items: center;
    background-color: #ebebe7;
    margin-right: 10px;
    color: #123417;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Noto Serif', serif;
    padding: 15px 23px;
    margin-bottom: 10px;
    justify-content: center;
}

.wrd-tab-layout-two .nav li:last-child a {
    margin-right: 0;
}

.wrd-tab-layout-two .nav li a.active,
.wrd-tab-layout-two .nav li:hover a {
    background-color: #123417;
    color: #ffffff;
}

.wrd-tab-layout-two .wrd-tab-icon-wrapper {
    font-size: 45px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #81b60c;
    margin-right: 15px;
}

.wrd-tab-layout-two .tab-content {
    padding: 25px 30px 45px 30px;
}

.wrd-tab-layout-two .wrd-tab-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.wrd-tab-layout-two .wrd-tab-content-wrapper strong {
    margin-top: 15px;
}

.wrd-tab-layout-two .wrd-tab-button {
    margin-top: 35px;
}

.wrd-image-wrapper img {
    max-width: 120%;
    display: inline-block;
}

/*---- Counter Up With Round Image Css ---*/

.wrd-counter-with-image {
    position: relative;
    border-radius: 50%;
    width: 100%;
    margin-top: 80px;
    display: inline-block;
}
.wrd-counter-with-image .wrd-counter-box {
    position: absolute;
    background-color: #eeeeee;
    border: 5px solid var(--maincolor);
    height: 135px;
    width: 135px;
    border-radius: 50%;
    padding: 30px 0;
    text-align: center;
}
.wrd-counter-with-image .wrd-count-number-unit {
    color: var(--black);
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--headfont);
}
.wrd-counter-with-image .wrd-count-number {
    font-size: 38px;
    line-height: 1;
}
.wrd-counter-with-image .wrd-count-unit {
    font-size: 30px;
    line-height: 1;
}
.wrd-counter-with-image .wrd-count-title {
    font-size: 14px;
    font-weight: 700;
    color: #113517;
    /* font-family: var(--headfont); */
}
.wrd-counter-with-image .wrd-counter-box-1 {
    left: 50%;
    margin-left: -86px;
    bottom: 20px;
}
.wrd-counter-with-image .wrd-counter-box-2 {
    left: 3px;
    top: 35px;
}
.wrd-counter-with-image .wrd-counter-box-3 {
    right: -5px;
    top: 35px;
}
.wrd-about-promo-box p:hover{
	color:#fff;
}
.image-left-right{
	position:relative;
}
.wrd-service-section-image-one {
    max-width: 210px;
    top: 0;
    left: 3%;
    position:absolute;
}
.wrd-service-section-image-two {
    right: 6%;
    top: 240px;
    position: absolute;
}
.mrb-25{
	margin-bottom:25px;
}

  /* Contact us  */
.inner-part{
	background: linear-gradient(rgb(0 0 0 / 73%), rgb(5 4 3 / 63%)), url(../images/coman-banner.png);
	background-size: cover;
	background-position: center top;
	padding: 1px 0;
}
.breadcrumbs-inner-part {
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread {
    padding: 100px 0 58px;
    position: relative;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .title {
    font-size: 37px;
    font-weight: 700;
    line-height: 62px;
    color: #ffffff;
    margin: 0;
    font-family: var(--headfont);
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial {
    display: inline-block;
    background: var(--maincolor);
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    color: #fff;
    min-width: 200px;
    padding: 8px 20px 3px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li {
    display: inline-block;
    margin-right: 15px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li a {
    color: #ffffff;
    position: relative;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
}
.map{
	padding: 60px;
}
.content-heading{
	margin-left: 36px;
	padding-top: 60px;
	padding-right: 70px;
	padding-bottom: 70px;
	padding-left: 70px;
	background-color: #fafafa;
	border-radius: 10px;
}
.heading{
    color: #282828;
    position: relative;
    padding-bottom: 26px;
    font-weight: 800;
    font-size: 23px;
}
.heading::after {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 5px;
    /* background: #009961; */
    z-index: 9;
    margin-left: 0;
    left: 0;
    bottom: 0;
}
.pb-45 {
    padding-bottom: 45px;
	padding-top: 17px;
	font-size:15px;
	color: #646464;
}
.margin-0 {
    margin: 0;
}
.mb-20 {
    margin-bottom: 20px;
}
.form-part::placeholder{
	color:#646464;
}
.form-control{
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.08);
    padding: 10px 18px;
    height: 45px;
    font-family: var(--headfont);
}
.mb-30 {
    margin-bottom: 30px;
}
.type{
	color: #fff;
	text-transform: uppercase;
	padding: 14px 40px;
	width: 100%;
	max-width: 100%;
	border-radius: 5px;
	background: var(--darkcolor);
	border: 2px solid;
	-webkit-appearance: button;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--headfont);
}
.pb-100{
	padding-bottom: 70px;
}
.address-item{
	padding: 40px;
	background-color: #f3f3f3;
	border-radius: 10px;
	text-align: center;
	padding-bottom:65px;
	padding-left:25px;
}
.address-icon{
    background: var(--darkcolor);
    height: 70px;
    width: 70px;
    line-height: 87px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto 15px;
}
.address-icon i::before{
    font-size: 42px;
    color: #ffffff;
    margin-top: 0;
    margin-left: 0;
	line-height: 10px;
}
.address-item .address-icon::before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #009961;
    border-radius: 50%;
    animation: pulse-border 1.5s ease-out infinite;
    opacity: 0;
    visibility: hidden;
}
.address-item:hover .address-icon:before {
  opacity: 1;
  visibility: visible;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.contact-title{
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--darkcolor);
    font-family: var(--headfont);
}
.numbers li a{
	text-decoration:none;
	color: #505050;
}
.numbers{
	list-style:none;
}
.numbers li{
	font-size:15px;
}
.time{
	list-style:none;
	padding-left:0;
}
.address-text ul li{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #505050;
}
.address-text p{
	color: #505050;
}



/* Gallery  Section */
.gallery-sec{
	padding-top:40px;
	padding-bottom:40px;
}
.custom-hover {
  position: relative;
  overflow: hidden;
  box-shadow: 1px 5px 30px 0.5px rgba(216,216,216,.5);
  border: 4px solid var(--darkcolor);
  padding: 11px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
}
.custom-hover img{
	width:100%;
}
.custom-hover:before {
  content: '';
  position: absolute;
  width: 150%;
  height: 100%;
  left: 0%;
  bottom: 0;
  background: var(--darkcolor);
  opacity: 0.7;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform:
  rotate(90deg);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 500ms
  cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.custom-hover:hover:before {
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}


.custom-hover.round {
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.custom-hover.round:before {
  left: 0;
  width: 100%;
  height: 100%;
  -moz-border-radius: 100%;
       border-radius: 100%;
}

.custom-hover.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-hover.type-2:after {
  display: none;
}

.custom-hover.type-2 .custom-hover-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(100px);
     -moz-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.custom-hover.type-2:hover .custom-hover-bottom {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.custom-hover.type-3 i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  font-size: 22px;
  line-height: 66px;
  color: #207a94;
  text-align: center;
  background: #fff;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-top: -33px;
  margin-left: -33px;
  opacity: 0;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  cursor: pointer;
}
.custom-hover.type-3:hover i {
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
   /* Plants */
.project10-box {
    -webkit-perspective: 1700px;
    -moz-perspective: 1700px;
    perspective: 1700px;
    -webkit-perspective-origin: 0 50%;
    -moz-perspective-origin: 0 50%;
    perspective-origin: 0 50%;
}
.project10-box .project10-box-inner {
    position: relative;
    margin-bottom: 30px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.project10-box-inner .project10-img-holder {
    overflow: hidden;
    border-radius: 4px;
}
.project10-box-inner .project10-img-holder img {
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}
.project10-box-inner .project10-img-holder h3 {
    position: absolute;
    bottom: 1px;
    left: 1px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 8px 20px;
    margin-bottom: 0;
    transition: all 0.3s ease-out 0s;
}
.project10-box-inner .project10-img-holder h3 a {
    color: #222222;
}
.project10-box-inner .rtin-proj10-box-info {
    height: 100%;
    width: 60%;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.5s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.5s;
    transition: transform 0.4s, opacity 0.1s 0.5s;
}
.project10-box-inner:hover .rtin-proj10-box-info {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s;
}
.project10-box-inner .rtin-proj10-box-info {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    background: #1fa12e;
    color: #ffffff;
    border-radius: 4px 0 0 4px;
}
.project10-box-inner .rtin-proj10-box-info {
    color: #ffffff;
}
.project10-box-inner .rtin-proj10-box-info h3 {
    font-weight: 600;
    margin-bottom: 12px;
}
.project10-box-inner .rtin-proj10-box-info h3 a {
    color: #ffffff;
}
.project10-box-inner .rtin-proj10-box-info h3 {
    font-weight: 600;
    margin-bottom: 12px;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}
.project10-box-inner .rtin-proj10-box-info a.grid10-btn {
    display: inline-block;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
	transition: all .3s ease 0s;
	text-decoration: none;
}
.content-wrap p{
	color:#fff;
}

#testimonials-sec {
    padding: 80px 0px;
    /* background: #e9e9e9; */
}

#testimonials-sec-grids {
    margin-top: 0;
}

#testimonials-sec .testimonial-inner {
    padding: 35px 35px 28px;
    position: relative;
    background: #fff;
    border: 4px solid var(--maincolor);
    border-radius: 27px  26px 0px 13px;
}

#testimonials-sec .testimonial-inner:before {
    width: 100%;
    bottom: 0;
    content: "";
    display: block;
    background-color: #fff;
    top: 100px;
    position: absolute;
    left: 0;
}

#testimonials-sec .testimonial-meta {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
}

#testimonials-sec .testimonial-image {
    height: 68px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #ff4880;
    overflow: hidden;
    text-align: center;
    max-width: 68px;
    width: 100%;
    margin-right: 20px;
}

#testimonials-sec .testimonial-image img {
    height: auto;
    vertical-align: middle;
}

#testimonials-sec .testimonial-holder {
    position: relative;
    padding-top: 7px;
    padding-right: 45px;
}

#testimonials-sec .testimonial-holder .arrow-quote {
    position: absolute;
    top: 0;
    right: 0;
}

#testimonials-sec .testimonial-holder .arrow-quote svg g {
    fill: #ff4880;
}

#testimonials-sec .testimonial-title {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 4px;
    font-weight: bold;
}

#testimonials-sec .item-star {
    position: relative;
}

#testimonials-sec .item-star.five-star i {
    color: #ffc000;
}

#testimonials-sec .testimonial-desc {
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.67;
    color: #777;
}

#testimonials-sec .testimonial-inner:after {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 85px;
    height: 85px;
    background: url(../images/arrow-right.png);
    content: "";
    display: block;
}
#testimonials-sec .owl-theme .owl-controls {
    text-align: center;
    position: absolute;
    bottom: -44px;
    left: 50%;
    /* transform: translate(-50%); */
}
 
/* infrasturcture-sec */
.infrasturcture-sec{
	padding: 40px 15px;
}
.box-outers{
	    box-shadow: 0 0px 12px rgb(2 13 49 / 20%);
	    margin-bottom: 25px;
	    padding: 15px;
}
.event-item .event-img {
    position: relative;
}
.event-item .event-img img {
    position: relative;
}
.event-img .image-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    color: #ff3115;
    z-index: 11;
}
.event-item .event-img:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}
.event-item:hover .event-img:after {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.event-item .event-item .event-img:hover {
    opacity: 0.8;
}
.event-item:hover .event-img:after {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.event-item .event-img .image-link i{
  font-size: 22px;
  font-weight: 400;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.event-item:hover .event-img .image-link i{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.event-content {
    padding: 15px 20px 20px 0;
}

.event-content .event-title {
    font-size: 22px;
    margin-bottom: 5px;
    margin-top: 1px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1f3345;
    color: #1f3345;
    font-weight: 700;
}
.event-content .event-title a{
	text-decoration:none;
	color: #1f3345;
	font-weight: 700;
}
.event-content .event-desc {
    margin-top: 7px;
}

.maps-icons {
    position: fixed;
    bottom: 150px;
    right: 41px;
    z-index: 10;
}
.maps-icons img{
    width: 53px;
    z-index: 9999;
    height: 65px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.whatsapp_integration {
   position: fixed;
   bottom: 14px;
   margin-right: 10px;
   right: 14px;
   background-color: #4dc247;
   color: #000 !important;
   text-align: center;
   padding: 12px;
   line-height: 1;
   border-radius: 50%;
   width: 50px;
   z-index: 9999;
   height: 50px;
   display: flex !important;
   align-items: center;
   justify-content: center;
}
.whatsapp_integration i {
   font-size: 34px;
   color: #fff;
}
.whatsapp_integration {
   position: fixed;
   bottom: 90px;
   right: 32px;
   background-color: #ffb607;
   color: #000 !important;
   text-align: center;
   padding: 12px;
   line-height: 1;
   border-radius: 50%;
   width: 50px;
   z-index: 9999;
   height: 50px;
   display: flex !important;
   align-items: center;
   justify-content: center;
}
.whatsapp_integration i {
   font-size: 30px;
   color: #fff;
}
.number-call_integration {
   position: fixed;
   bottom: 20px;
   margin-right: 10px;
   right: 30px;
   background-color: #4dc247;
   color: #000 !important;
   text-align: center;
   padding: 12px;
   line-height: 1;
   border-radius: 50%;
   width: 50px;
   z-index: 9999;
   height: 50px;
   display: flex !important;
   align-items: center;
   justify-content: center;
}
.number-call_integration i {
   font-size: 34px;
   color: #fff;
}

.sticky-call-btn {
    position: fixed;
    bottom: 73px;
    margin-left: 10px;
    left: 5px;
    background-color: #00006A;
    color: #000 !important;
    text-align: center;
    padding: 12px;
    line-height: 1;
    border-radius: 50%;
    width: 50px;
    z-index: 9999;
    height: 50px;
}
.sticky-call-btn i {
    font-size: 25px;
    color: #fff;
}
.sticky-call-btn1 {
    position: fixed;
    bottom: 20px;
    margin-right: 10px;
    right: 33px;
    background-color: #4dc247;
    color: #000 !important;
    text-align: center;
    padding: 12px;
    line-height: 1;
    border-radius: 50%;
    width: 50px;
    z-index: 9999;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.sticky-call-btn1 i {
    font-size: 34px;
    color: #fff;
}
.pdfdd{
    display:block;
}
.pdfddss{
    display:none;
}
.sssss{
      display:none;
}
@media only screen and (min-width:320px) and (max-width:767px){
    .pdfddss{
    display: block;
    font-weight: bold;
    font-size: 15px;
    padding: 4px 20px;
    background: red;
    color: #fff;
    border-radius:7px;
}
.pdfdd{
     display:none;
}
	.infrasturcture-sec {
    padding: 40px 0px;
}
.event-content {
    padding: 15px 0px 15px 0;
    text-align: center;
}
	.wel-box-body{
		margin-top: 20px;
	}
	.wel-box-body .sub-text {
    font-size: 15px;
}
	.category-plants .plants-names {
    text-align: center;
    padding: 10px 0;
    -webkit-transition: 0.5s;
    position: relative;
    z-index: 1;
    font-family: var(--headfont);
    font-weight: 900;
    font-size: 12px;
}
.category-plants .plants-names h3 {
    margin: 0 0 3px;
    line-height: 10px;
    font-size: 15px;
    font-weight: 900;
}
.intro_section .highlight {
    font-size: 32px;
}	
.address-left ul li {
    margin-right: 1px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    border: none;
}
.address-left ul li i {
    margin-right: 2px;
    padding-right: 3px;
    font-size: 12px;
}
.navigation-bar {
}
.manubar li {
    padding: 1px 0px;
    /* border-bottom: 1px solid #ddd; */
}
.conatct-btn{
	 padding: 0 0px;
}
.navigation-bar .navbar-collapse{
	margin-bottom: 0;
}
.navbar-section .conatct-btn a {
    padding: 2px 1px;
    border-radius: 0px;
    text-align: left;
    background: #fff;
    color: #222;
    font-weight: 700;
    font-size: 14px;
}
.bg-set-image-1, .bg-set-image-2, .bg-set-image-3 {
    height: 186px;
}
#sliders .carousel-caption{
	display:none;
}
.wel-box-body h1 {
    font-size: 25px;
    margin-bottom: 0;
}
.sec-title h2 {
    font-size: 20px;
    line-height: 20px;
}
.pd-tb-50 {
    padding: 25px 0;
}
.address-text-heading{
	margin-bottom:20px;
}
.too-national .too-national-content {
    position: absolute;
    width: 100%;
    top: 25px;
    left: 15px;
    height: 100%;
    right: 15px;
}
.too-national .too-national-content h1 {
    font-size: 42px;
    margin-right: 0;
}
.too-national .img-bg {
    height: 365px;
    width: 100%;
}
.too-request {
    padding: 30px 20px;
}
.too-contact-home .sp_quickcontact .too-form {
    padding-left: 0;
    padding-right: 0;
}
.too-contact-home .sp_quickcontact .too-form {
    padding-left: 0;
    padding-right: 0;
}
.side-public a {
    font-size: 13px;
}
.wel-box-body p {
    line-height: 26px;
    text-align: justify;
}
.image-left-right{
	display:none;
}
.mb-50 {
    margin-bottom: 25px;
}
.sec-title h2:after {
    bottom: 10px;
}
#order-steps {
    padding-top: 25px;
    padding-bottom: 25px;
}
#testimonials-sec .testimonial-inner {
    padding: 13px;
    text-align: center;
}
#testimonials-sec .testimonial-meta {
    margin-bottom: 7px !important;
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
}
#testimonials-sec {
    background-color: #fcf9f4;
    padding: 25px 0px 70px;
}
.testimonials-sec .testimonial-holder {
    position: relative;
    padding-top: 7px;
    padding-right: 0;
}
.module-title {
    font-size: 29px;
    margin-top: 0;
    margin-bottom: 0;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread {
    padding: 50px 0 24px;
    position: relative;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 47px;
    color: #ffffff;
    margin: 0;
    font-family: var(--headfont);
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial {
    display: inline-block;
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    min-width: 200px;
    padding: 1px 1px 1px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}
.wrd-about-promo-wrapper {
    margin-top: 0;
}
.wrd-about-promo-box {
    text-align: justify;
    margin-bottom: 10px;
}
.wrd-counter-with-image .wrd-counter-box-1 {
    left: 51%;
    margin-left: -62px;
    bottom: -10px;
}
.wrd-counter-with-image .wrd-counter-box {
    height: 106px;
    width: 106px;
    padding: 12px 11px;
    line-height: 14px;
}
.wrd-counter-with-image .wrd-count-title {
    font-size: 13px;
}
.wrd-counter-with-image .wrd-count-number {
    font-size: 30px;
}
.wrd-counter-with-image .wrd-count-unit {
    font-size: 18px;
}
sup {
    top: -0.3em;
}
.wrd-counter-with-image {
    margin-top: 115px;
}
.rs-footer .footer-top {
    padding: 20px 0 20px;
}
.gallery-sec {
    padding-top: 25px;
    padding-bottom: 25px;
}
.map {
    padding: 25px 0;
}
.content-heading {
    margin-left: 0;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    background-color: #fafafa;
    border-radius: 10px;
}
.heading {
    color: #282828;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    font-size: 24px;
    font-family: var(--headfont);
}
.address-item {
    padding: 15px;
    background-color: #f3f3f3;
    border-radius: 10px;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 0;
    margin-bottom: 20px;
}
.pb-100 {
    padding-bottom: 10px;
}
.header-address{
	display:none;
}
.navbar-section {
    top: 0;
}
#sliders {
    margin-top: 50px;
}
.navbar-section .navbar-brand img {
    height: 40px;
}
.manubar li a {
    padding: 7px 11px !important;
    font-size: 14px;
    background: red;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 5px;
}
.project10-box-inner .project10-img-holder h3 {
    font-size: 12px;
}
.project10-box-inner .rtin-proj10-box-info {
    padding: 0px 10px;
}
.project10-box-inner .rtin-proj10-box-info {
    width: 90%; 
}
.project10-box-inner .rtin-proj10-box-info h3 {
    font-size: 13px;
    line-height: 14px;
    margin: 0;
    padding: 0;
}
.content-wrap p {
    color: #fff;
    font-size: 13px;
}
.custom-hover {
    padding: 0px;
}
.footer-logo img{
	height: auto;
}
.rs-footer .footer-top .footer-logo {
    margin: 15px 0 20px;
}
.rs-footer .footer-top .widget-text .footer-title {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: left;
}
.rs-footer .footer-top .widget-text .text-widget ul li {
    padding: 0px 0px 3px 24px;
    margin: 0 0 5px;
    font-size: 14px;
    color:#fff !important;
    text-align: left;
}
.rs-footer .footer-top .widget-text .text-widget ul li:before {
    top: 0px;
}
.side-public {
    padding: 10px 0px 10px;
    font-size: 15px;
}
#testimonials-sec .testimonial-holder {
    padding-top: 7px;
    padding-right: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    display: none;
}
.inner-submenu {
    width: 100%;
}
.manubar li:hover .inner-submenu.show {
    top: 30px;
    display: block;
}

.inner-submenu ul li a {
    padding: 8px 9px;
    font-size: 13px;
}
}


@media only screen and (min-width:768px) and (max-width:1024px){
.intro_section .highlight {
    font-size: 32px;
}	
.address-left ul li {
    margin-right: 1px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    border: none;
}
.address-left ul li i {
    margin-right: 2px;
    padding-right: 3px;
    font-size: 12px;
}
.conatct-btn{
	 padding: 0 0px;
}
.navigation-bar .navbar-collapse{
	margin-bottom: 0;
}
.bg-set-image-1, .bg-set-image-2, .bg-set-image-3 {
    height: 300px;
}
#sliders .carousel-caption{
	display:none;
}
.wel-box-body h1 {
    font-size: 20px;
    margin-bottom: 0;
}
.sec-title h2 {
    font-size: 20px;
    line-height: 20px;
}
.pd-tb-50 {
    padding: 25px 0;
}
.address-text-heading{
	margin-bottom: 0;
}
.too-national .too-national-content {
    position: absolute;
    width: 100%;
    top: 25px;
    left: 15px;
    height: 100%;
    right: 15px;
}
.too-national .too-national-content h1 {
    font-size: 42px;
    margin-right: 0;
}
.too-national .img-bg {
    height: 365px;
    width: 100%;
}
.too-request {
    padding: 30px 20px;
}
.too-contact-home .sp_quickcontact .too-form {
    padding-left: 0;
    padding-right: 0;
}
.too-contact-home .sp_quickcontact .too-form {
    padding-left: 0;
    padding-right: 0;
}
.side-public a {
    font-size: 13px;
}
.wel-box-body p {
    line-height: 26px;
    text-align: justify;
}
.image-left-right{
	display:none;
}
.mb-50 {
    margin-bottom: 25px;
}
.sec-title h2:after {
    bottom: 10px;
}
#order-steps {
    padding-top: 25px;
    padding-bottom: 25px;
}
#testimonials-sec .testimonial-inner {
    padding: 12px;
    text-align: center;
    box-shadow: 2px 2px;
    box-shadow: 1px 11px 37px 0 rgb(28 30 35 / 20%);
}
#testimonials-sec .testimonial-meta {
    margin-bottom: 7px !important;
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
}
#testimonials-sec {
    background-color: #fcf9f4;
    padding: 25px 0px 40px;
}
.testimonials-sec .testimonial-holder {
    position: relative;
    padding-top: 7px;
    padding-right: 0;
}
#testimonials-sec .owl-theme .owl-controls {
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%);
}
.module-title {
    font-size: 29px;
    margin-top: 0;
    margin-bottom: 0;
}
.inner-part {
    background: url(../images/coman-banner.jpg);
    background-size: cover;
    background-position: center top;
    padding: 1px 0;
    background: linear-gradient(45deg, #ee1111, #c06709de);
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread {
    padding: 80px 0 24px;
    position: relative;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 47px;
    color: #ffffff;
    margin: 0;
    font-family: var(--headfont);
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial {
    display: inline-block;
    background: #009961;
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    min-width: 200px;
    padding: 1px 1px 1px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}
.breadcrumbs-inner-part .breadcrumbs-inner-bread .breadcrumbs-trial li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}
.wrd-about-promo-wrapper {
    margin-top: 0;
}
.wrd-about-promo-box {
    text-align: justify;
    margin-bottom: 10px;
}
.wrd-counter-with-image .wrd-counter-box-1 {
    left: 50%;
    margin-left: -62px;
    top: -103px;
}
.wrd-counter-with-image .wrd-counter-box {
    height: 190px;
    width: 190px;
    padding: 45px 23px;
    line-height: 17px;
}
.wrd-counter-with-image .wrd-count-title {
    font-size: 17px;
}
.wrd-counter-with-image .wrd-count-number {
    /* font-size: 30px; */
}
.wrd-counter-with-image .wrd-count-unit {
    font-size: 18px;
}
sup {
    /* top: -0.3em; */
}
.wrd-counter-with-image {
    margin-top: 115px;
}
.rs-footer .footer-top {
    padding: 20px 0 20px;
}
.gallery-sec {
    padding-top: 25px;
    padding-bottom: 25px;
}
.map {
    padding: 25px 0;
}
.content-heading {
    margin-left: 0;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    background-color: #fafafa;
    border-radius: 10px;
}
.heading {
    color: #282828;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    font-size: 24px;
    font-family: var(--headfont);
}
.address-item {
    padding: 15px;
    background-color: #f3f3f3;
    border-radius: 10px;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 0;
    margin-bottom: 20px;
}
.pb-100 {
    padding-bottom: 10px;
}
.header-address{
	display:none;
}
.navbar-section {
    top: 0;
}
#sliders {
    margin-top: 63px;
}
.navbar-section .navbar-brand img {
    height: 39px;
}
.manubar li a {
    padding: 3px;
    font-size: 12px;
}
.project10-box-inner .project10-img-holder h3 {
    font-size: 12px;
}
.project10-box-inner .rtin-proj10-box-info {
    padding: 0px 10px;
}
.project10-box-inner .rtin-proj10-box-info {
    width: 90%; 
}
.project10-box-inner .rtin-proj10-box-info h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
}
.content-wrap p {
    color: #fff;
    font-size: 13px;
}
.custom-hover {
    padding: 0px;
}
.footer-logo img{
	height:40px;
}
.rs-footer .footer-top .footer-logo {
    margin: 0px 0 0px;
}
.rs-footer .footer-top .widget-text .footer-title {
    font-size: 15px;
    margin-bottom: 30px;
}
.rs-footer .footer-top .widget-text .text-widget ul li {
    padding: 0px 0px 3px 24px;
    margin: 0 0 5px;
    font-size: 14px;
}
.rs-footer .footer-top .widget-text .text-widget ul li:before {
    top: 0px;
}
.side-public {
    padding: 10px 0px 10px;
    font-size: 15px;
}
.choose-tiitle-icons .choose-subtiitle {
    margin-top: 13px;
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 2px;
}
.border-lr{
	border:none;
}
#testimonials-sec .testimonial-desc {
    font-size: 14px;
}
.address-text-heading h4 {
    font-size: 16px;
}
}
