@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #000;
  overflow: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-family: "Nunito Sans", sans-serif;
  color: #000;
  line-height: normal;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #38373f;
  line-height: 24.82px;
  font-weight: 400;
}

p:first-letter {
  text-transform: uppercase;
}

a {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  color: #262262;
}

ul,
li,
ol,
li {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #000;
  list-style-type: none;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
select,
textarea {
  margin: 0 0 13px 0;
  padding: 12px 20px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: normal;
  width: 100%;
  outline: none;
  border: none;
  background: #f7f9fc;
  border-radius: 12px;
}

input[type="submit"] {
  margin: 10px 0;
  padding: 12px 22px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border: none;
  outline: none;
  background: #262262;
  transition: 0.5s;
  border-radius: 0;
}

input[type="submit"]:hover {
  background: #262262db;
}

textarea {
  height: 100px;
}

/*Back-to-top-button*/
#button {
  display: inline-block;
  background-color: #262262;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 15px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#button i {
  color: #fff;
  font-size: 18px;
}

#button:hover {
  cursor: poNunito Sans;
  background-color: #262262d9;
  color: #fff;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/*whatsapp-icon phone-icon*/
a.whatsapp-icon,
a.phone-icon {
  position: fixed !important;
  bottom: 30px;
  left: 27px;
  z-index: 33;
  background: #19a500;
  border-radius: 50px;
  font-size: 22px;
  color: #fff;
  transition: 0.6s;
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.whatsapp-icon:before,
a.phone-icon:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #29e507;
  box-shadow: 0 0 10px #29e507;
  animation: iconbtn 5s linear infinite forwards;
  z-index: -3;
}

a.phone-icon {
  padding: 13px 14px;
  bottom: 92px;
  background: #007eff;
  -webkit-text-stroke: 1px #fff;
  color: #007eff;
}

a.phone-icon:before {
  background: #007eff;
  box-shadow: 0 0 10px #007eff;
}

@keyframes iconbtn {
  from {
    transform: scale(1);
    opacity: 1;
    transition: 0.6s;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
    transition: 0.6s;
  }
}

/*heading*/
.heading,
.headingleft {
  font-size: 40px;
  color: #06050f;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 15px;
  line-height: 54.56px;
}

.heading small,
.headingleft small {
  display: block;
  font-size: 14px;
  color: #149a99;
  font-weight: 600;
  line-height: 19.1px;
  text-transform: uppercase;
  background: #edf7f7;
  border-radius: 50px;
  width: fit-content;
  padding: 7px 16px;
  margin: 0 auto 12px;
}

.headingleft {
  text-align: left;
  margin: 0 0 15px 0;
}

.headingleft small {
  margin: 0 0 12px 0;
}

.heading-content,
.headingleft-content {
  text-align: center;
  width: 50%;
  margin: 0 auto 30px;
}

.headingleft-content {
  text-align: left;
  margin: 0 0 30px 0;
}

.subheading {
  font-size: 18px;
  font-weight: 400;
  line-height: 22.32px;
  color: #000;
  position: relative;
  margin-bottom: 0;
}

.subheading:before {
  content: "";
  position: absolute;
  top: 57%;
  right: 30%;
  width: 32%;
  height: 7px;
  background: url(../images/Line.png) no-repeat;
  z-index: 9;
  transform: translateY(-50%);
}

/* second-btn */
.second-btn {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.second-btn i {
  font-size: 15px;
  transform: rotate(-45deg);
  margin-left: 7px;
}

/*offcanvas*/
.offcanvas-header h5,
.modal-header h5 {
  font-size: 24px;
  font-weight: 600;
  background: #fff;
}

.offcanvas-body input[type="text"],
.offcanvas-body input[type="email"],
.offcanvas-body input[type="number"],
.offcanvas-body select,
.offcanvas-body textarea {
  border: 1px dashed #149a99;
}

/*btn-primary*/
a.btn-primary,
a.btn-outline-primary {
  text-transform: capitalize;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid #149a99;
  background: #149a99;
  position: relative;
  transition: 0.4s;
  z-index: 0;
}

a.btn-outline-primary {
  margin-left: 0;
  background: none;
  color: #149a99;
  border: 1px solid #149a99;
  margin: 0 0 0 12px;
}

a.btn-outline-primary:hover {
  color: #fff;
}

a.btn-primary:after,
a.btn-outline-primary:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #262262;
  transition: all 0.4s ease-in;
  z-index: -1;
}

.btn-primary:hover:after,
.btn-outline-primary:hover:after {
  left: 0;
}

a.btn-primary i,
a.btn-outline-primary i {
  transition: all 0.4s ease-in;
  margin-left: 6px;
}

a.btn-primary:hover i,
a.btn-outline-primary:hover i {
  transform: rotate(-45deg);
}

/*smoicons*/
.smoicons ul li a {
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: 0px 0px 0 16px;
  transition: 0.6s;
  position: relative;
  z-index: 1;
}

.smoicons ul li a:hover {
  border-color: #262262;
  color: #555;
}

/* .smoicons ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262262;
  z-index: -1;
  transition: 0.5s;
  transform: scale(0);
  opacity: 0;
  border-radius: 10px;
}
.smoicons ul li a:hover:before {
  opacity: 1;
  transform: scale(1);
} */
.smoicons h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* topbar */
.topbar {
  padding: 15px 0;
  background-color: #149a99;
}

.topbar .topbar-content p {
  margin-bottom: 0;
}

.topbar .topbar-content p span {
  color: #fff;
  font-size: 20px;
}

.topbar .topbar-content a span i {
  margin-right: 10px;
}

.topbar .topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .smoicons {
  display: flex;
  align-items: center;
}

.topbar .smoicons ul {
  display: flex;
  align-items: center;
  justify-content: start;
}

/* topbar */
/*header*/
#header.black {
  background: #f5f4fa;
  box-shadow: 1px 2px 5px #00000005;
  margin-top: 0;
  border-bottom: 1px solid #26226114;
}

#header.black a:hover {
  color: #262262;
}

#header.black a.btn-primary {
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* transition: background 0.1s ease, color 0.1s ease; */
  background: #f5f4fa;
  border-bottom: 1px solid #26226114;
}

header a.btn-primary {
  float: right;
}

header a.logo img {
  width: 50%;
}

header .menubar ul li {
  position: relative;
}

header .menubar ul li a {
  font-size: 16px;
  color: #38373f;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 0 26px;
  transition: 0.4s;
  padding: 30px 0;
  position: relative;
}

header .menubar ul li a:before {
  position: absolute;
  content: "";
  bottom: 30px;
  right: 0;
  width: 0%;
  height: 1px;
  background: #262262;
  transition: all 0.4s ease-in;
  z-index: 1;
}

header .menubar ul li a:hover:before {
  width: 100%;
}

header .menubar ul li a i {
  font-size: 13px;
  color: #38373f;
  margin-left: 3px;
}

header .menubar ul li a:hover {
  color: #262262;
}

header .menubar ul li a.btn-primary:hover {
  color: #fff;
  border-color: #fff;
}

header .menubar ul li a:hover i {
  color: #262262;
}

header .menubar ul li .btn-primary {
  color: #000;
  background: #fff;
  margin-left: 50px;
}

.menubar ul li .dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 250px;
  background: #f5f4fa;
  z-index: 1;
  visibility: hidden;
  webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  transform-origin: top;
  transition: 0.3s;
  border-top: 0;
  border: 1px solid #e5e5e5;
  padding: 10px;
}

.menubar ul li.dropdown-wraper:hover .dropdown {
  visibility: visible;
  transform: rotateX(0deg);
  transition: all 500ms ease;
}

/* .menubar ul li .dropdown .dropdown-head {
  border-right: 1px solid #55555555;
  padding-right: 20px;
}
.menubar ul li .dropdown .dropdown-head h3 {
  font-size: 24px;
  font-weight: 600;
} 
.menubar ul li .dropdown .dropdown-head h3 i {
  font-size: 21px;
  margin-left: 5px;
}
.menubar ul li .dropdown .dropdown-head figure p.dropdown-para {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
  padding: 0 20px 0 0;
}
.menubar ul li .dropdown .dropdown-head figure p.dropdown-para a {
  display: block;
  margin: 20px 0 0 0;
  background: #fff;
  border-radius: 50px;
  width: fit-content;
  padding: 10px 20px;
  color: #000;
  font-weight: 500;
}*/
.menubar ul li .dropdown li a {
  padding: 6px 0;
}

.menubar ul li .dropdown li a:hover {
  transform: translateX(8px);
}

.dropdown-content {
  display: none;
}

.AffnetzShow {
  display: block;
}

header .headbtn .btn-outline-primary {
  margin: 0 20px 0 0;
}

/*slider*/
.slider {
  margin-bottom: 70px;
}

.slider figure img {
  width: 100%;
}

.slider .slider-item {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  display: flex;
  align-items: center;
}

.slider .slider-content {
  width: 40%;
}

.slider .slider-item h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 62.3px;
  margin-bottom: 16px;
}

.slider .slider-item p {
  font-size: 20px;
  color: #eee;
  line-height: 32.36px;
  margin-bottom: 45px;
}

.slider .slider-info {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 200px;
}

.slider .slider-info .smoicons {
  background: #ffffffeb;
  width: 50%;
  height: 100%;
  padding: 20px;
}

.slider .slider-info .smoicons ul li a {
  margin: 0 16px 0 0;
}

.slider .slider-info .smoicons p {
  margin: 0;
}

.slider .slider-info figure {
  width: 40%;
  height: 100%;
  position: relative;
}

.slider .slider-info figure i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.slider .slider-info figure img {
  height: 100%;
  filter: brightness(0.5);
}

.slider .btn-outline-primary {
  color: #fff;
}

/* about-us */
.about-us {
  margin-bottom: 70px;
}

/* about-us */
.about-us {
  margin-bottom: 60px;
}

.about-us figure {
  overflow: hidden;
  margin-right: 20px;
}

.about-us figure img {
  width: 100%;
  /*transition: all 0.3s linear;*/
  /*transform: scale(1.1);*/
}

.about-us figure:hover img {
  transform: scale(1);
}

.about-us figure.about-us-image img {
  height: 400px;
  object-fit: cover;
}

.about-us .about-us-content {
  margin-left: 20px;
}

.about-us .about-us-content ul,
.diverse-portfolio .diverse-portfolio-content ul {
  margin: 15px 0 30px 0;
}

.about-us .about-us-content ul li,
.diverse-portfolio .diverse-portfolio-content ul li {
  font-size: 16px;
  color: #06050f;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  padding-left: 22px;
  position: relative;
}

.about-us .about-us-content ul li:before,
.diverse-portfolio .diverse-portfolio-content ul li:before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 7px;
  color: #fff;
  line-height: 8px;
  font-weight: 800;
  background: #149a99;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

/* diverse-portfolio */
.diverse-portfolio {
  margin-bottom: 70px;
}

.diverse-portfolio ul.tab-menu {
  border: 1px solid #eee;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 5px;
}

.diverse-portfolio ul.tab-menu li {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  position: relative;
  background: #fff;
  border-radius: 50px;
  z-index: 1;
  padding: 12px 26px;
  margin-right: 10px;
}

.diverse-portfolio ul.tab-menu li.active {
  color: #fff;
  background: #149a99;
}

.diverse-portfolio .diverse-portfolio-content {
  margin-right: 20px;
}

.diverse-portfolio figure img {
  width: 100%;
}


/* partner */
.partner {
  margin-bottom: 70px;
}

.partner .partner-carousel {
  justify-content: space-around;
}

.partner .partner-carousel-item {
  margin: 10px;
  width: 180px;
}

.partner figure img {
  width: 100%;
  height: 103px;
}

/* woods */
.woods {
  margin-bottom: 70px;
  padding: 70px 0;
  background: #f8f8fb;
}

.woods .woods-carousel-item {
  margin: 10px;
  width: 900px;
  height: 450px;
}

.woods .woods-carousel-item figure {
  width: 50%;
  height: 100%;
}

.woods .woods-carousel-item .woods-carousel-content {
  width: 50%;
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.woods .woods-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woods .woods-carousel ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 13%;
  height: 40px;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.woods .woods-carousel ul.slick-dots li.slick-active {
  background: #262262;
  width: 32px;
}

.woods .woods-carousel ul.slick-dots li {
  transition: 0.6s;
  width: 25px;
  height: 8px;
  border-radius: 10px;
  margin: 0 5px;
  background: #26226283;
  cursor: pointer;
}

.woods .woods-carousel ul.slick-dots li button {
  font-size: 0;
  border: none;
}

/* gallery */
.gallery {
  margin-bottom: 70px;
  text-align: center;
}

.gallery img {
  width: 100%;
}

.gallery .col-lg-3:nth-child(1) figure img,
.gallery .col-lg-3:nth-child(3) figure img {
  height: 400px;
  object-fit: cover;
}

.gallery .btn-primary {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-swiper {
  padding: 20px 0;
}

.team .swiper-slide {
  margin: 10px;
  box-shadow: 0px 3px 5px 0px #696969;
  border-radius: 10px;
  height: 450px;
}

.team .swiper-slide h3 {
  font-size: 20px;
  font-weight: 600;
}

.team .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.team .swiper-slide .content {
  padding: 30px;
}

/* latest-article */
.latest-article {
  margin-bottom: 70px;
}

.latest-article .heading {
  width: 40%;
}

.latest-article .latest-article-item {
  margin: 0 10px;
}

.latest-article .latest-article-item figure {
  height: 300px;
}

.latest-article .latest-article-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-article .latest-article-item span {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

.latest-article .latest-article-item h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 32.28px;
  margin: 0;
}

.latest-article .latest-article-item h3 small {
  display: block;
  color: #ffffff99;
}

.latest-article .latest-article-item span i {
  font-size: 25px;
  color: #fff;
}

/* footer */

footer {
  background: #f5f4fa;
  padding: 60px 0 40px 0;
}

footer .subcribtion {
  width: 50%;
  margin: 0 auto 50px;
  text-align: center;
}

footer .subcribtion h2 {
  font-size: 20px;
  font-weight: 700;
  color: #06050f;
  margin-bottom: 20px;
}

footer .subcribtion form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .subcribtion form input[type="email"] {
  width: 70%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0;
  border-radius: 0;
  padding: 13px 20px;
  font-size: 20px;
}

footer .subcribtion form .btn-primary {
  width: 28%;
}

footer figure img {
  width: 200px;
}

footer .footer-logo p {
  margin-bottom: 35px;
}

footer .footer-logo h4 {
  color: #06050f;
  margin-bottom: 20px;
}

footer .footer-logo .smoicons ul li a {
  margin: 0 10px 20px 0;
}

footer h3 {
  font-size: 22px;
  font-weight: 600;
  color: #06050f;
  margin: 12px 0;
}

footer .footer-menu li a {
  font-size: 18px;
  font-weight: 400;
  color: #06050f;
  margin-bottom: 8px;
  position: relative;
  transition: all 0.4s ease;
}

footer .footer-menu li a:before {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0;
  width: 0%;
  height: 1px;
  background: #262262;
  transition: all 0.4s ease-in;
  z-index: 1;
}

footer .footer-menu li a:hover:before {
  width: 100%;
}

/* copyright */
footer .copy-right {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

footer .copy-right p {
  color: #06050f;
  margin: 0;
}

footer ul.copy-right-menu li a {
  font-size: 14px;
  font-weight: 400;
  color: #06050f;
  margin: 0 8px;
}

footer .smoicons ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* contact-us */

/* .contact-us {
  margin: 0px 0 60px 0;
}

.contact-us .contact-form {
  padding: 50px 80px 50px 50px;
  border: 1px solid #e7e6ed;
  height: 500px;
}

.contact-us .contact-form input[type="text"],
.contact-us .contact-form input[type="email"],
.contact-us .contact-form input[type="number"],
.contact-us .contact-form select,
.contact-us .contact-form textarea {
  border: 0;
  background: #e7e6ed;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.contact-us .contact-form input[type="submit"] {
  position: relative;
}

.contact-us .contact-form input[type="submit"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  font-size: 15px;
  color: #000;
}

.contact-us .contact-form label {
  font-size: 14px;
  font-weight: 400;
  color: #181514;
  margin: 0 0 10px 0;
}

.contact-us .contact-details {
  background: #f7f9fc;
  border: 1px solid #0000001a;
  padding: 40px 40px 30px 40px;
  margin-bottom: 20px;
}

.contact-us .contact-details h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-us .contact-details ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.contact-us .contact-details ul li figure {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #262262;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0;
}

.contact-us .contact-details ul li p {
  font-size: 16px;
  color: #464443;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.contact-us .contact-details ul li p a {
  color: #464443;
  display: block;
}

.contact-us .contact-details ul li:last-child p {
  width: 50%;
}

 */
.contact-us iframe {
  height: 500px;
  width: 100%;
}

/* project-team */
.project-team {
  margin-bottom: 80px;
}

.project-team .headingleft {
  color: #000;
}

.career-counter figure.career-counter-img img {
  width: 100%;
}

/* career-counter */
.career-counter {
  border-bottom: 1px solid #00000014;
}

.career-counter .counter-detail {
  border-right: 1px solid #00000014;
  height: 100%;
  padding: 50px 20px 25px 20px;
}

.career-counter .col-lg-3:last-child .counter-detail {
  border-right: 0;
}

.career-counter .counter-detail .inner-counter-item {
  margin-right: 20px;
}

.career-counter .counter-detail .inner-counter-item h4 {
  font-size: 14px;
  font-weight: 400;
  color: #181514;
  margin-bottom: 20px;
}

.career-counter .counter-detail .counter-content ul li i {
  font-size: 15px;
  color: #262262;
  margin-right: 6px;
}

.career-counter .col-lg-3:first-child .counter-detail .counter-content span {
  font-size: 13px;
  font-weight: 400;
  margin: 10px 0 0 0;
}

.career-counter .col-lg-3:first-child .counter-detail .counter-content span h3 {
  font-size: 13px;
  margin: 0;
  font-weight: 400;
}

.career-counter .counter-detail figure {
  margin: 0 20px 0 0;
}

.career-counter .counter-detail .counter-content span,
.career-counter .counter-detail .counter-content span h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.career-counter .counter-detail .counter-content span h3 {
  margin: 0;
}

.career-counter .counter-detail .counter-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: #464443;
  margin-bottom: 0;
}

/* career-detailsp */
/* breadcrumb */
.breadcrumb {
  background: #149a9914;
  padding: 80px;
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumb h1 {
  font-size: 40px;
  font-weight: 700;
  width: 50%;
  margin: 0 auto 25px;
}

.breadcrumb h1 small {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #149a99;
  padding-bottom: 20px;
}

.breadcrumb p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 25.89px;
  width: 36%;
  margin: 0 auto;
}

.career-details {
  margin-bottom: 60px;
}

.career-details-bread h1 {
  width: 60%;
}

.career-details-bread h1:before {
  width: 100%;
}

.career-details .career-details-content h2,
.career-details .job-key-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.career-details .career-details-content p {
  margin-bottom: 40px;
}

.career-details .career-details-content p a {
  color: #262262;
}

.career-details .career-details-content ul {
  margin-bottom: 40px;
}

.career-details .career-details-content ul li {
  padding-left: 16px;
  margin-bottom: 15px;
  position: relative;
}

.career-details .career-details-content ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #747372;
  border-radius: 50px;
}

.career-details .career-details-content ul li p {
  margin-bottom: 0px;
}

.career-details .career-details-content ul li p a {
  display: block;
}

.career-details .job-key-info {
  background: #f7f9fc;
  padding: 30px;
}

.career-details .job-key-info ul li p strong {
  color: #181514;
}

.career-details .job-key-info .career-details-skills ul {
  margin-bottom: 20px;
}

.career-details .job-key-info .career-details-skills ul li {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #ccccccba;
  border-radius: 50px;
  padding: 7px 18px;
  margin-right: 10px;
  flex-wrap: wrap;
}

.career-details .job-key-info .job-key-info-btn {
  margin-top: 30px;
}

.career-details .job-key-info .job-key-info-btn .btn-primary {
  width: 75%;
  padding: 13px 0;
}

.career-details .job-key-info .job-key-info-btn figure {
  width: 45px;
  height: 45px;
  background: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.job-key-info ul {
  margin-bottom: 30px;
}

.job-key-info ul li {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.job-key-info ul li figure {
  height: 20px;
  width: 20px;
}

.job-key-info ul li figure img {
  width: 100%;
}

.job-key-info ul li h4 {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.job-key-info ul li small {
  display: block;
  color: #00000099;
  font-weight: 400;
}

.job-key-info ul {
  flex-wrap: wrap;
}

.job-key-info a.button-flex {
  margin: 0px 0 20px 0;
}

.offcanvas-form .offcanvas-body {
  padding: 20px;
}

/* Terms & Condition */
.condition-content .content {
  margin-bottom: 50px;
}

.condition-content .content h3 {
  margin-bottom: 25px;
}

.condition-content .content ul {
  margin-top: 32px;
}

.condition-content .content ul li p {
  position: relative;
  padding-left: 10px;
}

.condition-content .content ul li p::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  top: 10px;
  background-color: #000000ba;
}

/* benefits */
.benefits {
  margin-bottom: 80px;
}

.benefits .heading-content {
  width: 80%;
  font-size: 16px;
  margin-bottom: 30px;
}

.benefits .benefit-items {
  background: #f7f9fc;
  border: 1px solid #0000000f;
  padding: 40px 30px 25px 30px;
  height: 100%;
}

.benefits .col-lg-4:nth-child(2) .benefit-items,
.benefits .col-lg-4:nth-child(4) .benefit-items,
.benefits .col-lg-4:nth-child(6) .benefit-items {
  background: rgba(255, 255, 255, 1);
}

.benefits .benefit-items figure {
  margin-bottom: 20px;
}

.benefits .benefit-items figure img {
  width: 100px;
  height: 100px;
  background: #eee;
}

.benefits .benefit-items h3 {
  font-size: 18px;
  color: #181514;
  font-weight: 500;
}

/* main-services */
.main-services {
  margin-bottom: 50px;
}

.main-services .headingleft,
.main-services .subheading {
  color: #fff;
}

.main-services .subheading {
  margin-bottom: 20px;
}

.main-services .heading-content {
  font-size: 16px;
  color: #ccc;
  line-height: 25px;
  width: 80%;
}

.main-services .main-services-flex {
  background: #211e1d;
  box-shadow: 4px 4px 14px 0px #0000000a;
  padding: 30px;
  margin-bottom: 26px;
}

.main-services .main-services-flex h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 30.4px;
  width: 20%;
}

.main-services .main-service-items {
  margin-bottom: 20px;
}

.main-services .main-service-items ul {
  width: 100%;
}

.main-services .main-service-items ul li {
  width: 50%;
  padding-left: 16px;
  margin-bottom: 15px;
  position: relative;
}

.main-services .main-service-items ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  outline: 1px solid #ffffff66;
  border-radius: 50px;
  transform: translateY(-50%);
}

.main-services .main-service-items ul li p {
  font-size: 14px;
  color: #ffffffcc;
  line-height: normal;
  margin: 0 6px 0 0;
}

.main-services .main-service-items ul li p strong {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
}

.main-services .main-services-flex .main-service-items a.btn-primary {
  width: 20%;
}

.main-services .main-services-flex ul.main-service-items-btn li {
  color: #fff;
  border: 1px solid #ffffff1a;
  border-radius: 50px;
  padding: 10px 20px;
  margin-right: 10px;
}

/* career-why-us */
.career-why-us {
  background: none;
  padding-top: 0;
}

.career-why-us .headingleft span {
  display: inline;
}

.career-why-us .why-us-btn {
  color: #000;
  border: 1px solid #000;
  background: none;
}

/* gallery */
.gallery .subheading {
  width: 34%;
  margin-bottom: 30px;
}

.gallery ul li {
  width: 20%;
}

.gallery ul li figure img {
  width: 100%;
}

/* aboutp */
.about-bread {
  margin: 120px 0 80px 0;
}

.about-bread .subheading {
  width: 40%;
  margin-bottom: 16px;
}

.about-bread h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 84.1px;
  width: 80%;
  margin-bottom: 50px;
}

.about-bread h1 span {
  font-weight: 400;
}

.about-bread figure img {
  width: 100%;
}

.aboutp-why-us {
  margin-bottom: 60px;
}

/* partner */
.partner h4 {
  font-weight: 500;
  text-align: right;
}

/* it-solutions */
.it-solutions {
  margin-bottom: 80px;
}

.it-solutions .subheading {
  width: 65%;
  margin-bottom: 30px;
}

.it-solutions figure img {
  width: 100%;
}

.it-solutions figure ul {
  position: absolute;
  bottom: 20px;
  left: 25%;
  background: #fff;
  padding: 25px;
  box-shadow: 4px 4px 14px 0px #0000000a;
}

.it-solutions figure ul li h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.76px;
  margin: 0 0 0 16px;
}

.it-solutions figure ul li h5 small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #00000099;
}

.it-solutions figure ul li img {
  width: 60px;
}

.it-solutions .it-solutions-content .headingleft {
  width: 85%;
}

.it-solutions .it-solutions-content .headingleft span {
  display: inline;
}

.it-solutions .it-solutions-content ul {
  margin: 30px 0;
}

.it-solutions .it-solutions-content ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.it-solutions .it-solutions-content ul li:before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 7px;
  color: #fff;
  line-height: 8px;
  font-weight: 800;
  background: #262262;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.it-solutions .it-solutions-content .accordion-item {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.it-solutions .it-solutions-content .accordion-item h3 button {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.it-solutions .it-solutions-content .accordion-button:not(.collapsed)::after {
  content: "";
  color: #000;
}

.it-solutions .it-solutions-content .accordion-button::after {
  content: "+";
  color: #000;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid #000;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* trusted */
.trusted {
  margin-bottom: 80px;
  position: relative;
  padding: 0 0 60px 0;
}

.trusted:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f7f9fc;
  width: 75.5%;
  height: 80%;
  z-index: -1;
}

.trusted figure.trusted-img {
  width: 70%;
}

.trusted figure.trusted-img .trusted-views {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  background: #262262;
  padding: 30px;
}

.trusted figure.trusted-img .trusted-views img {
  filter: none;
}

.trusted figure.trusted-img h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 20px 0 0 0;
}

.trusted figure.trusted-img img {
  width: 100%;
  filter: brightness(0.6);
}

.trusted figure.trusted-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 46px;
  color: #262262;
}

.trusted .counter {
  border: 1px solid #3232321a;
}

.trusted .counter .counter-detail {
  border-right: 1px solid #3232321a;
}

.trusted .counter .counter-detail h3,
.trusted .counter .counter-detail h4,
.trusted .counter .counter-detail span {
  color: #000;
}

/* main-service */
.main-service {
  margin-bottom: 80px;
}

.main-service .main-service-item figure img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.main-service .main-service-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 24.8px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 100%);
  margin: 0;
  width: 100%;
  padding: 30px;
}

.main-service .main-service-item h3 small {
  display: block;
  font-size: 14px;
  color: #ff4500;
  font-weight: 400;
  margin-bottom: 10px;
}

/* team */
.team {
  margin-bottom: 110px;
}

.team .headingleft span {
  color: #000;
  font-weight: 400;
  display: block;
}

.team .team-carousel .team-carousel-items {
  margin: 10px;
}

.team .team-carousel figure {
  margin-bottom: 25px;
}

.team .team-carousel figure img {
  width: 100%;
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
}

.team .team-carousel h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.8px;
  text-align: center;
  margin-bottom: 0;
}

.team .team-carousel h3 small {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
}

.team .team-carousel .fa-arrow-left-long,
.team .team-carousel .fa-arrow-right-long {
  position: absolute;
  right: 0;
  bottom: -60px;
  cursor: pointer;
  font-size: 15px;
  color: #262262;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.team .team-carousel .fa-arrow-left-long {
  right: 5%;
}

/* servicep  */
.servicep-bread {
  background: url(../images/service-bg.jpg) no-repeat right center / cover;
  margin-top: 85px;
}

.servicep-bread:before {
  background: url(../images/service-shape.png) no-repeat center center / cover;
}

.servicep-bread h1 {
  color: #fff;
}

.servicep-bread p {
  color: #fff;
}

.servicep-bread h1:before {
  background: url(../images/service-line.png) no-repeat center center / cover;
}

/* our-solution */
.our-solution {
  margin-bottom: 60px;
}

.our-solution .headingleft span {
  color: #000;
  font-weight: 400;
}

.our-solution .heading-content {
  margin: 90px 0 0 0;
  width: 60%;
}

.our-solution .btn-primary {
  float: right;
}

.our-solution .our-solution-item {
  background: #f0edea;
  padding: 38px;
  height: 100%;
}

.our-solution .col-lg-3:nth-child(5) .our-solution-item {
  background: #fcecf5;
}

.our-solution .col-lg-3:nth-child(6) .our-solution-item {
  background: #f2edff;
}

.our-solution .our-solution-item figure {
  margin-bottom: 30px;
}

.our-solution .our-solution-item figure img {
  width: 60px;
}

.our-solution .our-solution-item h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24.8px;
  margin-bottom: 16px;
}

/* main-servicep */
.main-servicep .main-services-flex {
  padding: 30px 30px 0px 30px;
}

.main-servicep .main-servicep-items span {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff1a;
  width: 10%;
}

.main-servicep .main-servicep-items {
  transition: 5s;
}

.main-servicep .main-servicep-items figure,
.main-servicep .main-servicep-items p {
  transition: 1.8s;
  display: none;
}

.main-servicep .active figure,
.main-servicep .active p {
  display: block;
  transition: 1.8s;
}

/* .main-servicep
  .main-services-flex:first-child
  .main-servicep-items
  .main-servicep-info
  figure,
.main-servicep
  .main-services-flex:first-child
  .main-servicep-items
  .main-servicep-info
  p {
  display: block;
} */

.main-servicep .main-servicep-items:hover .main-servicep-info figure,
.main-servicep .main-servicep-items:hover .main-servicep-info p {
  display: block;
  transition: 1.8s;
}

.main-servicep .main-servicep-items .main-servicep-info {
  width: 65%;
}

.main-servicep .main-servicep-items .main-servicep-info h3 {
  width: 40%;
  margin-bottom: 20px;
}

.main-servicep .main-servicep-items .main-servicep-info ul {
  margin-bottom: 30px;
}

.main-servicep .main-servicep-items .main-servicep-info p {
  color: #ffffff99;
  width: 70%;
  margin-bottom: 20px;
  transition: all 1.8s ease;
}

.main-servicep .main-servicep-items .main-servicep-info figure {
  transition: all 1.8s ease;
}

.main-servicep .main-servicep-items .main-servicep-info figure img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 1.8s ease;
}

.main-servicep .main-servicep-items a.btn-primary {
  width: 20%;
  background: #181514;
  color: #fff;
  padding: 15px 20px;
}

/* partner */
.partner-flex .headingleft {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 0;
}

/* service-details */
.service-details {
  border-bottom: 1px solid #0000001a;
  margin: 120px 0 60px 0;
  padding: 0 0 50px 0;
}

.service-details .service-details-slider figure img {
  width: 100%;
}

.service-details .service-details-slider .fa-arrow-left-long,
.service-details .service-details-slider .fa-arrow-right-long {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 15px;
  color: #262262;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.service-details .service-details-slider .fa-arrow-left-long {
  left: 5%;
}

.service-details h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-details ul li {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #0000001a;
  border-radius: 50px;
  padding: 7px 18px;
  margin-right: 10px;
}

/* service-overview */
.service-overview {
  margin-bottom: 80px;
}

.service-overview .headingleft {
  margin: 0 0 20px 0;
}

.service-overview .service-overview-content p {
  width: 47%;
}

/* service-details-our-solution */
.service-details-our-solution {
  border-top: 1px solid #0000001a;
  border-bottom: 1px solid #0000001a;
}

.service-details-our-solution .our-solution-item {
  background: #fdf1ed;
}

.service-details-our-solution .col-lg-3:nth-child(2) .our-solution-item,
.service-details-our-solution .col-lg-3:nth-child(4) .our-solution-item {
  background: #fff;
}

/* asked-and-Question */
.asked-and-Question {
  margin-bottom: 60px;
}

.asked-and-Question .heading-content {
  margin: 40px 0 30px 0;
}

.asked-and-Question .asked-and-Question-info {
  border: 1px solid #0000001a;
  padding: 30px;
  height: 100%;
}

.asked-and-Question .asked-and-Question-info h3 {
  font-size: 18px;
  font-weight: 500;
}

.asked-and-Question .asked-and-Question-info p a {
  display: block;
  width: fit-content;
  color: #262262;
}

/* portfolio */

.portfolio-bread {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%),
    url(../images/portfolio-bg.jpg) no-repeat center center / cover;
}

.portfolio-bread:before {
  display: none;
}

.portfolio {
  margin-bottom: 60px;
}

.portfolio .portfolio-item p {
  margin-bottom: 20px;
}

.portfolio .portfolio-item ul li {
  border: 1px solid #ddddddad;
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 10px;
  display: inline-block;
}

.portfolio .portfolio-item span {
  position: absolute;
  top: 5%;
  right: 9.5%;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

.portfolio .portfolio-item .feature-content {
  height: 75%;
}

/* portfolio-details */
.portfolio-details-hero {
  margin: 160px 0 80px 0;
}

.portfolio-details-hero h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.portfolio-details-hero ul.portfolio-details-hero-list li {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #0000001a;
  border-radius: 50px;
  padding: 7px 18px;
  margin-right: 10px;
}

.portfolio-details-hero .portfolio-details-hero-item {
  border: 1px solid #0000001a;
  padding: 30px 40px;
}

.portfolio-details-hero .portfolio-details-hero-item ul li {
  margin-bottom: 10px;
}

.portfolio-details-hero .portfolio-details-hero-item .smoicons {
  border-top: 1px solid #0000001a;
  padding-top: 30px;
  margin-top: 30px;
}

.portfolio-details-hero .portfolio-details-hero-item .smoicons h4 {
  font-size: 18px;
  margin: 0 30px 10px 0;
}

.portfolio-details {
  border-bottom: 0;
  margin: 0 0 60px 0;
  padding: 0;
}

.projects-overview ul {
  margin: 25px 0 40px 0;
}

.projects-overview ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.projects-overview ul li:before {
  content: "\f00c";
  position: absolute;
  top: 6px;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  color: #000;
  font-weight: 800;
  border-radius: 50px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #000;
}

.portfolio-why-us {
  background: none;
}

.portfolio-why-us .headingleft span {
  display: inline;
}

/* terms */
.terms {
  margin-bottom: 80px;
}

.terms p span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  position: relative;
  padding: 0 65px 0 22px;
  margin-right: 15px;
}

.terms p span:before {
  content: "\f0da";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 800;
  color: #262262;
  transform: translateY(-50%);
}

.terms p span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
}

.terms .terms-content {
  margin-bottom: 40px;
}

.terms h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.terms ul li {
  position: relative;
  padding-left: 16px;
}

.terms ul {
  margin-bottom: 40px;
}

.terms ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50px;
}

.terms ul li p strong {
  color: #181514;
}

.terms h3 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #0000001a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* faqs */

.faq-form-head {
  border: 1px solid #00000066;
  padding: 100px;
  height: 400px;
}

.faq-form-head .headingleft {
  margin: 0 0 20px 0;
  width: 50%;
}

.faq-form-head .subheading {
  width: 40%;
}

.faq-form-head .subheading:before {
  right: -27%;
}

.faq-form .faq-info {
  padding: 50px;
  box-shadow: 4px 4px 14px 0px #00000014;
  width: 84%;
  margin: -120px auto 80px;
  background: #fff;
}

.faq-form .faq-info input[type="submit"] {
  width: 25%;
}

/* Not Found */
.not-found {
  text-align: center;
  width: 50%;
  margin: 85px auto;
}

.not-found figure {
  width: 50%;
  margin: 0 auto 30px;
}

.not-found figure img {
  width: 100%;
}

.not-found .heading {
  margin: 0 auto 20px;
}

.not-found .heading-content {
  margin-bottom: 30px;
}

.not-found .btn-primary i {
  -webkit-text-stroke: 1.9px #fff;
  color: #262262;
  transform: rotate(0);
}

/* purusottam-business */
.purusottam-business {
  background: #f5f4fa;
  padding: 70px 0;
  margin-bottom: 60px;
}

/* md-breadcom */
.managing-director {
  padding-top: 100px;
  margin-bottom: 80px;
}

.managing-director:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: #149a99;
  z-index: -2;
}

.managing-director .purusottam-business {
  background: none;
}

.md-breadcom {
  margin-bottom: 50px;
}



.directorp .md-breadcom {
  background: url(../images/director-bg.jpg) no-repeat bottom center/cover;
  padding: 0 0 100px 0;
  position: relative;
  margin-top: 120px;
  margin-bottom: 20px;
  z-index: 1;
}

.directorp .md-breadcom:before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 30%;
  background: #f5f4fa;
  z-index: -1;
}

.md-breadcom figure {
  height: 600px;
}

.md-breadcom figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: -20px 20px 8px 0px #00000038;
}

.md-breadcom h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 60px;
  width: 80%;
}

.md-breadcom small {
  font-size: 20px;
  font-weight: 400;
  color: #06050f;
  display: block;
  margin-top: 15px;
}

.md-breadcom p {
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  margin: 20px 0 30px 0;
  text-align: justify;
}

.md-breadcom span {
  font-size: 24px;
  font-weight: 400;
  margin-top: 50px;
}

/* md-breadcom */
/* purusottam-content */
.purusottam-content .purusottam-content {
  margin-bottom: 100px;
}

.purusottam-content .purusottam-content {
  box-shadow: -20px 20px 8px 0px #00000024;
  padding: 0px 0 40px 0;
  background: #fff;
}

.purusottam-content p {
  font-size: 20px;
  font-weight: 400;
}

.purusottam-content .purusottam-card {
  padding: 50px 50px 0 50px;
}

.purusottam-content .purusottam-card p span {
  font-weight: 700;
  color: #000;
}

/* purusottam-content */

/* purusottam-business */
.purusottam-business .business-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: -10px 10px 8px 0px #00000024;
  padding: 0 30px 0 0;
  background: #fff;
}

.purusottam-business .business-card figure {
  height: 150px;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.purusottam-business .business-card figure img {
  width: 100%;
}

.purusottam-business .business-card h3 {
  width: 65%;
  padding: 20px;
}

.purusottam-business .business-card h3 small {
  display: block;
  color: #06050f;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

/* purusottam-business */

/* founder-banner */

.founder-banner {
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.7) 100%),
    url(../images/founder-banner.jpg) no-repeat center / cover;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  margin-bottom: 50px;
}

.founder-banner .content {
  width: 50%;
  position: absolute;
  bottom: 50px;
}

.founder-banner h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
}

.founder-banner p {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

/* founder-banner */

/* founder-content */
.founder-content {
  margin: 100px 0;
}

.founder-content h1 {
  font-size: 54px;
  font-weight: 700;
  /* margin-bottom: 50px; */
}

.founder-content .founder-box {
  border: 1px solid #0000001a;
  padding: 100px;
}

.founder-content .founder-box p {
  width: 81%;
  text-align: justify;
  margin-top: 50px;
}

.woods .woods-carousel-item figure {
  width: 50%;
  height: 100%;
}

.woods .woods-carousel-item .woods-carousel-content {
  width: 50%;
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.woods .woods-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* founder carousel */
.awards {
  margin-bottom: 80px;
}

.awards .awards-carousel-item {
  height: 300px;
}

.awards .awards-carousel-item figure {
  width: 40%;
  height: 100%;
}

.awards .awards-carousel-item .awards-carousel-content {
  width: 60%;
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 30px 30px 15px;
}

.awards .awards-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards .awards-carousel ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 13%;
  height: 40px;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.awards .awards-carousel ul.slick-dots li.slick-active {
  background: #262262;
  width: 32px;
}

.awards .awards-carousel ul.slick-dots li {
  transition: 0.6s;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 0 5px;
  background: #26226283;
  cursor: pointer;
}

.awards .awards-carousel ul.slick-dots li button {
  font-size: 0;
  border: none;
}

/* founder-content */

/* Board Member */
.committee {
  margin-bottom: 60px;
}

.board-memberp .committee {
  margin-bottom: 0px;
}

/*.careersp .committee,*/
/*.sustainabilityp .committee,*/
/*.business .committee,*/
/*.contactp .committee {*/
/*  background: linear-gradient(to bottom right,*/
/*      rgb(0, 0, 0, 0.4),*/
/*      rgb(0, 0, 0, 0.4)),*/
/*    url(../images/team.jpg) no-repeat center center / cover;*/
/*}*/

.careersp .committee h1,
.careersp .committee p,
.sustainabilityp .committee h1,
.sustainabilityp .committee p,
.business .committee h1,
.business .committee p,
.contactp .committee h2,
.contactp .committee h2 small,
.contactp .committee p {
  color: #fff;
}

.business .committee .content h2,
.business .committee .content h2 small {
  color: #fff;
}



.committee .content {
  text-align: left;
  padding: 50px 100px;
}

.committee .content h2 {
  font-size: 40px;
  font-weight: 800;
}

.committee .content small {
  font-size: 17px;
  font-weight: 500;
  display: block;
  background: #149a9914;
  width: fit-content;
  margin: 0 auto 15px;
  padding: 7px 15px;
  border-radius: 50px;
}

.committee .content p {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

/* Board Member */

/* committee-banner */
.committee-banner {
  background: url(../images/team.jpg) no-repeat center / cover;
  height: 400px;
  margin-bottom: 50px;
}

/* committee-banner */

/* members */
.members .row {
  margin-bottom: 50px;
}

.members figure {
  border: 10px solid #f3f3f3;
}

.members .member-items {
  transition: all 0.2s linear;
  padding: 0 0 10px 0;
}

.members .member-items:hover figure {
  border-color: transparent;
}

.members .member-items:hover {
  box-shadow: 1px 10px 5px #26226209;
  transform: translate(-10px, -10px);
}

.members figure img {
  width: 100%;
}

.members .col-lg-4 {
  margin-bottom: 25px;
}

.members h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.members h3 small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
}

.members .member-sec h4 {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin-bottom: 25px;
}

.members .member-sec {
  margin-top: 50px;
}

.members .member-sec h4::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #149a99;
}

.member-career {
  background: #262262;
  padding: 70px;
}

.member-career h2 {
  color: #fff;
  margin-bottom: 25px;
}

.member-career p {
  color: #eee;
  margin-bottom: 40px;
}

.member-career figure img {
  width: 100%;
}

/* members */
/* .vision-member */
.vision-member .vision-para {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.vision-member .vision-content {
  margin-bottom: 70px;
}

.vision-member .vision-content .vision-item {
  border-right: 1px solid #ddd;
  padding-right: 30px;
  height: 100%;
}

.vision-member .vision-content .vision-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.vision-member .vision-content .vision-item p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.vision-member .vision-content .col-lg-4:last-child .vision-item {
  border-right: 0;
  padding-right: 0;
}

.vision-member .vision-content ul li {
  font-size: 16px;
  color: #06050f;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 22px;
  position: relative;
}

.vision-member .vision-content ul li:before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 7px;
  color: #fff;
  line-height: 8px;
  font-weight: 800;
  background: #149a99;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

/* mission-vision */
.mission-vision {
  margin-bottom: 70px;
}

.mission-vision .headingleft {
  color: #fff;
  margin-bottom: 25px;
}

.mission-vision .vision-counter {
  background: #262262;
  padding: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mission-vision .vision-counter .counter-detail span,
.mission-vision .vision-counter .counter-detail span h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.mission-vision .vision-counter .counter-detail h4 {
  font-size: 16px;
  color: #ffffff99;
  font-weight: 400;
}

.mission-vision figure img {
  width: 100%;
}

figure {
  margin: 0;
}

/* our-mission */
.our-mission {
  margin-bottom: 70px;
}

.our-mission .our-mission-content,
.our-mission .our-mission-img {
  margin-right: 40px;
}

.our-mission figure img {
  width: 100%;
  box-shadow: -20px 20px 8px 0px #00000038;
}

.our-mission ul li {
  font-size: 16px;
  color: #06050f;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 22px;
  position: relative;
}

.our-mission ul li:before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 7px;
  color: #fff;
  line-height: 8px;
  font-weight: 800;
  background: #149a99;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

/* core-value */
.core-value figure img {
  width: 100%;
  margin-bottom: 50px;
}

/* .vision-member */
/* .mission-vision .vision-sec h2 {
  font-size: 40px;
  font-weight: 700;
}

.mission-vision .vision-sec p {
  font-size: 32px;
  font-weight: 700;
}

.mission-vision .vision-sec .vision-num {
  display: flex;
}

.mission-vision .vision-sec .vision-num small {
  display: block;
  margin-top: 15px;
} */

.our-mission h2 {
  font-size: 40px;
  font-weight: 700;
}

/* our-history */
.our-historyp .committee h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 auto 10px;
}

.our-story {
  margin-bottom: 70px;
}

.our-story .our-story-content {
  padding-right: 30px;
}

.our-story .our-story-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.our-story figure.our-story-img {
  background: #2622621a;
  margin: 0;
  padding: 60px;
}

.our-story figure.our-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.history-sec figure img {
  width: 100%;
}

/* counter */
.counter {
  background: #262262;
  padding: 50px 0;
  margin-bottom: 60px;
  position: relative;
}

.counter:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #262262;
  z-index: -1;
}

.counter .counter-detail {
  border-right: 1px solid #ffffff3d;
  padding-right: 30px;
  text-align: center;
}

.counter .col-lg-3:last-child .counter-detail {
  border-right: 0;
  margin-right: 0;
}

.counter .counter-detail h3 {
  font-size: 42px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.counter .counter-detail i {
  font-size: 38px;
  color: #fff;
}

.counter .counter-detail h4 {
  font-size: 16px;
  color: #eee;
  font-weight: 400;
  line-height: 21.82px;
}

/* foundations */
  /* SOCIAL IMPACT SECTION */
  .social-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf5f3 100%);
    position: relative;
    overflow: hidden;
  }
  
  /* DECORATIVE ELEMENTS */
  .impact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
  }
  
  .impact-accent-line {
    position: absolute;
    top: 0;
    left: 50px;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #14b8a6 20%, #14b8a6 80%, transparent);
    z-index: 2;
  }
  
  /* CONTAINER */
  .impact-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 5%;
    position: relative;
    z-index: 3;
  }
  
  /* HEADER */
  .impact-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  
  .impact-symbol {
    width: 70px;
    height: 70px;
    background: #14b8a6;
    border-radius: 50% 0 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transform: rotate(-10deg);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.2);
  }
  
  .impact-symbol:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 3px solid white;
    border-radius: 50% 0 50% 0;
  }
  
  /* CONTENT */
  .impact-content {
    max-width: 700px;
  }
  
  .impact-heading {
    font-size: 42px;
    font-weight: 800;
    color: #14b8a6;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
  }
  
  .impact-heading:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #14b8a6;
  }
  
  .impact-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-top: 25px;
    font-weight: 300;
  }
  
  /* IMPACT GALLERY */
  .impact-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 30px;
  }
  
  /* INDIVIDUAL IMPACT CARDS */
  .impact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
  }
  
  .impact-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
  }
  
  .impact-card figure:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    z-index: 1;
  }
  
  .impact-card figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  
  .impact-card:hover figure img {
    transform: scale(1.05);
  }
  
  .impact-card-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #14b8a6;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
  }
  
  .impact-card-icon {
    position: absolute;
    bottom: 10px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #14b8a6;
  }
  
  .impact-text {
    padding: 30px 25px 25px;
    position: relative;
  }
  
  .impact-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }
  
  .impact-card:hover .impact-text h3 {
    color: #14b8a6;
  }
  
  .impact-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .impact-learn-more {
    display: inline-block;
    color: #14b8a6;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
  }
  
  .impact-learn-more:after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .impact-card:hover .impact-learn-more:after {
    transform: translateX(5px);
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 768px) {
    .impact-gallery {
      grid-template-columns: 1fr;
    }
    
    .impact-heading {
      font-size: 32px;
    }
    
    .impact-symbol {
      width: 50px;
      height: 50px;
    }
    
    .impact-symbol:after {
      width: 30px;
      height: 30px;
    }
  }
/* Environment */

.enviroment-breadcrumb {
  height: 700px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%),
    url(../images/environment-banner.jpg);
  position: relative;
  margin-bottom: 50px;
}

.enviroment-breadcrumb .breadcrumb-content {
  width: 50%;
  position: absolute;
  bottom: 100px;
}

.enviroment-breadcrumb .breadcrumb-content p,
.enviroment-breadcrumb .breadcrumb-content h1 {
  color: #fff;
  margin: 0 0 25px 0;
}

/* Environment */

/* enviroment-about */
.enviroment-about .about-us-img figure {
  height: 450px;
}

.enviroment-about .about-us-img figure img {
  height: 100%;
  object-fit: cover;
}

.enviroment-about .about-us-img .row .col-lg-6:nth-child(2) figure {
  margin-top: 100px;
}

.enviroment-about .about-us-content p {
  margin-bottom: 40px;
}

.enviroment-about .about-us-content .praniti {
  font-size: 20px;
  line-height: 35px;
  text-align: justify;
}

.enviroment-about .about-us-content .praniti span {
  font-weight: 800;
}

/* welfire */
.welfire {
  position: relative;
  margin-bottom: 50px;
}

.welfire .welfire-wrapper {
  display: flex;
  align-items: center;
  height: 540px;
  margin-bottom: 10px;
}

.welfire .welfire-wrapper .welfire-content {
  width: 50%;
}

.welfire .welfire-wrapper figure {
  width: 40%;
  position: absolute;
  right: 0;
  height: 540px;
}

.welfire .welfire-wrapper figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* welfire */

/* words-to-live */
.words-to-live {
  margin-bottom: 50px;
}

.words-to-live .words-to-live-content {
  box-shadow: 4px 4px 14px 0px #00000024;
  position: relative;
}

.words-to-live .words-to-live-content h3 {
  font-size: 20px;
  font-weight: 800;
}

.words-to-live .words-to-live-content p {
  font-size: 28px;
  font-weight: 400;
  line-height: 44px;
}

.words-to-live .words-to-live-content small {
  font-size: 16px;
  font-weight: 300;
}

.words-to-live .words-to-live-content .content {
  width: 55%;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0;
}

.words-to-live .words-to-live-content figure img {
  width: 50%;
}

.words-to-live .words-to-live-content .left figure {
  position: absolute;
  top: 50px;
  left: 50px;
}

.words-to-live .words-to-live-content .right {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

/* sustainability */

.committee .content h1 {
  font-size: 40px;
  font-weight: 800;
  width: 45%;
  margin: 0 auto 20px;
}

.foundation {
  background-color: #2622621a;
  padding: 30px 0;
}

.foundation .foundation-content p {
  font-size: 20px;
  line-height: 35px;
  text-align: justify;
}

.foundation .foundation-img figure {
  position: relative;
}

.foundation .foundation-img figure::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  width: 100%;
  height: 100%;
}

.foundation .foundation-img .col-lg-5 figure:nth-child(2)::before {
  display: none;
}

.foundation .foundation-img figure p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 10px 12px;
  font-size: 17px;
  font-weight: 600;
}

.foundation .foundation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.foundation .foundation-img .col-lg-5 figure {
  height: 300px;
}

.foundation .foundation-img .col-lg-5 figure:nth-child(2) {
  width: 100%;
  margin: 30px 0 0 -100px;
}

/* <!-- charity --> */
.charity .charity-wraper {
  display: flex;
  align-items: center;
}

.charity .charity-wraper .charity-content {
  width: 60%;
  padding: 100px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.charity .charity-wraper .charity-content h3 {
  color: #fff;
}

.charity .charity-wraper .charity-content p {
  color: #ffffffcc;
}

.charity .charity-wraper figure {
  width: 40%;
  height: 400px;
  margin: 0;
}

.charity .charity-wraper figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charity .charity-wraper:nth-child(1) .charity-content {
  background-color: #994a4a;
}

.charity .charity-wraper:nth-child(1) .charity-content .content,
.charity .charity-wraper:nth-child(1) .charity-content h3,
.charity .charity-wraper:nth-child(3) .charity-content .content,
.charity .charity-wraper:nth-child(3) .charity-content h3 {
  text-align: right;
}

.charity .charity-wraper:nth-child(2) .charity-content {
  background-color: #548a4b;
}

.charity .charity-wraper:nth-child(3) .charity-content {
  background-color: #48578f;
}

/* career page */
/* <!-- enviroment-about --> */

.enviroment-about .about-us-content .counter {
  background: none;
}

.enviroment-about .about-us-content .counter:before {
  display: none;
}

.enviroment-about .about-us-content .counter .counter-detail {
  background-color: #f5f5f5;
  width: 273px;
  height: 165px;
  padding: 32px;
}

.enviroment-about .about-us-content .counter .counter-detail h3 {
  color: #149a99;
}

.enviroment-about .about-us-content .counter .counter-detail i {
  color: #149a99;
}

.enviroment-about .about-us-content .counter .counter-detail h4 {
  color: #06050f;
  font-weight: 500;
}

/* <!-- enviroment-about --> */
/* career service */
.career-service {
  margin-bottom: 50px;
}

.career-service .service-content {
  border-right: 1px solid #0000001a;
}

.career-service .service-content h3 small {
  color: #149a99;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
  display: block;
}

.career-service .service-content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 38.19px;
}

.career-service .service-content p {
  padding-right: 30px;
}

.career-service .col-lg-4:last-child .service-content {
  border-right: 0;
  margin-right: 0;
}

/* career service */

/* main-services */
.main-services .main-service-items {
  border-bottom: 1px solid #0000001a;
  padding: 32px 0;
}

.main-services .main-service-items:last-child {
  border-bottom: none;
}

.main-services .main-service-items .row {
  display: flex;
  align-items: center;
}

.main-services .main-service-items ul li {
  padding-left: 16px;
  margin-bottom: 15px;
  position: relative;
  background-color: #f0f0f0;
  margin-right: 15px;
  padding: 4px 8px;
}

/* main-services */

/* team */
.team {
  margin-bottom: 50px;
}

.team .team-img figure {
  height: 340px;
  margin-bottom: 15px;
}

.team .team-img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team .team-img {
  text-align: center;
}

/* team */

/* career page */
/* career-details */
.career-details {
  margin-bottom: 60px;
}

.career-details .career-details-content h1 {
  font-size: 32px;
  font-weight: 700;
}

.career-details .career-details-content h2,
.career-details .job-key-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.career-details .career-details-content p {
  margin-bottom: 40px;
}

.career-details .career-details-content p a {
  color: #262262;
}

.career-details .career-details-content ul {
  margin-bottom: 40px;
}

.career-details .career-details-content ul li {
  padding-left: 16px;
  margin-bottom: 15px;
  position: relative;
}

.career-details .career-details-content ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #747372;
  border-radius: 50px;
}

.career-details .career-details-content ul li p {
  margin-bottom: 0px;
}

.career-details .career-details-content ul li p a {
  display: block;
}

.career-details .job-key-info {
  background: #f7f9fc;
  padding: 30px;
}

.career-details .job-key-info ul li p strong {
  color: #181514;
}

.career-details .job-key-info .job-key-info-btn {
  margin-top: 30px;
}

.career-details .job-key-info .job-key-info-btn .btn-primary {
  width: 75%;
  padding: 13px 0;
}

.career-details .job-key-info .job-key-info-btn figure {
  width: 45px;
  height: 45px;
  background: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.career-newsletter-content {
  border: 1px solid #10171d1c;
  padding: 50px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.career-newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.career-newsletter-content a.button-flex {
  margin: 0;
}

.career-newsletter-content h4 {
  text-align: end;
}

.career-newsletter-content h4 small {
  display: block;
  color: #00000099;
  margin-top: 14px;
}

/* contact-card */
.contact-card {
  margin-bottom: 50px;
}

.backgroung-card {
  background-color: #262262f7;
  height: 100%;
  border-radius: 55px;
  margin: 0 auto;
  width: 80%;
}

.contact-card .card {
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #e6e6e9;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 0.3s;
  border-radius: 50px;
  border: none;
}

.contact-card .card:hover {
  transform: translate(0px, -15px);
}

.contact-card .card h3 {
  font-size: 22px;
  font-weight: 600;
}

.contact-card .card i {
  font-size: 18px;
  height: 40px;
  width: 40px;
  border: 1px solid;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #262262f7;
  color: #fff;
  border-radius: 50%;
}

.contact-card .card p {
  font-size: 18px;
  font-weight: 400;
}

/* in-touch */
.in-touch {
  margin-bottom: 50px;
}

.in-touch h3 {
  font-size: 50px;
  font-weight: 700;
}

.in-touch .common-address {
  padding: 70px 80px;
  background-color: #e6e6e9;
  border-radius: 5px;
}

.in-touch .common-address ul li {
  margin-bottom: 20px;
}

.in-touch .common-address ul li a i {
  color: #262262f7;
  margin-right: 10px;
  font-size: 20px;
}

.in-touch input,
.in-touch textarea {
  border: 1px solid #000;
  border-radius: 5px;
}

/* .contact */
.contact-us .contact-details ul li {
  margin: 0 0 15px 0;
  border: 1px solid #e7e6ed;
  padding: 32px;
}

.contact-us .contact-details ul li:last-child {
  margin: 0;
}

.contact-details ul li h4 {
  font-size: 20px;
  font-weight: 600;
}

.contact-us .contact-details ul li figure {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px 0;
}

.contact-us {
  margin: 0px 0 60px 0;
}

.contact-us .contact-form {
  padding: 50px 80px 50px 50px;
  border: 1px solid #e7e6ed;
  height: 100%;
}

.contact-us .contact-form input[type="text"],
.contact-us .contact-form input[type="email"],
.contact-us .contact-form input[type="number"],
.contact-us .contact-form select,
.contact-us .contact-form textarea {
  border: 0;
  background: #e7e6ed;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.contact-us .contact-form input[type="submit"] {
  position: relative;
}

.contact-us .contact-form input[type="submit"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  font-size: 15px;
  color: #000;
}

.contact-us .contact-form label {
  font-size: 14px;
  font-weight: 400;
  color: #181514;
  margin: 0 0 10px 0;
}

.contact-us .contact-details ul li p {
  font-size: 16px;
  color: #464443;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.contact-us .contact-details ul li p a {
  color: #464443;
  display: block;
}

.contact-us .contact-details ul li:last-child p {
  width: 50%;
}

/* ourlocation */
.ourlocation {
  margin-bottom: 70px;
}

.ourlocation .ourlocation-item {
  border: 1px solid #e7e6ed;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.ourlocation .ourlocation-item figure {
  width: 35px;
  height: 35px;
  margin: 0 15px 0 0;
}

.ourlocation .ourlocation-item figure img {
  width: 100%;
}

.ourlocation .ourlocation-item h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
}

.ourlocation .ourlocation-item p {
  margin: 5px 0 0 0;
}

.ourlocation iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}

/* .contact end */
/* .gallery */
.main-gallery .gallery figure {
  height: 100%;
}

.galleryp .committee .content small,
.contactp .committee .content small,
.business .committee .content small {
  margin: 0 auto 10px;
}

.main-gallery .gallery img {
  height: 100%;
  object-fit: cover;
}

.main-gallery .gallery a {
  width: 100%;
  margin-bottom: 10px;
  background-color: #696969;
}

.main-gallery .gallery .col-lg-4:nth-child(1) a:nth-child(1),
.main-gallery .gallery .col-lg-4:nth-child(3) a:nth-child(1) {
  height: 247px;
}

.main-gallery .gallery .col-lg-4:nth-child(1) a:nth-child(2),
.main-gallery .gallery .col-lg-4:nth-child(3) a:nth-child(2) {
  height: 519px;
}

.main-gallery .gallery .col-lg-4:nth-child(2) a:nth-child(1) {
  height: 366px;
}

.main-gallery .gallery .col-lg-4:nth-child(2) a:nth-child(2) {
  height: 400px;
}

/* business */
.business-tab .tab {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.business-tab ul.tab-menu {
  border: 0;
  border-radius: 0;
  margin: 0 0 30px 5%;
  padding: 0;
}

.diverse-portfolio ul.tab-menu li {
  border-bottom: 3px solid transparent;
}

.business-tab ul.tab-menu li.active {
  color: #000;
  border-bottom: 3px solid #262262;
  background: none;
  border-radius: 0;
}

/* ip-rice */
.ip-rice {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%),
    url(../images/.jpg) no-repeat center center / cover;
  /* height: 400px; */
  margin-bottom: 50px;
}

.ip-rice .committee .contents h2{
font-size:64px;}
.ip-rice .committee .contents h2 span{
    font-size:32px;
}
.ip-rice .committee .contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  height: 400px;
}
/* ip-rice */
.ip-rice .content h2 {
  color: #fff;
}

.ip-rice .content h2 span {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.ip-talk {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262262;
}

.ip-talk .talk {
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ip-talk .talk h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.ip-talk .talk h2 small {
  font-size: 20px;
  color: #fff;
  background-color: transparent;
}

@media only screen and (max-width: 1199px) {

  a.btn-primary,
  a.btn-outline-primary {
    padding: 10px 20px;
  }

  a.btn-outline-primary {
    margin-left: 10px;
  }

  .subheading:before {
    right: 15%;
  }

  header .menubar ul {
    align-items: center;
    justify-content: center;
  }

  header .menubar ul li a {
    font-size: 14px;
    margin: 3px 0 3px 25px;
  }

  header .menubar ul li a i {
    margin-left: 0px;
  }

  header .headbtn .btn-outline-primary {
    margin: 0 10px 0 0;
  }

  /* slider */
  .slider .slider-content {
    width: 80%;
    margin-top: 30px;
  }

  .slider .slider-item h1 {
    font-size: 40px;
    line-height: 50px;
  }

  /* testimonials */
  .testimonials .subheading:before {
    right: 4%;
  }

  .testimonials .headingleft {
    width: 80%;
    margin-bottom: 10px;
  }

  .testimonials .heading-content {
    width: 50%;
  }

  .testimonials .client-feedback {
    margin-top: 0px;
  }

  .testimonials .client-feedback .client-feedback-content p {
    line-height: 32.83px;
  }

  /* footer */
  footer .subcribtion form input[type="email"] {
    width: 62%;
    padding: 8px 20px;
  }

  footer .subcribtion form .btn-primary {
    width: 36%;
  }

  footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

header .mobile-menu {
  display: none;
}

.history-sec {
  margin-bottom: 50px;
}


.history-second-2 {
  display: none;
}

.slider-carousel {
  position: relative;
}

.slider-carousel .fa-arrow-right-long,
.slider-carousel .fa-arrow-left-long {
  position: absolute;
  top: 42%;
  color: #262262f7;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 16px;
  height: 40px;
  width: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.slider-carousel .fa-arrow-right-long {
  right: 4%;
}

.slider-carousel .fa-arrow-left-long {
  left: 4%;
}

@media only screen and (max-width: 991px) {
  .topbar .topbar-content {
    display: block;
    text-align: center;
  }

  .topbar .smoicons {
    justify-content: center;
    margin-top: 15px;
  }

  .smoicons ul li a {
    width: 18px;
    height: 18px;
    font-size: 8px;
    margin: 0px 0px 0 8px;
  }



  .history-second-2 {
    display: block;
  }

  .history-second-1 {
    display: none;
  }

  /*whatsapp-icon*/
  a.whatsapp-icon,
  a.phone-icon {
    left: 15px;
    font-size: 18px;
  }

  a.phone-icon {
    padding: 11px 12px;
    bottom: 84px;
  }

  /*heading*/
  .heading,
  .headingleft {
    font-size: 20px;
    width: 100%;
    margin: 0 0 10px 0;
    line-height: 26px;
  }

  .headingleft {
    text-align: center;
  }

  .headingleft small {
    margin: 0 auto 12px auto;
  }

  p.heading-content {
    width: 100%;
    margin: 0 auto 10px;
  }

  .subheading {
    font-size: 16px;
  }

  .subheading:before {
    right: 20%;
    width: 40%;
  }

  /*btn-primary*/
  a.btn-outline-primary,
  a.btn-primary {
    padding: 8px 16px;
  }

  a.btn-outline-primary {
    margin-left: 12px;
  }

  .main-slider .nonprofit-btn {
    margin-top: 0px !important;
  }

  .row {
    row-gap: 10px;
  }

  .offset-1,
  .offset-2,
  .offset-3 {
    margin-left: 0;
  }

  /*offcanvas*/
  .menubar ul li {
    position: relative;
  }

  .menubar ul li .dropdown {
    padding: 10px;
    border-radius: 6px;
    box-shadow: 1px 2px 5px #dddddd82;
  }

  .offcanvas {
    background: #1f2732;
  }

  .offcanvas-title img {
    width: 200px;
  }

  .offcanvas-body ul li {
    margin-bottom: 7px;
    color: #fff;
    border-bottom: 1px solid #eeeeee70;
    padding-bottom: 7px;
    transition: all 0.6s linear;
  }

  .offcanvas-body ul li a {
    color: #fff;
  }

  .offcanvas-body ul .mobile-dropdown {
    padding: 10px 0 0 20px;
  }

  .offcanvas-body ul .mobile-dropdown li {
    border: 0;
    padding: 0;
  }

  .menubar ul li:hover ul.dropdown li {
    width: 100%;
  }

  .menubar ul li:hover .dropdown li a {
    color: #666;
    padding-bottom: 2px;
    margin-bottom: 2px;
  }

  .offcanvas-body ul li .dropdown-menu li a.dropdown-item {
    margin-bottom: 0px;
    color: #000;
  }

  .offcanvas {
    width: 90% !important;
  }

  .offcanvas .offcanvas-header {
    position: relative;
  }

  .offcanvas-header .btn-close {
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    background: #000000;
    opacity: 1;
  }

  .offcanvas-header .btn-close i {
    font-size: 20px;
    color: #fff;
  }

  /*header*/
  header {
    padding: 10px 0;
  }

  #header.black i {
    color: #fff;
  }

  header .row {
    row-gap: 0;
  }

  header a.logo img {
    width: 100px;
  }

  header .menubar {
    display: none;
  }

  header .btn-primary {
    display: none;
  }

  header .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262262;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    right: 14px;
    color: #fff;
    transform: translateY(-50%);
    z-index: 99;
  }

  header .headbtn {
    justify-content: center !important;
  }

  #button {
    width: 30px;
    height: 30px;
    bottom: 20px;
  }

  #button i {
    font-size: 15px;
  }

  /*slider*/


  .slider .slider-item {
    text-align: center;
    background: linear-gradient(200deg, rgba(0, 0, 0, 0) -20%, #000000 100%);
  }

  .slider .slider-content {
    width: 100%;
  }

  .slider figure {
    width: 100%;
    height: 300px;
  }

  .slider figure img {
    height: 100%;
    object-fit: cover;
  }

  .slider .slider-item h1 {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 3px;
  }

  .slider .slider-item p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .slider .slider-info {
    /* width: 100%;
      bottom: -200px;
      height: 200px;
      flex-direction: column-reverse;
      z-index: 1; */
    display: none !important;
  }

  /* .slider .slider-info .smoicons {
    background: #fff;
    width: 100%;
    padding: 15px;
    flex-direction: column;
    text-align: center;
    box-shadow: 1px 2px 5px #ddd;
  } */
  .slider-info figure,
  .slider-info .smoicons p {
    display: none;
  }

  .slider .slider-info figure {
    width: 100%;
  }

  .slider .slider-content .slider-btn {
    justify-content: center !important;
  }

  .slider .slider-info .smoicons ul li a {
    margin: 0 6px 7px 6px;
  }

  .slider-carousel .fa-arrow-right-long,
  .slider-carousel .fa-arrow-left-long {
    transform: translate(-0%, -75%);
    font-size: 12px;
    height: 30px;
    width: 30px;
    top: 70%;
  }

  /* about-us */
  .about-us {
    margin-bottom: 20px;
    padding: 20px 0;
  }

  .about-us .about-us-content {
    margin-left: 0;
  }

  .about-us .about-us-content ul,
  .diverse-portfolio .diverse-portfolio-content ul {
    margin: 15px 0 16px 0;
  }

  /* diverse-portfolio */
  .diverse-portfolio {
    margin-bottom: 30px;
  }

  .diverse-portfolio ul.tab-menu {
    margin: 0 auto 16px;
    width: 100%;
  }

  .diverse-portfolio ul.tab-menu li {
    font-size: 14px;
    padding: 8px 16px;
  }

  .diverse-portfolio .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .diverse-portfolio .row figure {
    margin: 0;
  }

  .diverse-portfolio .diverse-portfolio-content .headingleft {
    text-align: center;
  }

  .diverse-portfolio .diverse-portfolio-content ul li {
    width: fit-content;
    margin: 0 auto 10px;
    font-size: 13px;
    padding: 0 0 0 15px;
  }

  /* sustainability */
  .sustainability {
    margin-bottom: 30px;
  }

  .sustainability ul.tab-menu {
    bottom: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .sustainability ul.tab-menu li h4 i {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .sustainability ul.tab-menu li {
    width: 40%;
    flex-direction: column;
    padding: 10px;
  }

  .sustainability ul.tab-menu li p {
    margin-bottom: 0px;
  }

  .sustainability ul.tab-menu li h4 {
    font-size: 12px;
  }

  .sustainability .sustainability-content p {
    top: 10px;
    font-size: 14px;
    line-height: 22px;
    width: 97%;
  }

  .sustainability figure img {
    height: 400px;
    object-fit: cover;
  }

  /* partner */
  .partner {
    margin-bottom: 30px;
  }

  /* woods */
  .woods {
    margin-bottom: 40px;
    padding: 30px 0 50px 0;
  }

  .woods .woods-carousel-item {
    width: 300px;
    height: 450px;
    flex-direction: column;
  }

  .woods .woods-carousel-item figure {
    width: 100% !important;
  }

  .woods .woods-carousel-item .woods-carousel-content {
    width: 100% !important;
    padding: 10px !important;
  }

  /* testimonials */
  .testimonials {
    padding-bottom: 20px;
  }

  .testimonials .headingleft {
    width: 80%;
  }

  .testimonials .subheading:before {
    right: 10%;
  }

  .testimonials .heading-content {
    width: 100%;
  }

  .testimonials .client-feedback {
    margin-top: 0;
  }

  .testimonials .client-feedback-item {
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
  }

  .testimonials .client-feedback figure {
    width: 100%;
    margin: 0;
  }

  .testimonials .client-feedback .client-feedback-content {
    width: 100%;
  }

  .testimonials .client-feedback .client-feedback-content h3 {
    font-size: 16px;
    margin: 8px 0 10px 0px;
  }

  .testimonials .client-feedback .client-feedback-content p {
    font-size: 14px;
    line-height: 18.83px;
    margin-bottom: 16px;
  }

  .testimonials .client-feedback .client-feedback-content h4 {
    font-size: 14px;
    line-height: 22.36px;
    margin-bottom: 45px;
  }

  .testimonials .client-feedback .fa-arrow-right-long {
    left: 47.5%;
  }

  /* gallery */
  .gallery {
    margin-bottom: 30px;
  }

  /* latest-article */
  .latest-article .heading {
    width: 100%;
  }

  /* footer */
  footer .subcribtion {
    width: 100%;
    margin-bottom: 15px;
  }

  footer .subcribtion h2 {
    margin-bottom: 15px;
    text-align: left;
  }

  footer .subcribtion form input[type="email"] {
    width: 52%;
    padding: 9px 15px;
    font-size: 15px;
  }

  footer .subcribtion form .btn-primary {
    width: 45%;
  }

  footer .footer-logo p {
    margin-bottom: 10px;
  }

  footer .footer-logo h4 {
    margin-bottom: 6px;
  }

  footer .footer-logo .smoicons ul li a {
    margin: 0 10px 10px 0;
  }

  footer {
    padding: 20px 0 20px 0;
  }

  footer h3 {
    margin-bottom: 7px;
  }

  footer .footer-menu li a {
    margin-bottom: 5px;
  }

  footer .copy-right {
    padding: 15px 0 0 0;
    margin-top: 5px;
    text-align: center;
  }

  footer .copy-right .row {
    row-gap: 0 !important;
  }

  footer .copy-right .smoicons {
    justify-content: center !important;
    margin-top: 10px;
  }

  footer .copy-right .smoicons ul li:first-child a {
    margin-left: 0;
  }

  .breadcrumb {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .breadcrumb h1 {
    font-size: 25px;
    width: 100%;
    line-height: 32px;
    margin-bottom: 0;
  }

  .breadcrumb h1 small {
    padding-bottom: 5px;
  }

  .breadcrumb p {
    width: 100%;
  }

  .career-details .career-details-content {
    text-align: center;
  }

  .career-details .career-details-content h2,
  .career-details .job-key-info h2 {
    margin-bottom: 12px;
  }

  .career-details .career-details-content ul li:before {
    display: none;
  }

  .career-details {
    margin-bottom: 30px;
  }

  .career-details .job-key-info {
    padding: 20px;
    text-align: center;
  }

  .career-details .job-key-info ul {
    margin-bottom: 15px;
  }

  .job-key-info ul li {
    margin-bottom: 20px;
    justify-content: center;
    line-height: normal;
  }

  .career-newsletter-content {
    padding: 16px;
    margin-bottom: 30px;
    flex-direction: column-reverse;
  }

  .career-newsletter-content h4 {
    text-align: center;
  }

  .career-newsletter-content h4 small {
    margin-top: 6px;
  }

  .ourlocation {
    margin-bottom: 30px;
  }

  /* .contact-us {
    margin: 0px 0 20px 0;
  }

  .contact-us .contact-details {
    padding: 15px 15px 5px 15px;
    margin-bottom: 20px;
  }

  .contact-us .contact-details ul li figure {
    margin: 0 5px 0 0;
  }

  .contact-us .contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-us .contact-details ul li p {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-us .contact-details ul li p a {
    font-size: 13px;
  }

  .contact-us .contact-details ul li:last-child p {
    width: 100%;
  }

  .contact-us .contact-form {
    padding: 10px;
    margin: 0 0 80px 0;
    border: 0;
  }
  .contact-us iframe {
    height: 300px;
  }
  .contact-us .contact-form label {
    margin: 0 0 5px 0;
  }

  .contact-us .contact-form input[type="text"],
  .contact-us .contact-form input[type="email"],
  .contact-us .contact-form input[type="number"],
  .contact-us .contact-form select,
  .contact-us .contact-form textarea {
    margin-bottom: 10px;
  } */

  /* about-bread */
  .about-bread {
    margin: 80px 0 20px 0;
  }

  .about-bread .subheading {
    width: 100%;
    margin-bottom: 10px;
  }

  .about-bread .subheading:before {
    right: 10%;
  }

  .about-bread h1 {
    font-size: 25px;
    line-height: 34.1px;
    width: 100%;
    margin-bottom: 20px;
  }

  .it-solutions .subheading {
    width: 100%;
    margin-bottom: 10px;
  }

  .it-solutions .it-solutions-content ul {
    margin: 15px 0;
  }

  .it-solutions .it-solutions-content ul li {
    margin-bottom: 5px;
  }

  .trusted {
    margin-bottom: 20px;
    padding: 0 0 60px 0;
  }

  .trusted figure.trusted-img {
    width: 100%;
  }

  .trusted figure.trusted-img .trusted-views {
    width: 40%;
    padding: 10px;
  }

  .trusted .counter .counter-detail {
    padding: 10px 40px;
  }

  .main-service {
    margin-bottom: 20px;
  }

  .main-service .subheading:before {
    right: 0%;
    width: 40%;
  }

  .team {
    margin-bottom: 20px;
  }

  .team .subheading:before {
    right: 10%;
  }

  .team .team-carousel .fa-arrow-left-long {
    right: 16%;
  }

  .gallery .subheading {
    width: 100%;
    margin-bottom: 20px;
  }

  .gallery .subheading:before {
    right: 16%;
  }

  /* servicep-bread page */
  .servicep-bread {
    padding: 30px 0;
    margin: 60px 0 20px 0;
  }

  .main-servicep .main-servicep-items .main-servicep-info ul {
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
  }

  .main-services .main-services-flex ul.main-service-items-btn li {
    padding: 7px 10px;
    margin-right: 10px;
    font-size: 10px;
  }

  .our-solution {
    margin-bottom: 20px;
  }

  .our-solution .row {
    row-gap: 10px !important;
  }

  .our-solution .heading-content {
    margin: 0 0 10px 0;
    width: 100%;
  }

  .our-solution .btn-primary {
    float: left;
  }

  .our-solution .our-solution-item {
    padding: 15px;
  }

  .our-solution .our-solution-item figure {
    margin-bottom: 20px;
  }

  .our-solution .our-solution-item h3 {
    margin-bottom: 6px;
  }

  .main-services {
    margin-bottom: 20px;
  }

  .subheading {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .main-services .heading-content {
    width: 100%;
  }

  .main-servicep .main-services-flex {
    padding: 10px;
  }

  .main-servicep .main-servicep-items {
    flex-wrap: wrap;
  }

  .main-servicep .main-servicep-items span {
    width: 50%;
  }

  .main-servicep .main-servicep-items .main-servicep-info {
    width: 100%;
  }

  .main-servicep .main-servicep-items .main-servicep-info h3 {
    width: 60%;
    margin-bottom: 15px;
  }

  .main-servicep .main-servicep-items .main-servicep-info p {
    width: 100%;
    margin-bottom: 20px;
  }

  .main-servicep .main-servicep-items .main-servicep-info figure {
    margin-bottom: 10px !important;
  }

  .main-servicep .main-servicep-items .main-servicep-info figure img {
    height: 160px;
  }

  .main-servicep .main-servicep-items a.btn-primary {
    width: 70%;
  }

  .partner-flex .headingleft {
    font-size: 20px;
    margin-bottom: 0;
  }

  .career-why-us {
    margin-bottom: 20px;
    padding: 0 0 10px 0;
  }

  .why-us .headingleft {
    font-size: 50px;
    line-height: 65px;
  }

  .why-us .why-us-content p {
    margin-bottom: 5px;
  }

  /* service-details */
  .service-details {
    margin: 80px 0 20px 0;
    padding: 0 0 20px 0;
  }

  .service-details h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  /* service-overview */
  .service-overview {
    margin-bottom: 20px;
  }

  .service-overview .row {
    row-gap: 10px !important;
  }

  .service-overview .headingleft {
    margin: 0 0 7px 0;
  }

  .service-overview .service-overview-content {
    flex-wrap: wrap;
  }

  .service-overview .service-overview-content p {
    width: 100%;
  }

  .asked-and-Question {
    margin-bottom: 20px;
  }

  .asked-and-Question .heading-content {
    margin: 0px 0 10px 0;
  }

  .asked-and-Question .asked-and-Question-info {
    padding: 10px;
  }

  /* career page */
  .career-bread {
    padding: 30px 0;
    margin: 60px 0 25px 0;
  }

  .career-counter .counter-detail {
    border: 1px solid #00000014;
    padding: 20px;
  }

  .benefits {
    margin-bottom: 30px;
  }

  .benefits .headingleft {
    margin: 0 0 0px 0;
  }

  .benefits .heading-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .benefits .benefit-items {
    padding: 20px;
  }

  .project-team {
    margin-bottom: 20px;
  }

  .career-counter .col-lg-3:last-child .counter-detail {
    border-right: 1px solid #00000014;
  }

  .gallery .subheading {
    color: #000;
  }

  /* blog-post */
  .blog-post-carousel {
    margin-bottom: 370px;
  }

  .blog-post-carousel .slider-item {
    height: 250px;
    margin-top: 70px;
    text-align: center;
  }

  .blog-post-carousel figure {
    top: 48%;
    top: 48%;
    width: 100%;
    height: 300px;
  }

  .blog-post-carousel figure img {
    height: auto;
  }

  .blog-post-carousel .slider-item h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0px;
  }

  .blog-post-carousel .slider-item ul {
    margin: 5px 0 8px 0;
    justify-content: center;
  }

  .blog-post-carousel .slider-item ul li:last-child {
    margin-right: 0px;
  }

  .blog-post-carousel .slider-item p {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-post .blog-post-sidebar li a {
    margin-bottom: 6px;
  }

  .blog-post .blog-post-sidebar-wrapper .smoicons h4 {
    margin: 15px 0 10px 0;
  }

  .blog-post .blog-post-content h3 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .blog-post .blog-post-content p {
    font-size: 14px;
    line-height: 24.89px;
    text-align: justify;
    margin-bottom: 15px;
  }

  .blog-post .blog-post-customer-service {
    padding: 10px;
    margin-bottom: 15px;
  }

  .blog-post .blog-post-customer-service figure {
    margin: 0 16px 0 0;
  }

  .blog-post .blog-post-customer-service p {
    margin: 0;
  }

  .blog-post .blog-post-customer-service p small {
    margin-top: 6px;
  }

  .expert {
    margin-bottom: 20px;
  }

  .expert .expert-item .expert-info {
    padding: 10px 0 5px 0;
  }

  .expert .expert-item .expert-info h3 {
    margin-bottom: 4px;
  }

  .expert .expert-item .expert-info p {
    line-height: 22px;
    margin-bottom: 0;
  }

  /* contact */
  /* .form {
    padding: 100px 0 30px 0;
    margin-bottom: 20px;
  }

  .form h3 {
    margin-bottom: 15px;
  }

  .form ul li {
    margin-bottom: 5px;
  }

  .form h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .form p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .form label {
    margin-bottom: 3px;
  }

  .form input[type="text"],
  .form input[type="email"],
  .form input[type="number"],
  .form select,
  .form textarea {
    margin-bottom: 5px;
  }

  .form button {
    margin-top: 10px;
  } */

  /* portfolio */
  .portfolio {
    margin-bottom: 10px;
  }

  .portfolio .portfolio-item figure img {
    height: 400px;
  }

  .portfolio .col-lg-4 .portfolio-item {
    padding: 0;
  }

  /* portfolio-details */
  .portfolio-details-hero {
    margin: 80px 0 20px 0;
  }

  .portfolio-details-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .portfolio-details-hero .portfolio-details-hero-list {
    row-gap: 10px;
    margin-bottom: 15px;
  }

  .portfolio-details-hero .portfolio-details-hero-item {
    padding: 20px;
  }

  .portfolio-details-hero .portfolio-details-hero-item .smoicons {
    padding-top: 15px;
    margin-top: 15px;
  }

  .portfolio-details {
    margin: 30px 0 10px 0;
    padding: 0;
  }

  .projects-overview ul {
    margin: 15px 0 20px 0;
  }

  .portfolio-why-us {
    margin-bottom: 20px;
    padding: 0px 0 26px 0;
  }

  /* faqs */
  .faq-form-head {
    padding: 10px;
    height: 250px;
  }

  .faq-form-head .headingleft {
    margin: 0 0 16px 0;
    width: 100%;
  }

  .faq-form-head .subheading {
    width: 100%;
    font-size: 14px;
  }

  .faq-form-head .subheading:before {
    right: 0;
    top: 76%;
  }

  .faq-form .faq-info {
    margin: -90px auto 25px;
    width: 95%;
    padding: 10px;
  }

  .faq-form .faq-info input[type="submit"] {
    width: 60%;
  }

  /* terms */
  .terms {
    margin-bottom: 30px;
  }

  .terms p span {
    font-size: 14px;
    padding: 0 60px 0 15px;
    margin-right: 10px;
  }

  .terms p span:before {
    font-size: 16px;
  }

  .terms h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .terms ul {
    margin-bottom: 20px;
  }

  .terms .terms-content {
    margin-bottom: 20px;
  }

  .terms h3 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  /* not-found */
  .not-found .heading {
    margin: 0 auto 10px;
  }

  .not-found .heading-content {
    margin-bottom: 20px;
  }

  .not-found {
    width: 100%;
    margin: 64px auto 30px;
  }

  /* board-member */
  .committee {
    margin-bottom: 30px;
  }

  .committee .content {
    padding: 20px 0 15px 0;
  }
  .ip-rice .committee .contents {
    height: auto;
    display: block;
    padding: 20px 0;}
  .committee .content h2 {
    font-size: 26px;
  }

  .committee .content small {
    font-size: 18px;
    margin: 10px auto 10px auto;
  }

  .committee .content p {
    width: 100%;
  }

  .members .member-sec {
    margin-top: 20px;
    text-align: center;
  }

  .members .col-lg-4 {
    margin-bottom: 5px;
  }

  .member-career {
    padding: 10px;
  }

  .member-career .row {
    row-gap: 30px;
  }

  .member-career h2 {
    margin-bottom: 10px;
  }

  .member-career p {
    margin-bottom: 15px;
  }

  /* directorp */
  .directorp .md-breadcom {
    padding: 0 0 30px 0;
    margin: 30px 0 10px 0;
  }

  .directorp .md-breadcom:before {
    top: -120px;
    height: 60%;
  }

  .directorp .md-breadcom-content {
    text-align: center;
  }

  .md-breadcom h1 {
    font-size: 26px;
    line-height: 29px;
    width: 100%;
  }

  .md-breadcom small {
    font-size: 20px;
    margin-top: 5px;
    text-align: center !important;
  }

  .md-breadcom p {
    font-size: 16px;
    line-height: 26px;
    margin: 10px 0;
  }

  .md-breadcom span {
    font-size: 20px;
  }

  .md-breadcom figure {
    height: fit-content;
  }

  .md-breadcom figure img {
    box-shadow: -5px 5px 8px 0px #00000038;
  }

  .purusottam-content .purusottam-content {
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .purusottam-content .purusottam-card {
    padding: 7px;
  }

  .purusottam-content p {
    font-size: 15px;
    text-align: center;
    margin: 0;
  }

  .purusottam-business {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .purusottam-business .business-card p {
    height: 100px;
  }

  .awards {
    margin-bottom: 60px;
  }

  .awards .awards-carousel-item {
    height: fit-content;
    flex-direction: column;
  }

  .awards .awards-carousel-item figure {
    width: 100%;
  }

  .awards .awards-carousel-item .awards-carousel-content {
    width: 100%;
    padding: 30px 30px 10px 15px;
    text-align: center;
  }

  .awards .awards-carousel-item .awards-carousel-content h3 {
    font-size: 18px;
  }

  .awards .awards-carousel-item .awards-carousel-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .awards .awards-carousel ul.slick-dots {
    width: 50%;
  }

  .purusottam-business .business-card figure {
    height: 130px;
  }

  .purusottam-business .business-card h3 {
    padding: 10px;
    font-size: 17px;
  }

  .purusottam-business .business-card h3 small {
    font-size: 14px;
    margin-top: 7px;
  }

  /* environment */
  .enviroment-breadcrumb {
    height: 350px;
    margin-bottom: 20px;
  }

  .enviroment-breadcrumb .breadcrumb-content {
    width: 95%;
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
  }

  .enviroment-breadcrumb .breadcrumb-content p,
  .enviroment-breadcrumb .breadcrumb-content h1 {
    color: #fff;
    margin: 10px 0;
  }

  .enviroment-about .about-us-img figure {
    height: fit-content;
    margin: 0;
  }

  .enviroment-about .about-us-img .row .col-lg-6:nth-child(2) figure {
    margin-top: 10px;
  }

  .enviroment-about .about-us-content p {
    margin-bottom: 20px;
  }

  /* welfire */
  .welfire {
    margin: 30px 0 30px 0;
  }

  .welfire .headingleft-content {
    width: 100%;
    text-align: center;
  }

  .welfire .welfire-wrapper {
    height: 680px;
    flex-direction: column;
    position: relative;
    box-shadow: 1px 2px 5px #ddd;
  }

  .welfire .welfire-wrapper .welfire-content {
    width: 100%;
    height: 100%;
    padding: 15px;
    box-shadow: 1px 2px 5px #ddd;
    text-align: center;
  }

  .welfire .welfire-wrapper figure {
    width: 100%;
    height: 180px;
    bottom: 0;
  }

  .words-to-live {
    margin-bottom: 30px;
  }

  .words-to-live .words-to-live-content .left figure {
    top: 0px;
    left: 10px;
  }

  .words-to-live .words-to-live-content .content {
    width: 100%;
  }

  .words-to-live .words-to-live-content p {
    font-size: 20px;
    line-height: 30px;
    padding: 0 10px;
  }

  .words-to-live .words-to-live-content .right {
    bottom: 10px;
    right: 10px;
  }

  .words-to-live .words-to-live-content .right figure {
    display: flex;
    justify-content: end;
  }

  /* founder */
  .founder-banner {
    height: 350px;
    margin-bottom: 20px;
  }

  .founder-banner .content {
    width: 95%;
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
  }

  .founder-banner h2 {
    font-size: 30px;
  }

  .founder-banner p {
    font-size: 20px;
    line-height: 30px;
  }

  .founderp .md-breadcom-content {
    text-align: center;
  }

  .md-breadcom {
    margin-bottom: 20px;
  }

  .founder-content {
    margin: 30px 0;
  }

  .founder-content .founder-box {
    padding: 10px;
  }

  .founder-content h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .founder-content .founder-box p {
    width: 100%;
    text-align: justify;
    margin-top: 10px;
  }

  /* managing-director */
  .managing-director {
    padding-top: 30px;
    margin-bottom: 30px;
  }

  .managing-director .md-breadcom-content {
    text-align: center;
  }

  .committee .content h1 {
    font-size: 26px;
    width: 100%;
    margin-bottom: 10px;
  }

  .our-story .our-story-content {
    padding-right: 0;
    text-align: center;
  }

  .our-story figure.our-story-img {
    padding: 10px;
    margin-bottom: 12px;
  }

  .counter {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .counter:before {
    display: none;
  }

  .our-story {
    margin-bottom: 30px;
  }

  .our-story figure.our-story-img img {
    height: fit-content;
  }

  .foundations {
    margin-bottom: 30px;
  }

  .foundations h2 {
    font-size: 70px;
    margin-bottom: 0;
    text-align: center;
  }

  .foundations .foundations-content {
    margin: 0;
    text-align: center;
  }

  .foundations .foundations-content h3 {
    font-size: 18px;
    line-height: 26.74px;
    margin-bottom: 8px;
  }

  .foundations figure.foundations-img img {
    height: fit-content;
  }

  /* sustainability */

  .latest-article {
    margin-bottom: 20px;
  }

  .charity .charity-wraper {
    flex-direction: column;
  }

  .charity .charity-flex {
    flex-direction: column-reverse;
  }

  .charity .charity-wraper .charity-content {
    width: 100%;
    padding: 10px;
    height: fit-content;
  }

  .charity .charity-wraper figure {
    width: 100%;
    height: fit-content;
  }

 

  /* career */
  .enviroment-about .about-us-content .counter .counter-detail {
    width: 100%;
    height: 150px;
  }

  .career-service {
    margin-bottom: 10px;
  }

  .career-service .service-content {
    border-right: 0;
  }

  .career-service .service-content h3 small {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .career-service .service-content p {
    padding-right: 0;
  }

  .main-services .heading {
    text-align: left;
  }

  .main-services .heading small {
    margin: 0 0 10px 0;
  }

  .main-services .main-service-items {
    padding: 6px 0;
  }

  .main-services .main-service-items p {
    margin: 0;
  }

  .main-services .main-service-items ul {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .main-services .main-service-items ul li {
    width: 45%;
  }

  /* contact */
  .contact-us {
    margin: 0px 0 30px 0;
  }

  .contact-us .contact-details ul li {
    text-align: center;
  }

  .contact-us .contact-details ul li figure {
    margin: 0 auto 15px;
  }

  .contact-us .contact-details ul li figure img {
    width: 100%;
  }

  .contact-us .contact-details ul li:last-child p {
    width: 100%;
  }

  .contact-us .contact-form {
    padding: 10px;
    height: fit-content;
  }

  .business .diverse-portfolio .row {
    margin-bottom: 20px;
  }

  .business .diverse-portfolio .row:nth-child(2),
  .business .diverse-portfolio .row:nth-child(4) {
    flex-direction: column;
  }

  .business-tab .tab {
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .business-tab ul.tab-menu li {
    font-size: 14px;
    margin: 0 4px;
    padding: 5px;
  }

  /*board-memberp*/
  .committee-banner {
    height: 120px;
    margin-bottom: 30px;
  }

  .members .member-sec h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  /*ip-rice*/
  .ip-rice {
    height: 110px;
    margin-bottom: 30px;
  }

  .enviroment-about .about-us {
    padding: 0;
    text-align: center;
  }

  .ip-talk .talk {
    height: 200px;
  }

  .ip-talk .talk h2 {
    font-size: 21px;
    line-height: 24px;
  }

  .ip-talk .talk h2 small {
    font-size: 15px;
    margin-bottom: 0;
  }

  /*sustainability*/
  .sustainabilityp .about-us figure {
    margin-right: 0;
  }

  .sustainabilityp .about-us-content {
    text-align: center;
  }

  .sustainabilityp .about-us-content ul li {
    width: fit-content;
    margin: 0 auto 6px;
  }

  .charity .charity-wraper:nth-child(1) .charity-content .content,
  .charity .charity-wraper:nth-child(1) .charity-content h3,
  .charity .charity-wraper:nth-child(3) .charity-content .content,
  .charity .charity-wraper:nth-child(3) .charity-content h3 {
    text-align: center;
  }

  .charity .charity-wraper .charity-content p {
    text-align: center;
  }



  .contact-card .card:hover {
    display: none;
  }

  footer .footer-logo {
    text-align: center;
  }

  footer .footer-menu {
    text-align: center;
  }

  /* .main-services .main-services-flex {
    padding: 10px;
    margin-bottom: 10px;
  }

  .main-services .main-service-items {
    flex-wrap: wrap;
  }

  .main-services .main-services-flex h3 {
    width: 100%;
  }

  .main-services .main-services-flex ul {
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
  }

  .main-services .main-service-items ul li {
    margin-bottom: 7px;
  }

  .main-services .main-service-items ul li p {
    font-size: 12px;
    margin: 0 6px 0 0;
  }

  .main-services .main-service-items ul li p strong {
    font-size: 12px;
  }

  .main-services .main-services-flex .main-service-items a.btn-primary {
    width: 60%;
    margin: 20px 0 10px 0;
  }
  .main-services .main-services-flex {
    padding: 10px;
    margin-bottom: 10px;
  }

  .main-services .main-service-items {
    flex-wrap: wrap;
  }

  .main-services .main-services-flex h3 {
    width: 100%;
  }

  .main-services .main-services-flex ul {
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
  }

  .main-services .main-service-items ul li {
    margin-bottom: 7px;
  }

  .main-services .main-service-items ul li p {
    font-size: 12px;
    margin: 0 6px 0 0;
  }

  .main-services .main-service-items ul li p strong {
    font-size: 12px;
  }

  .main-services .main-services-flex .main-service-items a.btn-primary {
    width: 60%;
    margin: 20px 0 10px 0;
  } */


}