@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&display=swap');

:root {
  --color-yellow: #ffb703;
  --color-bluish-gray: #667282;
  --color-primary: #12223b;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-skyblue: #E9F7FE;
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: var(--color-bluish-gray);
  font-family: "DM Sans", sans-serif;
  line-height: 29px;
  font-weight: 400;
}

button,
input[type="submit"],
input[type="search"],
a {
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  cursor: pointer;
}

a:visited,
.alink:visited {
  color: none;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: var(--color-golden-brown);
}

a,
img {
  border: 0;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

label {
  font-weight: normal;
  margin-bottom: 12px;
} 

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--color-primary);
  padding: 0;
  font-family: "Manrope", sans-serif;
}

h1,
.h1 {
  font-size: 70px;
  line-height: 77px;
  letter-spacing: -2.1px;

}


h2,
.h2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.68px;
  line-height: 61.6px;
  margin-bottom: 30px;
}


.sm-heading {
  font-size: 16px;
  font-weight: 800;
  line-height: 17.6px;
  text-transform: uppercase;
  letter-spacing: 2.08px;
  margin-bottom: 20px;
  color: var(--color-yellow);
  font-family: "Manrope", sans-serif;
}


ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

p {
  line-height: 28px;
  margin: 0;
  padding: 0 0 15px;
}

p:last-child {
  padding-bottom: 0;
}

figure {
  margin: 0;
  position: relative;
}

.clear {
  clear: both;
}

.clearfix:after,
.clearfix:before {
  display: table;
  content: "";
  clear: both;
  visibility: hidden;
}

button,
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

input::-webkit-input-placeholder {
  color: #000;
}

input:-ms-input-placeholder {
  color: #000;
}

input::placeholder {
  color: #000;
}

.form-control::placeholder {
  color: #000;
  opacity: 1;
}

.container {
  max-width: 1300px;
}

.form-control {
  border: 1px solid #e1e1e1;
  background: #fff font-size:13px;
  border-radius: 3px;
  padding: 0 15px;
  box-shadow: none !important;
  color: #000;
  height: 48px;
  line-height: 48px;
  outline: medium none !important;
  width: 100%;
}

.form-control:focus {
  border: 1px solid #32a54b;
  color: #000;
}

textarea.form-control {
  min-height: 130px;
  line-height: inherit;
  padding: 10px 15px;
}

.custom-btn {
  font-size: 18px;
  position: relative;
  display: inline-block;
  border: 0;
  color: var(--color-white);
  background: var(--color-yellow);
  text-transform: capitalize;
  border-radius: 12px;
  padding: 20px 30px;
  font-weight: 800;
  transition: 0.4s ease-in-out;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}

.custom-btn .btn-txt {
  z-index: 1;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--color-white);
}

.custom-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 106%;
  background: var(--color-primary);
  border-radius: 12px;
  transition: 0.4s ease-in-out;
}

.custom-btn .icon {
  margin-left: 10px;
  width: 25px;
  transition: 0.4s ease-in-out;
}

.custom-btn .icon img {
  width: 24px;
  height: 24px;
  transition: 0.5s ease-in-out;
}

.custom-btn:hover:after {
  width: calc(100% + 2px);
  margin-left: -1px;
}

.custom-btn:hover .icon img {
  margin-left: 3px;
}


.custom-btn.tp-btn {
  background: transparent;
  padding: 19px 29px;
  border: 1px solid var(--color-white);
}

.custom-btn.tp-btn:hover {
  border-color: var(--color-yellow);
}

.custom-btn.tp-btn::after {
  background-color: var(--color-yellow);
}

.bg-skyblue{    
	background: var(--color-skyblue);
} 
.bg-naviblue{ color: var(--color-primary);}
/*header-start*/


.main-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}


.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

/*global css*/

/*header css*/
.header {

  position: absolute;
  z-index: 1;
  left: 40px;
  right: 40px;
  top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 80px;
}

/*menu css*/

.nav-section .navbar-nav {
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

.nav-section .navbar-nav .nav-link {
  color: var(--color-white);
  background: transparent;
  padding: 10px;
  margin: 0 10px;
}

.nav-section .navbar {
  padding: 0;
}

.nav-section .navbar-nav .nav-item.active .nav-link,
.nav-section .navbar-nav .nav-item .nav-link:hover,
.nav-section .navbar-nav .nav-item .nav-link:focus {
  background: transparent;
  color: var(--color-yellow);
}

.nav-section .navbar-nav .nav-link.dropdown-toggle::after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  border: 0;
  position: relative;
  top: 5px;
  margin: 0 0 0 5px;
  line-height: 1;
}

.nav-section .navbar-nav .dropdown-menu {
  min-width: 240px;
  display: none;
  background: var(--color-yellow);
  border-radius: 10px;
  padding: 5px 0;
  border: 0;
  margin: 0;
}

.nav-section .navbar-nav .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
}

.nav-section .navbar-nav .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  color: var(--color-white);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
}

.nav-section .navbar-nav .dropdown-menu .dropdown-item:focus,
.nav-section .navbar-nav .dropdown-menu .dropdown-item:hover {
  color: var(--color-black);
  background-color: transparent;
}

.custom-btn.hdr-contact {
  margin-left: 40px;
  padding: 22px 30px;
  white-space: nowrap;  
}

.custom-btn.hdr-contact:hover .btn-txt {
  color: var(--color-primary);
}

.custom-btn.hdr-contact::after {
  background: var(--color-white)
}

.logo img {
	width: 100%;  
  max-width: 250px;
}

/*header css*/

/*banner-slider*/

.hero-bnr {
  position: relative; 
  margin: 40px 40px 0;
  height: 900px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 102px;  
  background-size: cover !important; 
}

.hero-bnr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-caption {
  z-index: 1;
  text-align: center;
  max-width: 920px;
  position: relative;
  margin: auto;
  color: var(--color-white);
}

.hero-caption h1{ 
  color: var(--color-white);
  margin-bottom: 40px;
}
 
.hero-caption p {
  font-size: 22px;
  line-height: 35.2px;
  margin: 30px 0;
}

.bnrlink-bx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bnrlink-bx .custom-btn {
  margin: 0 17px;
}

/*banner-slider*/


/*aboutus-section*/
.abt-contain {
  padding-left: 100px;
}

.abt-list {
  padding: 30px 30px;
  border-radius: 20px;
  background: var(--color-skyblue);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-primary);
  margin: 20px 0 45px;
}

.abt-list ul li {
  padding-left: 30px;
  position: relative;
}

.abt-list ul li+li {
  margin-top: 16px;
}

.abt-list ul li::before {
  top: 3px;
  left: 0;
  content: '';
  position: absolute;
  background: url(../images/icon-3.svg) no-repeat;
  width: 20px;
  height: 20px;
}

.ab-telno .icon {
  width: 40px;
  height: 40px;
  margin-right: 18px;
  margin-top: 10px;
}

.ab-telno {
  font-family: "Manrope", sans-serif;

}

.ab-telno p {
  line-height: 1;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: rgb(102, 114, 130);
}

.ab-telno span {
  font-size: 24px;
  font-weight: 800;
  line-height: 31px;
  color: var(--color-primary);
}

.abt-contact ul li+li {
  margin-left: 30px;
}


.services-section {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  background: var(--color-skyblue);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url('../images/img-3.png') no-repeat;
  width: 612px;
  height: 633px;
}


.view-link {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);

}

.view-link .icon {
  margin-left: 5px;
  transition: 0.3s ease-in-out;
}

.view-link:hover {
  color: var(--color-white);
}

.view-link:hover .icon {
  margin-left: 8px;
  filter: brightness(0) invert(1);
}


.service-bx figure img {
  min-height: 350px;
  object-fit: cover;
}

.service-bx {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
}

.service-bx::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

/* Overlay box */
  

.service-overly {
  position: absolute;
  transition: 0.5s ease-in-out;
  padding: 40px 40px 20px;
  color: var(--color-white);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;  
  transform: translateY(100%);
  bottom: 125px;  

}

.service-bx:hover .service-overly {
  transform: translateY(0);
  bottom: 0;
}

.service-overly h3 {
  font-size: 24px;    
  font-weight: 700;
  line-height: 31px;
  color: var(--color-white);
  margin: 0;   
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 64px;
}


.service-overly p {
  line-height: 26px;
  padding: 0;
  margin: 20px 0;
  overflow: hidden;  
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical; 
  height: 104px;    
}




.servicebtm-bx {
  padding-top: 40px;
}

.wych-cont-bx {
  border-radius: 40px;
  padding: 30px;
  border: 1px solid rgba(18, 34, 59, 0.19);
  height: calc(100% - 30px);
  margin-bottom: 30px;

}

.wych-cont-bx h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 25px;
}

.wych-cont-bx hr {
  border-top: 1px solid rgba(18, 34, 59, 0.19);
  margin: 15px 0 30px;
}

.wych-btm span {
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -1.68px;
   margin-bottom: 20px;
}


.wych-img-bx {
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.wych-img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imghoverEffect {
  position: relative;
}

.imghoverEffect::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .2);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.imghoverEffect:hover::after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}


.projects-section {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  background: var(--color-skyblue);
  overflow: hidden;
}


.projects-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('../images/img-15.png') no-repeat;
  width: 484px;
  height: 485px;
}


.quote-section {
  color: var(--color-white);
  position: relative;
  background: var(--color-primary) url('../images/img-17.png') no-repeat bottom right;
}

.quote-section h2 {
  color: var(--color-white);
}

.quote-section p {
  padding-bottom: 30px;
}

.quot-imb {
  position: absolute;
  bottom: -100px;
}


.quote-section .custom-btn {
  padding: 19px 29px;
  border: 2px solid transparent;
}

.quote-section .custom-btn:hover {

  border-color: var(--color-white);
}

.quote-section .custom-btn:hover::after {
  width: 100%;
  margin-left: 0;
  height: 100%;
}


.testimonials-section .main-heading {
  max-width: 845px;
}

.wych-cont-bx.testi-bx {
  padding: 40px;
}
 
.rating i {
  margin-right: 6px;
  margin-bottom: 5px;
  color: var(--color-yellow);
}

.wych-cont-bx.testi-bx .rating {
  margin-bottom: 20px;
}

.testi-media img {
  width: 65px !important;
  height: 65px !important;
  margin-right: 20px;
  border-radius: 100%;
}

.testi-media .wych-btm {
  margin-top: 5px;
}

.testi-media .wych-btm span {
  font-size: 24px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.testi-bx p{ 
  padding: 0;
  margin: 0 0 35px;
  overflow: hidden;  
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;  
  height: 166px; 
}

.testimonials-slider .owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.testimonials-slider .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 0 5px;
  background: var(--color-yellow);
}

.testimonials-slider .owl-dots .owl-dot.active {
  background: var(--color-primary);
}

.artical-bx {
  border-radius: 40px;
  border: 1px solid rgba(18, 34, 59, 0.19);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.artical-info {
  padding: 30px;
}

.artical-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  color: var(--color-primary);
  display: block;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 31px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 64px;

}

.artical-title a {
  color: inherit;
}

.read-more {
  color: var(--color-yellow);
  font-family: "Manrope";
  font-size: 18px;
  display: inline-block;
  font-weight: 700;
  line-height: 18px
}

.read-more:hover {
  color: var(--color-yellow);
}

.hoverZoom {
  overflow: hidden;
}

.hoverZoom img {
  transition: 0.3s ease-in-out;
}

.hoverZoom:hover img {
  transform: scale(1.1);
}
    
.artical-bx figure {
	height: 260px;    
}  
    
.artical-bx figure a{ display: block;
  width: 100%;
  height: 100%; }

.artical-bx figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-section {
  background: var(--color-skyblue) url('../images/img-27.png') no-repeat center/cover;
}


.cont-info {
  padding: 40px 40px 0;
  border-radius: 40px;
  text-align: center;
  background: var(--color-primary);
}

.contactfrm-block {
  background: var(--color-white);
  padding: 50px;
  border-radius: 40px;
}

.cont-infobx .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.cont-infobx span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  padding: 20px 0 10px;
}

.cont-infobx p {
  color: var(--color-white);
  font-family: "Manrope";
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}

.cont-info ul li {
  padding-bottom: 25px;
}

.cont-infoimg img {
  max-width: 190px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}

.cont-infoimg:hover img {
  filter: grayscale(86%);
}

.cont-form .form-group {
  margin-bottom: 24px;
}

.cont-form .form-control {
  padding: 15px;
  height: auto;
  font-size: 16px;
  line-height: 24px;
  border-radius: 0px;
  border: 0;
  border-bottom: 1px solid rgba(18, 34, 59, 0.19);
  color: var(--color-primary)
}

.cont-formform textarea {
  min-height: 100px;
}

.cont-form .form-control::placeholder {
  color: #d5d2d2;
  /* Modern browsers */
}

.cont-form .form-control::-webkit-input-placeholder {
  color: #d5d2d2;
  /* Chrome, Safari, Edge */
}

.cont-form .form-control::-moz-placeholder {
  color: #d5d2d2;
  /* Firefox old */
}

.cont-form .form-control:-ms-input-placeholder {
  color: #d5d2d2;
  /* IE 10+ */
}


.footer {
  padding: 80px 0;
  color: var(--color-white);
  background: var(--color-primary);
}

.footer a:hover {
  color: var(--color-yellow);
}


.ftr-logo {
  margin-bottom: 10px;
  display: inline-block;
}

.ftr-links li+li {
  margin-top: 18px;
}

.ftr-links li {
  position: relative;
  padding-left: 30px;
}

.ftr-links li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: url('../images/icon-11.svg') no-repeat center center;
  height: 20px;
  width: 20px;
  transition: all.3s ease-in-out;
}


.ftr-hdr {
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 35px;
}

.ftr-contobx .icon {
  width: 26px;
  height: 26px;
}

.ftr-contobx .icon {
  width: 26px;
  height: 26px;
  margin-right: 15px;
  margin-top: 5px;
}

.ftr-cont ul li+li {
  margin-top: 22px;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.social-links a {
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.social-links a:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.social-links li+li {
  padding-left: 15px;
}


.faq-section {
  background: var(--color-skyblue) url('../images/img-24.png') no-repeat right bottom;
}

.top-row .faq-img {

  margin-bottom: 30px;
}

.faq-iconbx {
  z-index: 1;
  position: relative;
}

.faq-img img {
  width: 100%;
  border-radius: 40px;
}

 
.faq-icon {
  position: absolute;
  bottom: -65px;
  right: -65px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.faq-icon img {
  width: 50px;
  height: 50px;
}

.top-row .faq-img {
  margin-bottom: 30px;

}


/*faq page csss*/
.faq-card {
  padding: 0 0 30px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-white);
  margin-bottom: 30px;
}

.faq-card:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.faq-card-hdr {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.faq-card-links {
  color: var(--color-primary);
  background: transparent;
  font-size: 24px;
  font-weight: 700;
  display: block;
  width: 100%;
  position: relative;
  padding: 0 40px 0 0;
}

.faq-card-links::before {
  content: '';
  background: url(../images/icon-5.svg);
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: -2px;
  transition: 0.5s ease-in-out;
}

.faq-card-links.active::before,
.faq-card-links[aria-expanded="true"]::before {
  transform: rotate(-90deg);
}

.faq-card-links:hover,
.faq-card-links:focus,
.faq-card-links.active,
.faq-card-links[aria-expanded="true"] {
  color: var(--color-yellow);
}

.faq-contain .card-body {
  padding: 20px 0 0;
}
  
/* Animation */  

.fade-up, 
.fade-left, 
.fade-right { 
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Fade UP */
.fade-up {
  transform: translateY(100px);
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fade LEFT */
.fade-left {
  transform: translateX(-100px);
}
.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Fade RIGHT */
.fade-right {
  transform: translateX(100px);
}
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
} 
    
.reveal-container {
      position: relative;
      overflow: hidden;
    }

    .reveal-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;


      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s ease-out;
    }

    
    .reveal-container.show img {
      transform: scaleX(1);
    }  
.hoverImgBWhite:hover img {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
}

.explorebtn-bx{
  width: 50px;
  position: fixed;
  top: 50%;
  right: 0;
  background: #fff;
  transform: translateY(-50%);
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;  
  border-bottom: 1px solid #e8e8e8;
  border-radius: 10px 0 0 10px;
  z-index: 10000;
}
.explorebtn-bx a{
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;  
  justify-content: center;
  font-size: 22px;
  color: #333;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid #e8e8e8;} 


.explorebtn-bx a:last-child{border-bottom: 0;} 

.explorebtn-bx .call{
  transform: rotate(455deg); 
}    
        
.cstm-bredcumb{display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
 font-weight: 600; text-transform: capitalize; color: var(--color-white);}
.cstm-bredcumb li a{color: inherit;}         
.cstm-bredcumb li a:hover{color: var(--color-yellow)}   
.cstm-bredcumb li:last-child{padding-left: 0; color: var(--color-yellow)}
  .cstm-bredcumb li + li::before {content: ''; width: 6px; height: 12px; background: url(../images/icon-13.svg) no-repeat; display: inline-block; margin: 0 8px;}
.hero-bnr.inner-hero {height: 450px;}  
      
.contact-map iframe {width: 100%; min-height: 350px; }
.middle-section{padding:80px 0;}
   
          
.counter-section {padding: 70px 0; }       
 .counter-section ul li {flex: 0 0 25%; max-width: 25%; border: 1px dashed #ddd; }
.counter-box {display: flex; flex-direction: column; align-items: center; padding: 45px 15px; text-align: center; }
.counter-box p {font-size: 16px;  line-height: 24px; }

.timer {color: var(--color-primary); font-size: 50px; line-height: 1;  display: flex; justify-content: center; font-weight: 700; align-items: center; margin-bottom: 20px; }

.team-section {padding: 60px 0 30px; }    
.team-box {border: 1px solid #e1e1e1; border-radius: 5px; overflow: hidden; background: #fff; margin-bottom: 30px; height: calc(100% - 30px); }
.team-img {height: 252px; overflow: hidden; }
.team-img img {height: 100%; width: 100%; object-fit: cover; object-position: top; transition: 0.5s ease-in-out; } 
.team-box:hover .team-img img{transform: scale(1.1); }
.team-text {padding: 15px; text-align: center; }
.team-text h4 {font-size: 18px; font-weight: 700; line-height: 20px; margin: 10px 0 13px; color: #292929; }
 .t-pro {display: block; width: 100%; line-height: 1; color: #979696; margin-bottom: 10px; } 


  .gallery_lightbx .lightbox_img_wrap {
  position:relative;
  overflow:hidden;  
  height: 300px;
  margin-bottom: 30px;
  border-radius: 20px;
}
     
.gallery_lightbx  .lightbox-enabled:hover {
  transform:scale(1.1) 
}
.gallery_lightbx  .lightbox-enabled {
  width:100%;
height:100%;
object-fit:cover;
cursor:pointer;
transition: 0.5s ease-in-out;
}


.gallery_lightbx  .lightbox-container {width:100vw;
height:100vh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.gallery_lightbx  .lightbox-container.active {
  opacity:1;
  pointer-events:all;
}

.gallery_lightbx .lightbox-btn{
  color: white;
  cursor: pointer; 
  position: absolute;
  font-size: 31px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 

.gallery_lightbx  .left {left:5px;}
.gallery_lightbx  .right {right:5px;}

.gallery_lightbx  #close {position: absolute;
  font-size: 22px;
  top: 13px;
  opacity: 1;  
  color: #000; 
  right: 20px;} 
 
.gallery_lightbx  .lightbox-image {
  width:100%;
  max-height:95vh;
  object-fit:cover;
}

.gallery_lightbx  .modal_inner_image {
    min-height: 400px;
    z-index: 1000;}
       
.gallery_lightbx .modal-content {
    width: 100%;}

.gallery_lightbx .lightbox-image {   
  width: 100%;   
  object-fit: cover; 
  max-width: 600px;
  height: 450px; 
  border-radius: 20px;  
}   
.gallery_lightbx .lightbox-image-wrapper {
  padding: 45px 20px 20px;
  display: block; 
  background: #fff;
  border-radius: 10px;
  position: relative;      
  max-width: calc(100% - 40px);
  margin: 20px;
  max-height: calc(100% - 40px);
  overflow-y: auto;
}   


.gallery_lightbx .lightbox-image {
   height: 380px;
}
  
.gallery_lightbx .lightbox_img_wrap {
  height: 270px;
}

.lightbox-caption {   
  text-align: center;
  margin: 17px 0 0;   
}

 #videogallery{ width:100%; height:250px;}

.lightbox_video{
  margin-bottom: 30px;
} 

 .lightbox_video img {
 height: 250px;
  width: 100%; 
  object-fit: cover;
 }

 /*blog page css*/ 

 .artical-bx.bp-artical .custom-btn{
 	padding: 11px 12px 12px;
  font-size: 15px;
  border-radius: 10px;
 }


 .custom-btn.bknow-btn {
  border-radius: 10px;
  padding: 14px 15px;
  margin: 5px 8px 5px 0;
}  


 .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25cc62;
  color: var(--color-white);
  padding: 10px 15px;
  border-radius: 10px;
  line-height: 1;
  font-size: 18px;  
  margin: 5px 0;
  font-weight: 800;
}  
.share-btn i {
  margin-right: 10px;
  font-size: 25px;
  font-weight: 400;
}
  
.share-btn:hover {
  background: #079b3d; 
  color: var(--color-white);
}

.dtl-slider-img{
	height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.dtl-contain h1 {
  font-size: 50px;
  line-height: 60px;
  overflow: hidden;
  display: -webkit-box;   
  -webkit-line-clamp: 2;   
  line-clamp: 2;  
  -webkit-box-orient: vertical;  
  height: 123px;    
}     
      
.dtl-sub-title{    
	display: block;
	overflow: hidden;
  display: -webkit-box;   
  -webkit-line-clamp: 4;   
  line-clamp: 4;  
  -webkit-box-orient: vertical;  
  height: 115px;       
}

.dtl-contain h2, 
.dtl-contain h3, .dtl-contain h4, .dtl-contain h5 {
  font-size: 45px;
  margin-bottom: 17px;
  line-height: 55px;
}

.dtl-contain p{
  padding-bottom: 15px;  
}

 .dtl-contain ul, .dtl-contain ol {
   margin-bottom: 20px;
  margin-left: 15px;
  }
.dtl-contain ul li, .dtl-contain ol li {
  list-style: disc;
  margin-bottom: 10px;
} 

.dtl-contain ul li p, 
.dtl-contain ol li p {
  padding-bottom: 0;
}

.video-wrap {
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
  height: auto;
  position: relative;
} 

.video-wrap video {
  width: 100%;
  display: block;
}

.video-wrap .playPauseBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  opacity: 0.8;
  min-width: 105px;
  cursor: pointer;
}

.hero-bnr.dtl-hero {
  height: 103px;
}



.dtl-btn{
  line-height: 1;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 7px;   
  color: var(--color-white);
  text-transform: capitalize;
  background: var(--color-yellow);  
  font-family: "Manrope", sans-serif;
}
   
.dtl-btn:hover { 
  background: var(--color-primary);  
  color: var(--color-white);
  }

   
  .brand-section {    
  border-top: 1px solid rgba(18, 34, 59, 0.19);}
.brand-bx a{
  display: flex;
  align-items: center;     
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;  
  width: 100%; 
  height: 225px;    
  background: var(--color-white);
  border: 1px solid rgba(18, 34, 59, 0.19);
}
         
.brand-bx img {
  width: auto !important;
  height: auto;
  max-width: calc(100% - 30px);  
  max-height: calc(100% - 30px);
  margin: 15px;
}

.brand-slider .owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 25px; 
}
 
.brand-slider .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 0 5px;
  background: var(--color-yellow);
}

.brand-slider .owl-dots .owl-dot.active {
  background: var(--color-primary);
}

.artical-bx.bp-artical figure {
  height: 200px;
}
