:root {
  --color-1: #4a6135;
  --color-1-op: rgba(35, 31, 32, 0.9);
  --color-2: #c70d37;
  --color-3: #f2ffe5;
  --color-3-op: rgba(254, 251, 234, 0.5);
}



/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/


/* 1.1 General */

@font-face {
  font-family: brushscript;
  src: url(../fonts/BrushScriptOpti-Regular.ttf);
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(../fonts/fontawesome-webfont.woff2);
}

html{
  -webkit-font-smoothing: antialiased;
}


* {
    margin: 0;
    padding: 0;
}

body{
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


h1,
.h1{
    margin:0 0 20px 0;
    font-family: "Urbanist", sans-serif;
    line-height: 1.5;
    font-weight: 800;
}


h2,
.h2{ 
    position: relative ;
    margin:0 0 10px 0;
    line-height: 1.3;
    font-family: "Urbanist", sans-serif;
    font-weight: 800;
}

h3,
.h3{
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

h4,
.h4{
  margin:0;
  font-family: "Urbanist", sans-serif;
  font-weight:500;
  line-height: 1.4;
}

h5,
.h5{
    line-height: 1.3;
    font-family: "Urbanist", sans-serif;
    font-weight: 800;
}

strong{
  font-weight: 800;
}


p { 
  margin:10px 0 0;
}

ul.list {
  padding: 0;
  margin: 0;
}

.list li {
  list-style: none;

}

a {
  color:var(--color-2);
  -webkit-transition: color .3s ease-out;
  -o-transition: color .3s ease-out;
  transition: color .3s ease-out;
  text-decoration: none;
}

a:hover,
a:focus {
  color:#999;
  outline: none;
}

a:focus{
  text-decoration: none;
}


.bg-clr-1 {
  background-color: var(--color-1);
  color: #fff;
}

.bg-clr-2 {
  background-color: var(--color-2);
  color: #fff;
}

.bg-clr-3 {
  background-color: var(--color-3);
}

h1.sec-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}


.button-1, .button-2 {
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	font-weight: 500;
	font-size: 1rem;
	border-radius: 0.5rem;
	overflow: hidden;
	color: #fff;
	border: 1px solid var(--color-3);
	padding: 1rem 3rem;
	margin: 0;
	position: relative;
	display: inline-block;
  z-index: 0;
}

.button-1 {
  background: var(--color-3);
}

.button-2 {
  background: var(--color-1);
  color: #000;
}

.button-1::before,
.button-1::after,
.button-2::before,
.button-2::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 101%;
  z-index: -1;
}

.button-1::before,
.button-2::before {
	content: '';
	width: 120%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}


.button-1::before{
	background: var(--color-1);
}

.button-2::before{
	background: var(--color-3);
}

.button-1:hover::before,
.button-2:hover::before {
	transform: translate3d(100%,0,0);
}

.button-1 i, .button-2 i {
  vertical-align: middle;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.7em;
}

.btn-slide {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5em;
  padding: 20px 40px;
}

.modal {
  background:  var(--color-3-op);
}

.modal-content {
  border-radius: 0px;
  background:#4a6135;
  color: #fff;
}






/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/


header{
}

header .logo {
  max-height: 80px;
}

.top-nav {
  margin: 0;
}

.top-nav li {
  display: inline-block;
  padding-right: 15px;
}

.top-nav li a {
  font-size: 15px;
  font-weight: 100;
  color: #000;
}


/*Nav*/
.navbar {
  height: 90px;
  background-color: #fff;
}


.fixed-top .navbar {
  height: 70px;
}

.fixed-top .logo {
  height: 60px;
  overflow: hidden;
}

.navbar-nav li {
	padding: 5px;
	margin-left: 10px;
	margin-right: 10px;
}

.navbar-nav li a {
  color: #4a6135;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.dropdown-menu li a{
  color: #ffff !important;
}

.dropdown-menu li a:hover{
  color:var(--color-1) !important;
}


.navbar-nav li a:hover {
  
  color: var(--color-1);
  text-decoration: none;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
}

.dropdown-toggle::after {
  margin-left: .5em;
}

.navbar-nav li{
  margin: 0px;
}

.navbar-nav li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-nav .dropdown-menu {
  background-color:  #4a6135;
  border-radius: 0px;
  box-shadow: none;
  border: 1px solid #fff;
  margin-top: 15px;
}

.navbar-toggler {
  background: #fff;
  border-radius: 0px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.fixed-top.navbar {
  height: 50px;
}

header {
  transition: all .5s ease-in-out 0s;
  -webkit-transition: all .5s ease-in-out 0s;
  -moz-transition: all .5s ease-in-out 0s;
  animation: .5s slideout;
  animation-timing-function: ease-in-out;
}

@keyframes slideout {
  0% {
    top:-110px;
  }

  100% {
    top: 0px;
  }
}

header.fixed-top{
  background:var(--color-3);
  transition: all .5s ease-in-out 0s;
  -webkit-transition: all .5s ease-in-out 0s;
  -moz-transition: all .5s ease-in-out 0s;
  animation-name: slidein;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
}

@keyframes slidein {
  0% {
    top:-110px;
  }

  100% {
    top: 0%;
  }
}

.overlay-slider {
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(122deg, rgba(74,97,53,0.7) 10%, rgba(255,255,255,0) 100%);
  position: absolute;
}







/*-------------------------------------------------------------------------------
  Banner
-------------------------------------------------------------------------------*/


.banner-con {
  background-color: var(--color-1);
  z-index: 0;
}

.banner-con::before {
  content: "";
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: rgba(71, 92, 50, .6) url(../img/slider/slide_bg.png);
  background-size: cover;
  background-blend-mode: color-burn;
  z-index: -1;
}

.banner-con::after {
  content: "";
  width: 50%;
  height: 100%;
  opacity: 98%;
  right: 0;
  top: 0;
  position: absolute;
  background-image: url(../img/slider/slide01.jpeg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.banner-con .banner_content {
  width: 635px;
  padding: 245px 0 230px;
}

.banner-con .banner_content h5{
  padding-left: 84px;
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
}
.banner-con .banner_content h5::before {
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 67px;
  height: 1px;
  position: absolute;
  background-color: var(--color-3);
}
.banner-con .banner_content h1{
  margin-bottom: 25px;
  font-size: 3em;
}
.banner-con .banner_content p{
  margin-bottom: 40px;
}
.banner-con .banner_content .all_button {
  width: 184px;
  padding: 21px;
}
.banner-con .banner_content .get_started{
  margin-right: 12px;
  border: 1px solid var(--color-3);
}
.banner-con .banner_content .get_started:hover{
  border: 1px solid rgb(255 255 255 / 40%);
  background-color: transparent;
}
.banner-con .banner_content .get_quote{
  border: 1px solid rgb(255 255 255 / 40%);
  background-color: transparent;
}
.banner-con .banner_content .get_quote:hover{
  border: 1px solid var(--color-3);
  background-color: var(--color-3);
}
.banner-con .banner_wrapper{
  z-index: 1;
}
.banner-con .banner_wrapper .icon {
  width: 115px;
  height: 115px;
  line-height: 115px;
  border-radius: 100%;
  text-align: center;
  background-color: var(--color-3);
  transition: all 0.3s ease-in-out;
}
.banner-con .banner_wrapper .icon:hover {
  transform: translateY(-5px);
}
.banner-con .banner_wrapper .banner-icon1 {
  position: relative;
  left: -192px;
  top: 132px;
}
.banner-con .banner_wrapper .banner-icon2 {
  position: absolute;
  right: -158px;
  bottom: -466px;
}
.banner-con .banner_wrapper .box{
  right: 150px;
  bottom: -796px;
  width: 272px;
  height: 188px;
  padding: 25px 20px 20px;
  border-radius: 20px;
  text-align: center;
  position: absolute;
  background-color: var(--color-2);
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 7%);
}
.banner-con .banner_wrapper .box .value{
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: var(--color-3);
  font-family: "Urbanist", sans-serif;
}
.banner-con .banner_wrapper .box .review{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
  color: var(--e-global-color-text);
}
.banner-con .banner_wrapper .box figure{
  margin: 0 -12px;
  display: inline-block;
}
.banner-con .banner_wrapper .box figure:first-child{
  margin-left: 0;
}
.banner-con .banner_wrapper .box figure:last-child{
  margin-right: 0;
}
.banner-con .banner_wrapper .box img{
  border-radius: 100%;
  border: 2px solid var(--e-global-color-white);
}



/*-------------------------------------------------------------------------------
  Benifit Section
-------------------------------------------------------------------------------*/

.benefit-sec {
  background-color: var(--color-3);
}

.benefit-sec .benefit_content h6 {
  margin-bottom: 14px;
}

.benefit-sec .benefit_content h2 {
  margin-bottom: 28px;
  font-size: 46px;
  font-weight: 800;
}

.benefit-sec .benefit_wrapper ul{
  display: flex;
}
.benefit-sec .benefit_wrapper ul li{
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
}
.benefit-sec .benefit_wrapper ul li:first-child{
  padding-left: 0;
}
.benefit-sec .benefit_wrapper ul li:last-child{
  padding-right: 0;
  margin-bottom: 0;
}
.benefit-sec .benefit_wrapper ul li .icon{
  width: 87px;
  height: 87px;
  line-height: 87px;
  margin-bottom: 22px;
  border-radius: 100%;
  text-align: center;
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-sec .benefit_wrapper ul li:hover .icon{
  transform: translateY(-5px);
}

.benefit-sec .benefit_wrapper ul li .icon i {
  font-size: 30px;
  line-height: 32px;
}



/*-------------------------------------------------------------------------------
  About Section
-------------------------------------------------------------------------------*/



.about-sec {
  padding: 140px 0;
}
.about-sec .about-rightimage {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-sec .about-rightimage img{
  opacity: 20%;
}
/* .about-sec .about_content {
  padding: 70px 0 0px 25px;
} */
.about-sec .about_content h6 {
  margin-bottom: 14px;
}
.about-sec .about_content h2 {
  margin-bottom: 22px;
}
.about-sec .about_content .text {
  line-height: 30px;
  margin-bottom: 30px;
}

.about-sec .about_wrapper .image img{
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.about-sec .about_wrapper .about-image1 {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 450px;
}

.about-sec .about_wrapper .about-image2 {
  position: absolute;
  right: -20px;
  top: -70px;
  width: 38%;
  height: 230px;
}


/*-------------------------------------------------------------------------------
  CTA Section
-------------------------------------------------------------------------------*/

#cta-sec {
  background: rgba(255, 255, 255, 0.5) url(../img/Para1.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: color;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}


#cta-sec.health-bg {
  background: rgba(255, 255, 255, 0.5) url(../img/HealthPara.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}


#cta-sec.life-bg {
  background: rgba(255, 255, 255, 0.5) url(../img/LifePara.jpeg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#cta-sec.voluntary-bg {
  background: rgba(255, 255, 255, 0.5) url(../img/VoluntaryPara.jpeg) center; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

#cta-sec.section-125-bg {
  background: rgba(255, 255, 255, 0.5) url(../img/Section125Para.jpeg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/*-------------------------------------------------------------------------------
  Services
-------------------------------------------------------------------------------*/


.service-sec {
  padding: 135px 0 110px;
  border-top:2px solid var(--color-1);
  background-color: var(--color-1);
}
.service-sec .service_content h6{
  margin-bottom: 17px;
}
.service-sec .service_content h2{
  margin-bottom: 28px;
  font-size: 46px;
  font-weight: 800;
}
.service-sec .service-box {
  padding: 42px 40px;
  height: 100%;
  background-color: var(--color-3);
  border: 1px solid #fff;
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 2%);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.service-sec .service-box:hover {
  border: 1px solid var(--color-3);
}
.service-sec .service-box .icon {
  margin-bottom: 26px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--color-1);
}
.service-sec .service-box:hover .icon {
  transform: translateY(-5px);
}
.service-sec .service-box .icon i{
  font-size: 3em;
  line-height: 1em;
}
.service-sec .service-box h4 {
  margin-bottom: 14px;
}
.service-sec .service-box p {
  margin-bottom: 22px;
}
.service-sec .service-box .learn_more {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  color: var(--color-1);
  transition: all 0.3s ease-in-out;
}
.service-sec .service-box .learn_more i {
  font-size: 20px;
  margin-left: 14px;
  transition: all 0.3s ease-in-out;
  color: var(--color-1);
  line-height: 1em;
  vertical-align: middle;
}
.service-sec .service-box .learn_more:hover {
  color: var(--e-global-color-text);
}
.service-sec .service-box .learn_more:hover i {
  transform: translateX(4px);
  color: var(--e-global-color-text);
}




/*-------------------------------------------------------------------------------
  Contact
-------------------------------------------------------------------------------*/

.contact-form input, .contact-form textarea, .contact-form select,
.get-q-form input[type="text"], .get-q-form input[type="email"], .get-q-form input[type="number"], .get-q-form textarea, .get-q-form select{
  border-radius: 0px;
  padding: 15px 18px;
  border: 0px;
}

.ftr-icon {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    border: 0px solid;
    background: #fff;
}

.ftr-icon span{
    margin-right: 12px;
    line-height: 1.5;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 0px;
    background: #5271ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}



/*-------------------------------------------------------------------------------
  
           Inside Pages

-------------------------------------------------------------------------------*/


#page_header {
  background-image: url(../img/dot-bg.png);
  background-position:right -50% center;
  background-size: 70%;
  background-repeat: no-repeat;
  background-color: var(--color-2);
  padding-top: 80px;
  background-blend-mode: color-burn;
  padding-bottom: 80px;
}

/* .title-sec {
  background: rgba(74, 97, 53, 1) url(../img/slide_bg.png);
  background-size: 35%;
  background-blend-mode: color-burn;
  color: #fff;
} */

.title-sec {
  background: rgba(0, 0, 0, .5) url(../img/AltHeader.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: color;
  color: #fff;
}

#page_header h1{
  color: #fff;
  font-weight: bold;
}

/* 
.key-sec .image img{
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  width: 90%;
  height: 500px;
} */

.key-list, .work-list {
  margin: 0;
  padding: 0;
}

.key-list li, .work-list li {
  display: inline-block;
  padding: 10px 0;
}

.key-list span, .work-list span {
  padding: 15px;
  display: inline-block;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  float: left;
  margin-right: 20px;
}


.key-list span {
  background-color: var(--color-1);
}

.work-list span {
  background-color: var(--color-3);
  color: var(--color-1);
}





#faq-sec .accordion-card {
  margin-bottom: 25px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--color-3);
  box-shadow: 0 12px 105px 12px rgb(0 0 0 / 5%);
}
#faq-sec .accordion-card:last-child {
  margin-bottom: 0;
}
#faq-sec .accordion-card .btn-link {
  color: var(--color-1);
}
#faq-sec .accordion-card .collapsed {
  color: var(--color-1);
}
#faq-sec .accordion-card:has(.btn-link) {
  border: 1px solid var(--color-3-op);
}
#faq-sec .accordion-card:has(.collapsed) {
  border: 1px solid var(--color-1);
}
#faq-sec .card-header {
  padding: 0;
  margin-bottom: 0;
  background: none;
  border: none;
}
#faq-sec .card-header a {
  padding: 18px 26px;
}
#faq-sec .card-body {
  padding: 0 28px 18px;
  color: #000;
}
#faq-sec .accordion-card a.btn.btn-link:focus {
  outline: none;
  box-shadow: none;
}
#faq-sec .accordion-card i {
  position: absolute;
  right: 20px;
  margin: -6px 0;
}
#faq-sec .accordion-card .btn {
  text-decoration: none;
  text-align: left;
  display: block;
  border-radius: 10px;
}
#faq-sec .accordion-card a.btn.btn-link {
  position: relative;
}
#faq-sec .accordion-card .btn-link:before {
  content: "\f182";
  font-size: 15px;
  top: 17px;
  right: 24px;
  position: absolute;
  font-family: 'uicons-bold-rounded';
  color: var(--color-1);
}
#faq-sec .accordion-card .collapsed:before {
  content: "\f18f";
}


/* Testimonial */

.testimonial-con{
  padding: 135px 0 200px;
}
.testimonial-con .testimonial_content h6{
  margin-bottom: 16px;
}
.testimonial-con .testimonial_content h2{
  margin-bottom: 40px;
}
.testimonial-con .testimonial-sideimage {
  position: absolute;
  top: -20px;
  left: 20px;
  transform: rotate3d(0, 1, 0, 180deg);
}
.testimonial-con .testimonial-sideimage i{
  font-size: 4em;
  color: var(--color-1);
  opacity: .5;
}
.testimonial-con .carousel-inner{
  max-width: 850px;
  margin: 0 auto;
}
.testimonial-con .testimonial-box ul {
  margin-bottom: 22px;
}
.testimonial-con .testimonial-box ul li {
  display: inline-block;
}
.testimonial-con .testimonial-box ul li i {
  font-size: 16px;
  line-height: 16px;
  color: var(--color-1);
}
.testimonial-con .testimonial-box p{
  margin-bottom: 28px;
  color: #000;
}
.testimonial-con .testimonial-box .lower_content{
  margin-bottom: 35px;
}
.testimonial-con .testimonial-box .name{
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  color: var(--color-1);
  font-family: "Urbanist", sans-serif;
}
.testimonial-con .carousel-indicators {
  margin: 0;
}
.testimonial-con .carousel-indicators li {
  opacity: 1;
  width: 60px;
  background: none;
  text-indent: 1px;
  margin: 0 10px;
  display: inline-block;
}
.testimonial-con .carousel-indicators li figure {
  border-radius: 100%;
  position: relative;
  width: 74px;
  height: 74px;
  line-height: 69px;
  text-align: center;
  border: 1px solid transparent;
}
.testimonial-con .carousel-indicators li img {
  border-radius: 100%;
  width: 60px;
}
/* Specific styles for Firefox */
@-moz-document url-prefix() {
  .testimonial-con .carousel-indicators li img {
      position: relative;
      right: 1px;
  }
  .testimonial-con .carousel-indicators li figure {
      line-height: 69px;
  }
}
.testimonial-con .carousel-indicators .active figure {
  border: 1px solid var(--color-1);
}
.testimonial-con .pagination_outer{
  position: relative;
}
.testimonial-con .carousel-control-prev,
.testimonial-con .carousel-control-next{
  opacity: 1;
}
.testimonial-con .carousel-control-prev i,
.testimonial-con .carousel-control-next i{
  font-size: 25px;
  top: 0;
  position: absolute;
  color: var(--color-1) !important;
  transition: all 0.3s ease-in-out;
}
.testimonial-con .carousel-control-prev i{
  left: 275px;
}
.testimonial-con .carousel-control-next i{
  right: 260px;
}
.testimonial-con .carousel-control-prev i:hover,
.testimonial-con .carousel-control-next i:hover{
  color: var(--color-2) !important;
}




/*-------------------------------------------------------------------------------
  
           About Page

-------------------------------------------------------------------------------*/



.cd-container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  background: #2B343A;
  padding: 0 10%;
  border-radius: 2px;
}
.cd-container::after {
  content: '';
  display: table;
  clear: both;
}



.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:30px 25px;
  height: 100%;
  border-radius: 20px;
  border: .5px solid #d7d4d4;
  color: #000;
  background-color: var(--color-3);
}


.name {
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-weight: 600;
  color: var(--color-1);
}

.position {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.feature-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: rgb(122, 122, 122);
  line-height: 30px;
}

.social-icons {
  width: 70px;
  display: flex;
  justify-content: space-between;
}

.team-image-wrapper {
  clip-path: circle(50% at 50% 50%);
  width: 130px;
  height: 130px;
}

.team-member-image {
  max-width: 100%;
}



/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/
@media only screen and (max-width:1200px){

  .navbar-nav li a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 16px;
  }
  

}



@media only screen and (max-width:991px){
  .navbar-collapse {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    text-align: center;
    background:var(--color-1);
    z-index: 99;
  }

  .fixed-top .navbar-collapse {
    top: 70px;
  }
  
  .navbar-nav li a {
    color: #fff;
  }
  
  .dropdown-item:active {
    background: var(--color-3);
  }

  .dropdown-menu li a {
    text-align: center;
    display: inline-block;
  }
}

@media only screen and (max-width:767px) {

  .benefit-sec .benefit_wrapper ul {
    display: block;
  }

  .benefit-sec .benefit_wrapper ul li {
    margin-bottom: 30px;
    text-align: center;
    justify-items: center;
  }

  .about-sec, .service-sec, .testimonial-con {
    padding: 60px 0 60px;
  }

  .about-sec .about_wrapper .about-image1 {
    height: auto;
  }

  .about-sec .about_wrapper .image img {
    height: auto;
    width: 100%;
  }

  .testimonial-con .carousel-control-next i {
    right: 80px;
  }

  .testimonial-con .carousel-control-prev i {
    left: 80px;
  }
}

@media only screen and (max-width: 600px) {

  .demo-gallery > ul > li a > img {
    max-height: 200px;
  }

  .carousel-control-prev {
    left: -50px;
  }

  .carousel-control-next {
    right: -50px;
  }

  .plr-100 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .plr-50 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-img .about-name {
    font-size: 20px;
  }

  .about-img .about-name {
    position: inherit;
  }

  #about .plr-50{
    padding-left: 20px;
    padding-right: 20px;
  }

  #contact .p-60{
    padding: 20px;
    text-align: center;
  }
  #contact h3{
    text-align: center;
  }
  .contact-details div{
    text-align: center !important;
  }
  

}


@media only screen and (max-width: 575px) {
  #contact .ptb-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 430px) {

  .navbar .navbar-brand img{
    max-width: 60px;
  }

}


@media only screen and (max-width: 320px) {
  #contact .justify-content-center:first-child{
    padding: 0 !important;
    padding-right: 0  !important;
    padding-left: 0  !important;
  }
  .h-captcha{
    transform: scale(.78);
    margin-left:-9vw;
  }
  h1{
    font-size:2.5rem  !important;
  }
}


/* about us page css */

        .title-section {
            background: url('img/about-bg.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        .title-section h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        .management-card {
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .footer {
            background-color: #343a40;
            color: white;
            padding: 20px 0;
        }


        .object-fit-height {
          height: 130px;
          object-fit: cover;
        }

.cursor-pointer {
  cursor: pointer;
}











