@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #478E10;
  --secondary: #478E10;
  --tertiary: #555555;
  --light: #DFE4FD;
  --white: #DFE4FD;
  --dark: #000000;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

a {
  text-decoration: none;
}

section {
  padding: 60px 0px;
}

@media(max-width: 767px) {
  section {
    padding: 20px 0px;
  }
}

.text-primary {

  color: var(--primary) !important;
}

.btn-primary {

  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}


.bg-primary {
  background-color: var(--primary) !important;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
  font-family: "Jost", sans-serif;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

p {
  font-size: 16px;
}

@media(max-width: 767px) {
  p {
    font-size: 12px;
    text-align: justify;
  }
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.feature-item:hover #ser-btn {
  background-color: var(--dark) !important;
  color: #fff !important;
}


/*** Navbar ***/
.fixed-top {
  transition: .5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .navbar-brand img {
  width: 150px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  padding: 25px 15px;
  color: var(--tertiary);
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-menu {
  border-bottom: 5px solid var(--secondary) !important;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    background: #FFFFFF;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}

@media(max-width: 767px) {
  .navbar .navbar-brand img {
    width: 80px;
  }
}




/* sub-page start */
.sub-page {
  background: linear-gradient(#ffffff00), url(../img/banner/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #000000;
  display: flex;
  padding: 200px 0px;
}

.sub-page-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.sub-page-name h1 {
  font-size: 30px;
  font-weight: 600;
  /* text-transform: uppercase; */
}


.sub-page-name p a {
  color: #000000;
  font-weight: 600;
}

@media(max-width: 767px) {
  .sub-page {
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    padding: 30px 0px;
    background-size: none;
  }

  .sub-page-name {
    margin-top: 82px;
  }

  .sub-page-name h1 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .sub-page-name p a {
    color: #ffffff;
    font-weight: 600;
  }
}

/* sub-page css end */


/* fixed start */

.fixed-icon {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 70%;
  left: 5px;
  z-index: 2;
}

.fixed-icon2 {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 80%;
  left: 5px;
  z-index: 2;
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  z-index: 1;
}

.carousel-caption h1 {
  color: #011A41;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
  border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
  border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
    /* background-color: #011A41; */
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



/* about card css start */

.about-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  min-height: 240px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 700 !important;
  color: var(--primary);
}

@media(max-width: 767px) {
  .about-card {
    min-height: 190px;
  }
}

/* about card css end */



/*** service Start ***/
.service-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  border-radius: 10px;
  /* overflow: hidden; */

}

.service-post img {
  border-radius: 10px;
  width: 100%;
  transition: 0.5s ease-out;
}

.service-post {
  margin-bottom: 12px;
}

.service-card:hover .service-post img {
  transform: scale(1.06);
}

.ser-content {
  padding: 5px;
  /* text-align: center; */
}

.service-name h3 {
  color: var(--dark);
  font-size: 18px;
}


.service-btn {
  transform: translateY(30px);
  justify-content: end;
  display: flex;
  text-align: end;
}


.service-btn a i {
  background-color: var(--primary);
  padding: 10px 16px;
  color: var(--light);
  font-size: 18px;
  border-radius: 50%;
}

/*** service End ***/





/* success style start */
.success-form {
  margin-top: 150px;
}

.success-form .success-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}

.success-form .success-head i {
  color: #87bd48;
  font-size: 100px;
  border: 10px solid #87bd48;
  border-radius: 50%;
  padding: 15px 22px;
}

.success-form .success-head h1 {
  color: #155391;
  margin: 13px 0 0;
}

.success-form .success-head p {
  margin-bottom: 28px !important;
}

.success-form .success-head a {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
}

/*success style end */

/* why choose us start */

.why-us .why-us-box,
.why-us .why-us-box * {
  transition: .5s;
}

.why-us .why-us-box {
  text-align: justify;
}

.why-us .why-us-box:hover {
  background: var(--primary);
  border-color: var(--primary) !important;
}

.why-us .why-us-box:hover * {
  color: #FFFFFF !important;
}

/* why choose us end */



/* blogs css start */

.blog-section {
  background-color: #F8F9FA;
}

.blog-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.blog-card .blog-post img {
  border-radius: 10px;
}



.blog-name h3 {
  position: relative;
  padding-left: 12px;
  font-weight: 600;
  font-size: 20px;
}

.blog-name h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.blog-btn {
  background-color: var(--primary);
  padding: 5px;
  text-align: center;
}

.blog-btn a {
  color: #fff;
  font-weight: 500;
}

.date {
  text-align: end;
}

@media(max-width: 767px) {
  .date {
    font-size: 12px;
  }

  .success-form {
    margin-top: 70px;
  }
}

/* blog css end */


/* blog detail css start */
.blog-detail-post {
  margin-bottom: 20px;
}

.name-blog-detail h2 {
  font-size: 29px;
  font-weight: 600;
}

.blog-detail-post {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
  border-radius: 10px;
}

.blog-detail-post img {
  border-radius: 10px;
}

.related-blog {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 5px;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}



.related-blog a {
  text-decoration: none;


}

.related-blog .realted-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

}

.related-blog .realted-img img {
  height: 100%;
  width: 100%;
}

.related-blog .related-blog-content {
  padding: 5px 5px 5px 0px;
}

.related-blog .related-blog-content h2 {
  font-size: 16px;
  color: #000;
}

.related-blog .related-blog-content p {
  color: #000;
}



@media(max-width: 767px) {
  .name-blog-detail h2 {
    font-size: 20px;
  }

  .detail-blog {
    margin-bottom: 25px;
  }
}

/* blog detail css end */


/* apraoach css start */

.approach-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 190px;
  min-height: 190px;
}

.approach-card p {
  font-size: 18px;
  font-weight: 600;
}

.approach-card:hover {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: 0.5s ease-out;
  transform: scale(1.06);
}

.card1 {
  max-height: 140px;
  min-height: 140px;
}

@media(max-width: 7991px) {
  .approach-card {
    margin-bottom: 20px;

  }
}

@media(max-width: 767px) {
  .approach-card {
    margin-bottom: 20px;
    max-height: 120px;
    min-height: 120px;
  }

  .card1 {
    max-height: 100px;
    min-height: 100px;
  }

  .approach-card p {
    font-size: 12px;
    font-weight: 600;
  }
}

/* aproach css end */


/* team css start  */
.about-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  height: 100%;
}

.about-detail-content {
  margin-bottom: 30px;
}

.about-detail-content p {
  font-size: 18px;
  line-height: 1.7;
}

.author-name {
  text-align: end;
}

.about-post {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.author-name h3 {
  font-size: 20px;
  font-weight: 600;
}

.author-name span {
  font-weight: 600;
  text-align: start !important;
}

@media(max-width: 767px) {
  .about-post {
    margin-bottom: 13px;
  }

  .about-detail-content p {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-detail-content {
    margin-bottom: 0px;
  }

  .author-name h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
  }

  .row1 {
    margin-bottom: 25px;
  }
}

/* our team css end */


/* individaul css start */

.contact-details-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-column {
  flex: 1;
  min-width: 250px;
  margin-right: 15px;
}

.form-column:last-child {
  margin-right: 0;
}

.single-box {
  position: relative;
  margin-bottom: 15px;
}

.single-box input,
.single-box select,
.single-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
  box-sizing: border-box;
  outline: none;
}

.single-box input:focus,
.single-box select:focus,
.single-box textarea:focus {
  border-color: #4CAF50;
}

.single-box textarea {
  resize: vertical;
  height: 100px;
}

.single-box .text-danger {
  position: absolute;
  top: 40px;
  left: 12px;
  font-size: 12px;
}

.button2 {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 12px 30px;
  cursor: pointer;
}

.button2:hover {
  background-color: #45a049;
}

/* Responsive Layout */
@media (max-width: 767px) {
  .contact-details-form {
    margin-bottom: 20px;
  }

  .form-row {
    display: block;
  }

  .form-column {
    width: 100%;
    margin-bottom: 10px;
  }

  .captcha-para p {
    text-align: center;
    font-size: 18px;
  }

  .refresh-button button {
    width: 100%;
    padding: 10px;
  }
}

/* Input Fields Styling */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  font-size: 16px;
  color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #3498db;
}

select {
  padding: 12px;
  border-radius: 5px;
}

select option {
  padding: 10px;
}

/* Captcha Section */
.captcha-para p {
  font-weight: bold;
  font-size: 18px;
  color: #2c3e50;
}

.refresh-button {
  display: flex;
  justify-content: center;
}

.refresh-button button {
  background-color: #f39c12;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.refresh-button button:hover {
  background-color: #e67e22;
}

/* Error message styling */
.text-danger {
  color: #e74c3c;
  font-size: 12px;
}

/* end individual */


/*** Footer ***/
.footer {
  background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
  background-size: contain;
}

.footer a {
  text-decoration: none;
}

.footer-logo img {
  height: 140px;
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 50%;
    border-left: 1px dashed rgba(255, 255, 255, .2);
  }
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, .5);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, .5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer h1.text-primary {
  color: var(--secondary) !important;
}


.copyright {
  border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
  color: var(--white);
}

.copyright a:hover {
  color: var(--primary);
}

@media(max-width: 767px) {
  .footer-logo img {
    height: 90px;
    margin-bottom: 15px;
  }

}


/* contact us start */


.contact-sec {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/banner/banner-1-mint-mind.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-sec .list-group-item {
  display: flex;
  justify-content: space-between;
  color: var(--light);
  background: rgba(0, 0, 0, .15);
  border-color: rgba(255, 255, 255, .15);
}

.contact-sec .table {
  color: var(--light);
  background: rgba(0, 0, 0, .15);
}

.contact-sec .table td {
  padding: .5rem 1rem;
  border-color: rgba(255, 255, 255, .15);
}

@media (min-width: 280px) {
  .contact-sec .table td {
    padding: .5rem 0.1rem;
    border-color: rgba(255, 255, 255, .15);
  }
}

.contact-sec .table tr:last-child td {
  border: none;
}

.contact-sec .table .btn {
  background-color: transparent !important;
  border-color: var(--primary) !important;
}

.contact-sec .table .btn:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}


.callback {
  position: relative;
}

.callback::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(19, 31, 77, 0.95), rgba(19, 31, 77, .95)), url(../img/contact/callback-bg.png);
  z-index: -1;
}

.callback form input,
textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px !important;
}

/* 
.contact-icon i{
    color: var(--secondary);
} */
.contact-add-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

/* contact us end */


.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: url(../img/index-img/page-3.jpeg) top left no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--tertiary);
}













/* captcha new design start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-top: 1px solid #757070;
  border-right: 1px solid #757070;
  border-bottom: 1px solid #757070;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 22px;
  padding: 10px;
  height: 100%;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--purple);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}


@media screen and (max-width:600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #757070;
    border-right: 1px solid #757070;
    border-bottom: 1px solid #757070;
    margin-top: 3px;
  }
}

.bg-danger22 {
  background-color: var(--primary) !important;
}




.mint-mind-map iframe {
  width: 100%;
  height: 450px;
}

@media(max-width: 767px) {
  .add-to p {
    text-align: center;
  }

  .mint-mind-map iframe {
    width: 100%;
    height: 250px;
  }
}


/* captcha new design end */