* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  --primary-color: #1d569e;
  --secondary-color: #37b4aa;
  --text-color: #999999;
}

p {
  color: var(--text-color);
}

h6,
h5,
h4,
h3,
h2,
h1 {
  color: var(--primary-color);
  font-size: 35px;
  font-weight: bold;
  line-height: 1.1;
}

.hide-scrollbar {
  overflow: hidden;
}

.container {
  max-width: 1540px;
}

header {
  position: fixed;
  width: 100%;
  transition: all 0.4s;
  background-color: #fff;
  z-index: 99;
  top: 0;
  min-height: 75px;
  display: flex;
  align-items: center;
  height: 65px;
}

.header-active {
  box-shadow: 0px 3px 6px #00000029;
  transition: all 0.4s;
}

.navbar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.nav-bar li a {
  text-decoration: none;
  margin: 0 20px;
  color: var(--text-color);
  text-transform: uppercase;
}

.logo {
  position: absolute;
  left: 0;
}
.active-menu {
  color: var(--primary-color) !important;
}
.logo img {
  max-height: 25px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.line {
  height: 2px;
  width: 20px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
}

.navbar-div {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.nav-bar {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.search-box {
  position: absolute;
  top: 54px;
  right: 0;
  max-width: 250px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  transform: translateY(20px);
}

.search-box input {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #f2f2f2;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

input:focus {
  outline: none;
}

.search-box-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.social-media {
  position: absolute;
  right: 20px;
  display: none;
}

.social-media a {
  margin-right: 10px;
}

.search-icon {
  cursor: pointer;
  position: absolute;
  right: 0;
}

/* buttons  */
.primary-btn {
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 23px;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s;
}

.primary-btn:hover {
  background-color: var(--primary-color);
  transition: all 0.4s;
  color: #fff;
}

/* welcome section */
.welcome-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: -20%;
  margin-bottom: 50px;
  overflow: hidden;
}
.background-image {
  position: absolute;
  right: -100px;
  height: 100%;
  z-index: -1;
}
.welcome-section h1 {
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: bold;
}

.welcome-section p {
  max-width: 400px;
  margin: 10px 0;
  color: #fff;
}

.lg-title {
  font-size: 10vw;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 50%;
  top: -15px;
  opacity: 0.05;
  transform: translate(-50%, 0);
  font-weight: bold;
  z-index: -1;
}

/* about-home */
.section {
  padding: 150px 0;
  position: relative;
}

.about-home p {
  margin-bottom: 0;
}
.about-home h3 {
  margin-bottom: 10px;
}
.center-items {
  display: flex;
  align-items: center;
}

.service-box {
  margin-bottom: 30px;
}

.service-box h4 {
  color: #646464;
  font-size: 25px;
  margin: 5px 0;
}

.service-box img {
  height: 40px;
}

.service-box p {
  max-width: 300px;
}

.what-we-do p {
  margin-bottom: 0;
}
.standby {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.8s;
}
.fadein {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.making-energy {
  background-color: var(--primary-color);
  padding: 100px 0;
  position: relative;
}
.making-energy p {
  color: #fff;
  margin-bottom: 5px;
}
.making-energy h3 {
  color: #fff;
}
.making-energy h4 {
  color: var(--secondary-color);
}
.making-energy h2 {
  font-size: 45px;
  color: var(--secondary-color);
}
.making-energy-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10px);
  max-height: 445px;
}
.projects-home {
  margin-top: 100px;
}
.making-energy-second {
  background-image: url(../images/energy-line.png);
  background-size: cover;
  background-position: center;
}
.text-center {
  text-align: center;
}
.gallery-home {
  margin: 120px 0 50px 0;
}
.gallery-image {
  border-radius: 23px;
  overflow: hidden;
  display: flex;
  margin-bottom: 22px;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-div p {
  margin-bottom: 20px;
}
.go-green {
  background-image: url(../images/Team.jpg);
  padding: 40px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.go-green-div {
  max-width: 750px;
  text-align: center;
  display: block;
  margin: auto;
  padding: 30px 50px;
  border-radius: 23px;
}
.go-green-div p {
  margin: 10px 0;
}
.go-green-div h3 {
  margin-bottom: 10px;
}
/* footer */
footer {
  background-color: var(--primary-color);
  padding: 50px 0;
}
footer .row {
  align-items: flex-end;
}
.footer-social-icons {
  text-align: center;
  margin-bottom: 20px;
}
.footer-social-icons img {
  margin: 0 10px;
}
.footer-logo img {
  max-height: 55px;
}
.footer-logo p {
  color: #fff;
}
.footer-contact p {
  color: #fff;
  margin-bottom: 5px;
  text-align: right;
}
.wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #fff;
  display: grid;
  place-items: center;
  transition: opacity 0.25s, visibilty 1s;
}
.fade {
  opacity: 0;
  visibility: hidden;
}

.fade .loading {
  display: none;
}

@keyframes identifier {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading {
  height: 60px;
  width: 60px;
  transform: rotate(45deg);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  border-bottom-color: #fff;
  border-left-color: #fff;
  animation: identifier 0.4s linear infinite;
}
.projects-image {
  border-radius: 23px;
  overflow: hidden;
  height: 100%;
}
.projects-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-details {
  background-color: #f8f8f8;
  padding: 50px;
  border-radius: 23px;
  position: absolute;
  left: -150px;
  bottom: -50px;
  z-index: 9;
  max-width: 570px;
}
.projects-details-2 {
  left: auto;
  right: -150px;
}
.order-projects-2 {
  order: 12;
  margin-top: 150px !important;
}
.projects-details h4 {
  margin-bottom: 10px;
  font-size: 25px;
}
.project-col {
  position: relative;
}
.swiper-home {
  position: relative;
  overflow: hidden;
  padding-bottom: 130px;
}
.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 10px;
  color: var(--primary-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 45px;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: calc(50% - 50px);
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: calc(50% - 50px);
}
.about-img {
  border-radius: 23px;
  overflow: hidden;
  max-height: 500px;
  margin: 0 0 0 50px;
  display: flex;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about {
  margin: 120px 0 0 0;
}
.about h6 {
  margin-bottom: 30px;
}
.about-details h3 {
  margin-bottom: 30px;
}
.powered-by {
  background-color: var(--primary-color);
  padding: 100px 0;
  position: relative;
}
.powered-by-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  height: 100%;
}
.powered-by-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.powered-by-title h3 {
  color: #fff;
}
.service-about {
  position: relative;
  margin: 150px 0;
}
.service-about::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 38%;
  z-index: -1;
  background-color: var(--primary-color);
}
.service-about .row {
  align-items: center;
}
.service-about-image {
  height: 600px;
  display: flex;
  overflow: hidden;
  border-radius: 0 23px 23px 0;
  margin: 0 50px 0 0;
}
.service-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-about-details p {
  margin-bottom: 40px;
}
.partners {
  margin: 100px 0;
}
.partners-div {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.projects-page {
  background-image: url(../images/project-background.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.projects-page::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to left,
    rgba(234, 244, 244, 0.76) 102%,
    rgba(234, 244, 244, 0.79) 25%
  );
}
.projects-page .col-md-8 {
  position: relative;
}
.contact {
  margin: 0;
  position: relative;
  padding: 140px 0 50px 0;
}
.form-section {
  background-color: var(--primary-color);
  padding: 100px 0;
}
.form-div input {
  padding: 10px !important;
  background-color: transparent !important;
  border: 0 !important;
  width: 100% !important;
  color: #fff !important;
  border-bottom: 2px solid #fff !important;
  margin-bottom: 15px !important;
  font-size: 16px !important;
  max-width: 100% !important;
}
.form-div textarea {
  padding: 10px !important;
  background-color: transparent !important;
  border: 0 !important;
  width: 100% !important;
  color: #fff !important;
  border-bottom: 2px solid #fff !important;
  margin-bottom: 15px !important;
  font-size: 16px !important;
  min-height: 150px !important;
}
.wpforms-submit {
  background-color: var(--secondary-color) !important;
  display: inline-block !important;
  padding: 12px 40px !important;
  border-radius: 23px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.4s !important;
  border: 0 !important;
}
textarea:focus {
  outline: none;
}

.form-div ::placeholder {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.contact-info {
  padding: 50px 30px;
  background-color: var(--secondary-color);
}
.contact-info p span {
  color: var(--primary-color);
  margin-top: 30px;
  display: block;
}
.contact-info p {
  color: #fff;
}
.contact-info p:first-child span {
  margin-top: 0;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
.team-box {
  border-radius: 23px;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
}
.team-image {
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-details h3 {
  font-size: 25px;
}
.making-energy-team {
  background-image: url(../images/team-path.png);
  background-color: var(--secondary-color);
}
.making-energy-team a {
  background-color: #fff;
  color: var(--secondary-color);
  display: block;
  margin: auto;
  text-align: center;
  max-width: 140px;
}
.making-energy-team h3 {
  color: #fff;
  margin-top: 30px;
}
.our-team-section {
  /* background-image: url(../images/team-backgroun-min.png); */
  padding: 175px 0;
  margin-bottom: 100px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.team-section {
  padding-bottom: 40px;
}
.team-background {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: -1;
  max-width: 85%;
}
.team-boxes-section {
  padding: 100px 0;
}
.projects-page-2 {
  margin-top: 0;
}
.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  border: none;
  background: none;
}
/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  transition: all 0.4s;
  background-color: transparent;
  border-radius: 5px;
  z-index: 10;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}

.welcome-section::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.22);
  content: "";
}
#myVideo {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: -1;
  min-width: 100%;
}
@media only screen and (max-width: 991px) {
  .modal {
    width: 98%;
  }
  .go-green-div {
    padding: 30px 0;
  }
  .order-projects-2 {
    order: 0;
    margin-top: 30px !important;
  }
  .partners-div {
    overflow-x: scroll;
  }
  .our-team-section {
    margin-bottom: 0;
    padding: 120px 0;
  }
  .team-details h3 {
    padding: 10px;
    font-size: 20px;
  }
  .our-team-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.42);
  }
  .our-team-section p {
    color: #fff;
  }
  .our-team-section h3 {
    color: var(--secondary-color);
  }
  .team-boxes-section {
    padding: 60px 0;
  }
  .team-background {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  .team-box {
    max-width: 300px;
    display: block;
    margin: 0 auto 15px;
  }
  .contact {
    padding: 40px 0 50px 0;
  }
  .form-section {
    padding: 60px 0;
  }
  .contact-info {
    padding: 20px;
    margin-top: 50px;
  }
  .partners {
    margin: 60px 0;
  }
  .partners-div img {
    margin: 0 30px;
    padding-bottom: 15px;
  }
  .search-box {
    right: 15px;
  }
  .service-about {
    margin: 70px 0;
  }
  .service-about::before {
    display: none;
  }
  .service-about-image {
    height: auto;
    margin: 0 0 25px 0;
    border-radius: 0;
  }
  .about-details h3 {
    margin-bottom: 15px;
  }
  .about {
    margin: 120px 0 20px 0;
  }
  .about-img {
    margin: 15px 0 0 0;
  }
  .powered-by-div {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
  .powered-by {
    padding: 0 0 40px 0;
  }
  .powered-by-title h3 {
    padding-top: 15px;
  }
  .swiper-home {
    padding-bottom: 80px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 25px;
  }
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: calc(50% - 30px);
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: calc(50% - 30px);
  }
  .projects-details {
    left: 0;
    max-width: 100%;
    margin-top: -30px;
    bottom: 0;
    position: relative;
    padding: 20px;
  }
  .search-icon {
    right: 55px;
    top: 22px;
  }
  header {
    min-height: 60px;
    align-items: flex-start;
  }
  header .col-md-12 {
    padding: 0;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 0;
  }
  .navbar-div {
    height: 100vh;
    padding-left: 0;
    align-items: center;
    display: none;
  }

  .active {
    background-color: #fff;
    display: flex;
    justify-content: center;
  }
  .welcome-section h1 {
    font-size: 35px;
    color: var(--secondary-color);
  }
  .nav-bar {
    display: block;
  }

  .logo {
    top: 23px;
    left: 20px;
  }
  .logo img {
    max-height: 22px;
  }

  .hamburger {
    top: 24px;
    right: 15px;
  }

  .nav-bar li a {
    margin: 15px 0;
    display: block;
  }

  .nav-bar li {
    text-align: center;
  }

  .social-media {
    bottom: 80px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .lg-title {
    font-size: 40px;
  }
  .section {
    padding: 50px 0;
  }
  h6,
  h5,
  h4,
  h3,
  h2,
  h1 {
    font-size: 30px;
  }
  .primary-btn {
    padding: 8px 30px;
  }
  .about-home p {
    margin-top: 10px;
  }
  .what-we-do {
    margin: 70px 0;
  }
  .what-we-do p {
    margin-bottom: 25px;
  }
  .service-box h4 {
    font-size: 22px;
  }
  .service-box img {
    height: 35px;
  }
  .making-energy-img {
    position: absolute;
    left: auto;
    bottom: 10px;
    transform: translate(0, 0);
    max-height: 144px;
    right: 10px;
  }
  .making-energy h2 {
    font-size: 35px;
  }
  .making-energy {
    padding: 60px 0;
  }
  footer {
    text-align: center;
  }
  .footer-logo p {
    margin: 10px 0 20px 0;
  }
  .footer-contact {
    margin-top: 15px;
  }
  .footer-contact p {
    margin-bottom: 3px;
    text-align: center;
  }

  .welcome-section {
    margin-top: 0;
    height: 100vh;
  }

  .welcome-section p {
    color: #fff;
  }
  .footer-social-icons {
    margin-bottom: 0;
  }
}

/* colomuns css */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
.read-more {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 11px;
  display: inline-block;
}
.details-img {
  width: 100%;
  margin-bottom: 20px;
}
