/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--gotham-book);
}

:root {
  --theme-orange: #e28549;
  --sub-color: #ffeee2;
  --theme-blue: #121123;
  --marathi-font-color: #015066;
  --gotham-book: 'gotham-book';
  --gotham-medium: 'gotham-medium';
  --gotham-bold: 'gotham-bold';
  --bodoni_book: 'bodoni_book';
  --bodoni_book_italic: 'bodoni_book_italic';
  --playfair-display-regular: 'playfair-display-regular';
  --playfair-display-medium: 'playfair-display-medium';
  --playfair-display-semibold: 'playfair-display-semibold';
  --mukta-regular: 'mukta-regular';
  --mukta-semibold: 'mukta-semibold';
}

@font-face {
  font-family: "gotham-book";
  src: url("../fonts/gotham-book.woff2") format("woff2"), url("../fonts/gotham-book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gotham-medium";
  src: url("../fonts/gotham-medium.woff2") format("woff2"), url("../fonts/gotham-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gotham-bold";
  src: url("../fonts/gotham-bold.woff2") format("woff2"), url("../fonts/gotham-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair-display-regular";
  src: url("../fonts/PlayfairDisplay-regular.woff2") format("woff2"), url("../fonts/PlayfairDisplay-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair-display-medium";
  src: url("../fonts/PlayfairDisplay-medium.woff2") format("woff2"), url("../fonts/PlayfairDisplay-medium.woff2") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair-display-semibold";
  src: url("../fonts/PlayfairDisplay-semibold.woff2") format("woff2"), url("../fonts/PlayfairDisplay-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bodoni_book";
  src: url("../fonts/bodoni_book.woff2") format("woff2"), url("../fonts/bodoni_book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bodoni_book_italic";
  src: url("../fonts/bodoni_book_italic.woff2") format("woff2"), url("../fonts/bodoni_book_italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "mukta-regular";
  src: url("../fonts/mukta-regular.woff2") format("woff2"), url("../fonts/mukta-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "mukta-semibold";
  src: url("../fonts/mukta-semibold.woff2") format("woff2"), url("../fonts/mukta-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 80%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

.sub-heading {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .sub-heading {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.heading {
  font-family: var(--playfair-display-regular);
  font-size: 30px;
}
@media screen and (max-width: 1440px) {
  .heading {
    font-size: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .heading {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 22px;
  }
}
.heading.marathi-head {
  font-family: var(--mukta-regular);
}
.heading.underline {
  border-bottom: 1px solid var(--theme-orange);
}

.justify {
  text-align: justify;
}

.theme-btn {
  position: relative;
  border: 1px solid var(--theme-orange);
  background-color: transparent;
  padding: 10px 30px;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s ease;
  font-family: var(--gotham-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  .theme-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 991px) {
  .theme-btn {
    font-size: unset;
    padding: 10px 30px;
  }
}
@media screen and (max-width: 600px) {
  .theme-btn {
    font-size: 14px;
  }
}
.theme-btn:hover {
  color: #fff;
}
.theme-btn:hover:before {
  width: 100%;
  height: 100%;
}
.theme-btn:hover:after {
  width: 100%;
  height: 100%;
}
.theme-btn:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 50%;
  background-color: var(--theme-orange);
  top: 0;
  left: 0;
  border-radius: 0 0 20px 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.theme-btn:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 45%;
  background-color: var(--theme-orange);
  bottom: 0;
  right: 0;
  border-radius: 20px 0 0 0;
  opacity: 0.2;
  transition: all 0.6s ease;
}
.theme-btn.btn2 {
  color: #fff;
}
.theme-btn.btn2:before {
  width: 100%;
  height: 100%;
}
.theme-btn.btn2:after {
  width: 100%;
  height: 100%;
}

.career-btn {
  background-color: var(--theme-orange);
  color: #fff;
  border: 0 !important;
  padding: 11px 50px;
  text-transform: uppercase;
  transition: all 0.6s ease;
}
.career-btn:hover {
  background-color: #b3693a;
}

.owl-nav {
  position: absolute;
  right: 0;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: relative;
  margin: 20px 5px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 600px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    margin: 10px 2px;
  }
}
.owl-nav .owl-prev:hover:before,
.owl-nav .owl-next:hover:before {
  opacity: 0;
  width: 0;
  height: 0;
}
.owl-nav .owl-prev:hover:after,
.owl-nav .owl-next:hover:after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
  color: #fff;
}
.owl-nav .owl-prev:before,
.owl-nav .owl-next:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--theme-orange);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.owl-nav .owl-prev:after,
.owl-nav .owl-next:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: var(--theme-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  font-size: 25px !important;
  margin: 5px;
  color: var(--theme-blue);
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .owl-nav .owl-prev i,
  .owl-nav .owl-next i {
    font-size: 20px;
    margin: 5px;
  }
}

.banner {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .banner .img {
    overflow: hidden;
  }
}
.banner .item {
  position: absolute;
  bottom: 0;
  left: 10%;
  animation: fadeLeft 2s;
}
.banner .item.align-right {
  left: unset;
  right: 5%;
  animation: fadeRight 2s;
  text-align: right;
}
.banner .item.bottom-space {
  bottom: unset;
  top: 50%;
  transform: translate(0, -40%);
}
.banner .item ul li {
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 10px 0;
}
@media screen and (max-width: 1280px) {
  .banner .item ul li {
    margin: 0 0;
  }
}
@media screen and (max-width: 1680px) {
  .banner .item img {
    width: 85%;
  }
}
@media screen and (max-width: 1440px) {
  .banner .item img {
    width: 75%;
  }
}
@media screen and (max-width: 1366px) {
  .banner .item img {
    width: 70%;
  }
}
@media screen and (max-width: 1280px) {
  .banner .item img {
    width: 68%;
  }
}
@media screen and (max-width: 1024px) {
  .banner .item img {
    width: 50%;
  }
}
.banner .txt {
  position: absolute;
  top: 55%;
  left: 0%;
  transform: translateY(-50%);
  animation: fadeUp 1s;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .banner .txt {
    top: 60%;
  }
}
.banner .txt.diff {
  top: 60%;
}
.banner .txt.align-right {
  left: unset;
  transform: unset;
  width: unset;
  right: 20%;
  animation: fadeRight 2s;
}
@media screen and (max-width: 1680px) {
  .banner .txt.align-right {
    right: 15%;
  }
}
@media screen and (max-width: 1600px) {
  .banner .txt.align-right {
    right: 10%;
  }
}
@media screen and (max-width: 600px) {
  .banner .txt .heading {
    font-size: 18px;
  }
}
.banner .project-txt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  animation: circle-full 1.5s ease-in-out forwards;
}
.banner .project-txt.right {
  right: 20%;
}
.banner .project-txt h1 {
  font-size: 48px;
  font-family: var(--bodoni_book);
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .banner .project-txt h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .banner .project-txt h1 {
    font-size: 25px;
  }
}
.banner .project-txt h1 span {
  text-transform: lowercase;
  font-family: var(--bodoni_book_italic);
}
.banner .project-txt p, .banner .project-txt .size16 {
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .banner .project-txt img {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .banner .project-txt img {
    width: 50%;
  }
}
.banner .heading.marathi-head {
  font-family: var(--mukta-regular);
  font-size: 52px;
}
@media screen and (max-width: 1680px) {
  .banner .heading.marathi-head {
    font-size: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .banner .heading.marathi-head {
    font-size: 30px;
  }
}

.breadcrumb {
  position: absolute;
  z-index: 99;
  margin-bottom: 0;
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .breadcrumb {
    left: 10px;
  }
}
.breadcrumb .breadcrumb-item {
  color: #000;
  font-family: var(--gotham-medium);
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .breadcrumb .breadcrumb-item {
    padding-left: 0.2rem;
    font-size: 10px;
  }
}
.breadcrumb .breadcrumb-item:before {
  color: var(--theme-orange);
}
@media screen and (max-width: 600px) {
  .breadcrumb .breadcrumb-item:before {
    padding-right: 0.2rem;
  }
}
.breadcrumb .breadcrumb-item.active {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
}
.breadcrumb .breadcrumb-item a {
  color: #000;
  text-decoration: none;
  font-family: var(--gotham-medium);
}

.desc {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .desc {
    font-size: 10px;
  }
}
@media screen and (max-width: 1440px) {
  .desc.banner-desc {
    bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .desc.banner-desc {
    bottom: 0;
  }
}

.mukta-regular {
  font-family: var(--mukta-regular) !important;
}

.marathi-font-color {
  color: var(--marathi-font-color);
}

.left-curve {
  border-radius: 200px 0 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1680px) {
  .left-curve {
    border-radius: 150px 0 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .left-curve {
    border-radius: 100px 0 0 0;
  }
}
@media screen and (max-width: 991px) {
  .left-curve {
    border-radius: 0 100px 0 0;
  }
}

.right-curve {
  border-radius: 0 200px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1680px) {
  .right-curve {
    border-radius: 0 150px 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .right-curve {
    border-radius: 0 100px 0 0;
  }
}

.body-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.body-overlay.is-active {
  display: block;
}

@media screen and (max-width: 991px) {
  .orderChange {
    order: 2;
  }
}

@media screen and (max-width: 991px) {
  .right-space {
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .right-space {
    padding-right: unset;
  }
}

@media screen and (max-width: 600px) {
  small {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 400px) {
  small {
    font-size: 0.65em;
  }
}

img {
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  small {
    font-size: 10px;
  }
}
@media screen and (max-width: 991px) {
  small {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  small {
    font-size: 11px;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  top: 30px;
  z-index: 999;
  transition: all 0.6s ease;
  padding: 0;
}
@media screen and (max-width: 1440px) {
  .navbar {
    top: 0;
  }
}
@media screen and (max-width: 991px) {
  .navbar {
    background-color: var(--theme-blue);
  }
}
.navbar:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  left: 0;
  bottom: 0;
}
.navbar.scrolled {
  top: 0;
  background-color: var(--theme-blue);
}
.navbar.bgvlr {
  background-color: var(--theme-blue);
  top: 0;
}
.navbar .container {
  align-items: end;
}
@media screen and (max-width: 991px) {
  .navbar .container {
    max-width: 100%;
    align-items: center;
    padding: 0;
  }
}
.navbar .navbar-brand {
  padding: 15px 0;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-brand {
    width: 20%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    margin-left: 50px;
    padding: 20px 0;
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    margin-left: 25px;
    padding: 15px 0;
    width: 40%;
  }
}
.navbar .navbar-toggler {
  border: none;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    margin-right: 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-toggler {
    margin-right: 25px;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--gotham-medium);
  margin: 0 10px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1280px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 12px;
    margin: 0 7px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3294117647);
    margin: 0;
    padding: 15px 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0;
    padding: 15px 25px;
  }
}
.navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  transition: all 0.6s ease;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link:before {
    height: 1px;
    border-radius: 0;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #e28549;
    transition: all 0.6s ease;
  }
}
.navbar .navbar-nav .nav-item .nav-link.active:before, .navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}
.navbar .navbar-nav .nav-item.dropdown {
  position: relative;
}
.navbar .navbar-nav .nav-item.dropdown .arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 5px;
  display: unset;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item.dropdown .arrow {
    background-color: var(--theme-orange);
    width: 10%;
    height: 56px;
    top: 27px;
    border: 1px solid rgba(255, 255, 255, 0.3294117647);
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item.dropdown .arrow {
    width: 13%;
  }
}
@media screen and (max-width: 400px) {
  .navbar .navbar-nav .nav-item.dropdown .arrow {
    width: 15%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item.dropdown .arrow:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  margin-top: -1px;
  border-radius: 0;
  padding: 0;
  left: 9px;
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    left: 4px;
  }
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
  padding: 10px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
    padding: 10px 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 400px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
    font-size: 14px;
  }
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a:hover {
  background-color: var(--theme-orange);
  color: #fff;
}

#mainSlider {
  position: relative;
}
#mainSlider .carousel-item img {
  animation: zoom-in 10s;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-item img {
    animation: unset;
  }
}
#mainSlider .carousel-item img.no-zoom {
  animation: unset;
}
#mainSlider .carousel-item .carousel-caption {
  left: unset;
  right: 10%;
  bottom: unset;
  top: 50%;
  transform: translate(0, -50%);
}
#mainSlider .carousel-item .carousel-caption.first {
  width: 55%;
  top: 40%;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-item .carousel-caption.first {
    width: 60%;
    top: 55%;
  }
}
@media screen and (max-width: 1600px) {
  #mainSlider .carousel-item .carousel-caption.first {
    width: 62%;
  }
}
@media screen and (max-width: 1366px) {
  #mainSlider .carousel-item .carousel-caption.first {
    width: 65%;
    right: 5%;
  }
}
#mainSlider .carousel-item .carousel-caption.first .item {
  position: relative;
  opacity: 0;
}
#mainSlider .carousel-item .carousel-caption.first .item.view-1 {
  animation: circle-full 1.5s ease-in-out forwards;
}
#mainSlider .carousel-item .carousel-caption.first .item.view-2 {
  animation: circle-full 1.5s ease-in-out 0.5s forwards;
}
#mainSlider .carousel-item .carousel-caption.first .item.view-3 {
  animation: circle-full 1.5s ease-in-out 1s forwards;
}
#mainSlider .carousel-item .carousel-caption.first .item.no-divider:before {
  display: none;
}
#mainSlider .carousel-item .carousel-caption.first .item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120%;
  background-color: #fff;
  top: -10%;
  left: 0;
  animation: fallDown 4s;
}
#mainSlider .carousel-item .carousel-caption.first .item h2 {
  font-size: 40px;
  font-family: var(--playfair-display-semibold);
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption.first .item h2 {
    font-size: 35px;
  }
}
#mainSlider .carousel-item .carousel-caption.first .item p {
  font-family: var(--gotham-medium);
  text-transform: unset;
}
#mainSlider .carousel-item .carousel-caption.second {
  animation: circle-full 2s ease-in-out forwards;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.second {
    right: 5%;
  }
}
#mainSlider .carousel-item .carousel-caption.second h1 {
  font-size: 48px;
  font-family: var(--bodoni_book);
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption.second h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.second h1 {
    font-size: 30px;
  }
}
#mainSlider .carousel-item .carousel-caption.second h1 span {
  text-transform: lowercase;
  font-family: var(--bodoni_book_italic);
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.second p {
    font-size: 14px;
    line-height: 16px;
  }
}
#mainSlider .carousel-item .carousel-caption.third {
  animation: circle-full 2s ease-in-out forwards;
}
#mainSlider .carousel-item .carousel-caption.third h1 {
  font-size: 36px;
  font-family: var(--playfair-display-semibold);
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption.third h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.third p {
    font-size: unset;
  }
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption img {
    width: 50%;
  }
}
#mainSlider .carousel-item .carousel-caption p {
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption p {
    font-size: 15px;
    line-height: 18px;
  }
}
@media screen and (max-width: 1280px) {
  #mainSlider .carousel-item .carousel-caption p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption p {
    font-size: 11px;
    line-height: 13px;
  }
}
#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
  top: unset;
  width: unset;
  bottom: 100px;
  opacity: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    bottom: 10px;
  }
}
#mainSlider .carousel-control-prev:before,
#mainSlider .carousel-control-next:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1668px) {
  #mainSlider .carousel-control-prev:before,
  #mainSlider .carousel-control-next:before {
    width: 20px;
  }
}
#mainSlider .carousel-control-prev {
  left: unset;
  right: 13%;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-prev {
    right: 15%;
  }
}
@media screen and (max-width: 600px) {
  #mainSlider .carousel-control-prev {
    right: 20%;
  }
}
#mainSlider .carousel-control-prev:hover:before {
  opacity: 1;
  left: 25px;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-control-prev:hover:before {
    left: 20px;
  }
}
#mainSlider .carousel-control-prev:before {
  left: -20px;
}
#mainSlider .carousel-control-next {
  right: 10%;
}
#mainSlider .carousel-control-next:hover:before {
  opacity: 1;
  right: 25px;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-control-next:hover:before {
    right: 20px;
  }
}
#mainSlider .carousel-control-next:before {
  right: -20px;
}

@media screen and (max-width: 600px) {
  .hm-sec01 {
    background-color: var(--sub-color);
  }
}
.hm-sec01 .facts {
  position: relative;
  padding: 50px;
  background-color: var(--sub-color);
  margin-top: -50px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .hm-sec01 .facts {
    background-color: unset;
    margin-top: 0;
    padding: 30px;
  }
}
.hm-sec01 .facts .counter {
  position: relative;
  text-align: center;
}
.hm-sec01 .facts .counter:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: gray;
  top: 0;
  left: -60px;
}
@media screen and (max-width: 1024px) {
  .hm-sec01 .facts .counter:before {
    left: -30px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec01 .facts .counter:before {
    display: none;
  }
}
.hm-sec01 .facts .counter .fact-number {
  font-size: 48px;
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .hm-sec01 .facts .counter .fact-number {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .hm-sec01 .facts .counter .fact-number {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec01 .facts .counter .fact-number {
    font-size: 40px;
  }
}
.hm-sec01 .facts .counter .fact-number span {
  font-family: var(--gotham-medium);
}
.hm-sec01 .facts .counter .fact-text {
  font-size: 18px;
  line-height: 20px;
  font-family: var(--gotham-medium);
  margin-bottom: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  .hm-sec01 .facts .counter .fact-text {
    font-size: unset;
    line-height: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .hm-sec01 .facts .counter .fact-text {
    font-size: 12px;
    line-height: 14px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec01 .facts .counter .fact-text {
    font-size: unset;
    line-height: 18px;
  }
}

.hm-sec02 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hm-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec02 {
    padding: 30px 0;
  }
}
.hm-sec02 .about-img {
  width: 80%;
}

.hm-sec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/home/project-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .hm-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec03 {
    padding: 30px 0;
    background-size: contain;
    background-repeat: repeat;
  }
}
.hm-sec03 .projects a {
  text-decoration: none;
}
.hm-sec03 .projects .item {
  border-radius: 10px;
  overflow: hidden;
}
.hm-sec03 .projects .item:hover .img img {
  transform: scale(1.1);
}
.hm-sec03 .projects .item:hover .txt:before {
  height: 98%;
}
.hm-sec03 .projects .item:hover .txt p {
  color: #fff;
}
.hm-sec03 .projects .item:hover .txt p.name {
  color: #fff;
}
.hm-sec03 .projects .item .img {
  overflow: hidden;
}
.hm-sec03 .projects .item .img img {
  transition: all 1s ease;
}
.hm-sec03 .projects .item .txt {
  position: relative;
  background-color: #fff;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  transition: all 0.6s ease;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .hm-sec03 .projects .item .txt {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec03 .projects .item .txt {
    padding: 15px;
  }
}
.hm-sec03 .projects .item .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-orange);
  top: 0;
  left: 0;
  border-top: 1px solid #fff;
  border-radius: 0 0 10px 10px;
  transition: all 0.6s ease;
  z-index: -1;
}
.hm-sec03 .projects .item .txt p {
  color: #000;
  margin-bottom: 0;
  line-height: 18px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .hm-sec03 .projects .item .txt p {
    font-size: 10px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec03 .projects .item .txt p {
    font-size: unset;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec03 .projects .item .txt p {
    font-size: 12px;
  }
}
.hm-sec03 .projects .item .txt p.name {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
  text-transform: uppercase;
  font-size: 18px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .hm-sec03 .projects .item .txt p.name {
    font-size: unset;
    line-height: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .hm-sec03 .projects .item .txt p.name {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec03 .projects .item .txt p.name {
    font-size: unset;
  }
}
@media screen and (max-width: 768px) {
  .hm-sec03 .projects .item .txt p.name {
    font-size: 14px;
  }
}

.hm-sec04 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
}
@media screen and (max-width: 991px) {
  .hm-sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec04 {
    padding: 30px 0;
  }
}
.hm-sec04 a {
  color: #000;
  text-decoration: none;
}
.hm-sec04 .head-sec {
  position: relative;
}
.hm-sec04 .head-sec:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120%;
  background-color: var(--theme-orange);
  top: -10%;
  right: 15%;
}
@media screen and (max-width: 1680px) {
  .hm-sec04 .head-sec:before {
    right: 8%;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec04 .head-sec:before {
    display: none;
  }
}
.hm-sec04 .item:hover .img img {
  transform: scale(1.2);
}
.hm-sec04 .item:hover .txt {
  color: #fff;
}
.hm-sec04 .item:hover .txt:before {
  height: 100%;
}
.hm-sec04 .item .img {
  overflow: hidden;
}
.hm-sec04 .item .img.left-curve {
  border-radius: 100px 0 0 0;
}
.hm-sec04 .item .img.right-curve {
  border-radius: 0 100px 0 0;
}
.hm-sec04 .item .img img {
  transition: all 1s ease;
}
.hm-sec04 .item .txt {
  position: relative;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .hm-sec04 .item .txt {
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec04 .item .txt {
    padding: 10px 20px;
  }
}
.hm-sec04 .item .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-orange);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.hm-sec04 .item .txt p {
  line-height: 18px;
}
@media screen and (max-width: 1024px) {
  .hm-sec04 .item .txt p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 991px) {
  .hm-sec04 .item .txt p {
    font-size: unset;
    line-height: 20px;
  }
}

.hm-sec05 {
  position: relative;
  padding: 200px 0;
  background-image: url(../images/home/testimonials-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  .hm-sec05 {
    padding: 150px 0;
  }
}
@media screen and (max-width: 1440px) {
  .hm-sec05 {
    padding: 100px 0;
  }
}
@media screen and (max-width: 1024px) {
  .hm-sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec05 {
    padding: 30px 0;
  }
}
.hm-sec05:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .hm-sec05:before {
    opacity: 1;
  }
}
.hm-sec05 .testimonials {
  color: #fff;
}
.hm-sec05 .testimonials p {
  font-size: 18px;
  line-height: 36px;
  font-style: italic;
}
@media screen and (max-width: 1440px) {
  .hm-sec05 .testimonials p {
    font-size: unset;
    line-height: unset;
  }
}
@media screen and (max-width: 600px) {
  .hm-sec05 .testimonials p {
    font-size: 16px;
  }
}
.hm-sec05 .testimonials p.name {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
}
.hm-sec05 .owl-carousel .owl-dots {
  margin-top: 10px;
}
.hm-sec05 .owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.6s ease;
}
.hm-sec05 .owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--theme-orange);
  width: 50px;
}

.abt-sec01 {
  position: relative;
  padding: 100px 0 200px;
  background-image: url(../images/about/01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  margin-top: 2px;
}
@media screen and (max-width: 991px) {
  .abt-sec01 {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec01 {
    padding: 50px 0;
    text-align: justify;
  }
}
.abt-sec01 a {
  text-decoration: none;
  color: #fff;
}

.abt-sec02 {
  padding: 0 0 100px;
  background-image: url(../images/about/02.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .abt-sec02 {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec02 {
    padding: 0 0 30px;
  }
}
.abt-sec02 .defination {
  position: relative;
  margin-top: -120px;
  border: 1px solid #c6beb2;
  background-color: #e6e3de;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  .abt-sec02 .defination {
    margin-top: -60px;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec02 .defination {
    margin-top: -40px;
  }
}
.abt-sec02 .defination .item {
  padding: 40px;
}
.abt-sec02 .defination .item .img {
  position: relative;
}
.abt-sec02 .defination .item .img span {
  position: absolute;
  font-size: 25px;
  font-family: var(--gotham-bold);
  top: 50%;
  transform: translate(0, -50%);
  right: -60px;
}
@media screen and (max-width: 600px) {
  .abt-sec02 .defination .item .img span {
    top: 280%;
    right: unset;
    left: 47%;
  }
}
@media screen and (max-width: 1280px) {
  .abt-sec02 .defination .item .txt p {
    font-size: 14px;
  }
}
.abt-sec02 .defination .item .txt p span {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
  text-transform: uppercase;
}
.abt-sec02 .first {
  position: relative;
}
.abt-sec02 .first:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--theme-orange);
  top: 0;
  right: 0;
  animation: fallDown 4s;
}
@media screen and (max-width: 991px) {
  .abt-sec02 .first:before {
    display: none;
  }
}
.abt-sec02 .txt h3 {
  font-family: var(--playfair-display-regular);
}

.abt-sec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/about/03.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .abt-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec03 {
    padding: 30px 0;
  }
}
.abt-sec03 a {
  color: var(--theme-orange);
  text-decoration: none;
}

.abt-sec04 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abt-sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec04 {
    padding: 30px 0;
  }
}

.abt-sec05 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/about/04.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abt-sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abt-sec05 {
    padding: 30px 0;
  }
}
.abt-sec05 .img img {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .abt-sec05 .img img {
    width: 100%;
  }
}

.CSR-sec01 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .CSR-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec01 {
    padding: 50px 0 30px;
  }
}
.CSR-sec01 .vector {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .CSR-sec01 .img img {
    width: 100%;
  }
}

.CSR-sec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/CSR-initiatives/04.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .CSR-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec02 {
    padding: 30px 0;
    background-size: contain;
    background-repeat: repeat;
  }
}
.CSR-sec02 .img img {
  width: 90%;
}
@media screen and (max-width: 991px) {
  .CSR-sec02 .img img {
    width: 100%;
  }
}

.CSR-sec03 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .CSR-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec03 {
    padding: 30px 0;
  }
}
.CSR-sec03 a {
  color: #000;
  text-decoration: none;
}
.CSR-sec03 .item {
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 10px 0px;
  border: 1px solid var(--theme-orange);
}
.CSR-sec03 .item:hover .img:before {
  opacity: 1;
}
.CSR-sec03 .item:hover .img .view-img i {
  font-size: 40px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .CSR-sec03 .item:hover .img .view-img i {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .CSR-sec03 .item:hover .img .view-img i {
    font-size: 40px;
  }
}
.CSR-sec03 .item .img {
  position: relative;
}
.CSR-sec03 .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.CSR-sec03 .item .img .view-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.CSR-sec03 .item .img .view-img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 100px;
  opacity: 0;
  transition: all 0.6s ease;
}

.CSR-sec04 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .CSR-sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec04 {
    padding: 30px 0;
  }
}
.CSR-sec04 .vector {
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: -1;
}

.CSR-sec05 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .CSR-sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec05 {
    padding: 30px 0;
  }
}
.CSR-sec05 .marathi-head {
  font-size: 48px;
  font-family: var(--mukta-semibold);
}
@media screen and (max-width: 1024px) {
  .CSR-sec05 .marathi-head {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .CSR-sec05 .marathi-head {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .CSR-sec05 .marathi-head {
    font-size: 20px;
  }
}
.CSR-sec05 .video {
  position: relative;
}
.CSR-sec05 .video .img {
  border-radius: 20px;
  overflow: hidden;
}
.CSR-sec05 .video .play {
  position: absolute;
  background-color: var(--theme-orange);
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: -35px;
  bottom: 50px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1024px) {
  .CSR-sec05 .video .play {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: -25px;
  }
}
@media screen and (max-width: 991px) {
  .CSR-sec05 .video .play {
    left: 50%;
    top: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }
}
.CSR-sec05 .video .play img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-sec01 {
  position: relative;
  padding: 50px 0 100px;
  background-color: var(--sub-color);
}
@media screen and (max-width: 991px) {
  .project-sec01 {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .project-sec01 {
    padding: 50px 0 70px;
  }
}
.project-sec01 .dff a {
  color: #000;
  text-decoration: none;
}
.project-sec01 .nav-pills .nav-item .nav-link {
  position: relative;
  color: #000;
  border: 1px solid var(--theme-orange);
  border-radius: 0;
  background-color: transparent;
  z-index: 1;
  transition: all 0.6s ease;
  margin: 1px;
}
@media screen and (max-width: 600px) {
  .project-sec01 .nav-pills .nav-item .nav-link {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 400px) {
  .project-sec01 .nav-pills .nav-item .nav-link {
    font-size: 12px;
  }
}
.project-sec01 .nav-pills .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--theme-orange);
  top: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.project-sec01 .nav-pills .nav-item .nav-link:hover {
  color: #fff;
}
.project-sec01 .nav-pills .nav-item .nav-link:hover:before {
  width: 100%;
}
.project-sec01 .nav-pills .nav-item .nav-link.first:before {
  right: 0;
}
.project-sec01 .nav-pills .nav-item .nav-link.second:before {
  left: 0;
}
.project-sec01 .nav-pills .nav-item .nav-link.active {
  color: #fff;
}
.project-sec01 .nav-pills .nav-item .nav-link.active:before {
  width: 100%;
}
.project-sec01 .tab-content a {
  text-decoration: none;
}
.project-sec01 .tab-content .item {
  border-radius: 10px;
  overflow: hidden;
}
.project-sec01 .tab-content .item:hover .img img {
  transform: scale(1.1);
}
.project-sec01 .tab-content .item:hover .txt:before {
  height: 100%;
}
.project-sec01 .tab-content .item:hover .txt p {
  color: #fff;
}
.project-sec01 .tab-content .item:hover .txt p.name {
  color: #fff;
}
.project-sec01 .tab-content .item .img {
  overflow: hidden;
}
.project-sec01 .tab-content .item .img img {
  transition: all 0.6s ease;
}
.project-sec01 .tab-content .item .txt {
  position: relative;
  background-color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .project-sec01 .tab-content .item .txt {
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .project-sec01 .tab-content .item .txt {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .project-sec01 .tab-content .item .txt {
    padding: 15px;
  }
}
.project-sec01 .tab-content .item .txt p {
  color: #000;
  margin-bottom: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .project-sec01 .tab-content .item .txt p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .project-sec01 .tab-content .item .txt p {
    font-size: 12px;
    line-height: 18px;
  }
}
.project-sec01 .tab-content .item .txt p.name {
  color: var(--theme-orange);
  text-transform: uppercase;
  font-family: var(--gotham-medium);
}
@media screen and (max-width: 768px) {
  .project-sec01 .tab-content .item .txt p.name {
    font-size: 14px;
  }
}
.project-sec01 .tab-content .item .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-orange);
  top: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
  z-index: -1;
  transition: all 0.6s ease;
}

.inner-sec01 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .inner-sec01 {
    margin-top: 2px;
  }
}
.inner-sec01 .carousel .carousel-control-prev,
.inner-sec01 .carousel .carousel-control-next {
  width: unset;
  bottom: unset;
  top: 50%;
  transform: translate(0, -50%);
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .inner-sec01 .carousel .carousel-control-prev .carousel-control-prev-icon,
  .inner-sec01 .carousel .carousel-control-prev .carousel-control-next-icon,
  .inner-sec01 .carousel .carousel-control-next .carousel-control-prev-icon,
  .inner-sec01 .carousel .carousel-control-next .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
  }
}
.inner-sec01 .carousel .carousel-control-prev:before,
.inner-sec01 .carousel .carousel-control-next:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: var(--theme-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}
.inner-sec01 .carousel .carousel-control-prev:hover:before,
.inner-sec01 .carousel .carousel-control-next:hover:before {
  width: 100%;
  height: 100%;
}
.inner-sec01 .carousel .carousel-control-prev {
  left: 20px;
}
.inner-sec01 .carousel .carousel-control-next {
  right: 20px;
}
.inner-sec01 .highlights {
  padding: 0 70px 0 50px;
}
@media screen and (max-width: 1024px) {
  .inner-sec01 .highlights {
    padding: 20px 60px 20px 10px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec01 .highlights {
    padding: 50px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec01 .highlights {
    padding: 30px;
  }
}
.inner-sec01 .highlights ul {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .inner-sec01 .highlights ul {
    margin-top: 10px;
  }
}
.inner-sec01 .highlights ul li {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .inner-sec01 .highlights ul li {
    margin-top: 0;
  }
}
.inner-sec01 .highlights ul li::marker {
  color: var(--theme-orange);
  font-size: 20px;
}

.inner-sec02 {
  position: relative;
}
.inner-sec02 .overlay {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 40px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .inner-sec02 .overlay {
    bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec02 .overlay .heading {
    font-size: 18px;
  }
}

.inner-sec03 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
}
@media screen and (max-width: 991px) {
  .inner-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec03.bottom-space {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03.bottom-space {
    padding: 30px 0 70px;
  }
}
.inner-sec03 .nav-pills {
  position: relative;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .inner-sec03 .nav-pills {
    margin-top: 20px;
  }
}
.inner-sec03 .nav-pills:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--theme-blue);
  left: 0;
  bottom: 0;
}
.inner-sec03 .nav-pills:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background-color: var(--theme-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .inner-sec03 .nav-pills:after {
    height: 50%;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03 .nav-pills .nav-item {
    width: 50%;
  }
}
.inner-sec03 .nav-pills .nav-item .nav-link {
  position: relative;
  color: #000;
  text-transform: uppercase;
  margin: 0 40px;
}
@media screen and (max-width: 991px) {
  .inner-sec03 .nav-pills .nav-item .nav-link {
    margin: 0 15px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03 .nav-pills .nav-item .nav-link {
    margin: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .inner-sec03 .nav-pills .nav-item .nav-link {
    font-size: 11px;
  }
}
.inner-sec03 .nav-pills .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--theme-blue);
  left: 0;
  bottom: 2px;
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .inner-sec03 .nav-pills .nav-item .nav-link:before {
    height: 2px;
  }
}
.inner-sec03 .nav-pills .nav-item .nav-link:hover:before {
  opacity: 1;
}
.inner-sec03 .nav-pills .nav-item .nav-link.active {
  background-color: transparent;
}
.inner-sec03 .nav-pills .nav-item .nav-link.active:before {
  opacity: 1;
}
.inner-sec03 a {
  color: #000;
  text-decoration: none;
}
.inner-sec03 .item {
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 10px 0px;
}
.inner-sec03 .item:hover .img:before {
  opacity: 1;
}
.inner-sec03 .item:hover .img .view-img i {
  font-size: 40px;
  opacity: 1;
}
.inner-sec03 .item:hover .title {
  background-color: var(--theme-orange);
  color: #fff;
}
.inner-sec03 .item .img {
  position: relative;
}
.inner-sec03 .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.inner-sec03 .item .img .view-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-sec03 .item .img .view-img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 100px;
  opacity: 0;
  transition: all 0.6s ease;
}
.inner-sec03 .item .title {
  text-align: center;
  background-color: #fff;
  padding: 15px;
  transition: all 0.6s ease;
  line-height: 18px;
}
@media screen and (max-width: 1024px) {
  .inner-sec03 .item .title {
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec03 .item .title {
    font-size: 14px;
    padding: 15px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03 .item .title {
    font-size: unset;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 400px) {
  .inner-sec03 .item .title {
    font-size: 14px;
  }
}
.inner-sec03 .listed-amenities {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .inner-sec03 .listed-amenities {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec03 .listed-amenities {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec03 .listed-amenities {
    padding: 10px 0 0;
  }
}

.inner-sec04 {
  position: relative;
}
.inner-sec04 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
.inner-sec04 .overlay .txt {
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .inner-sec04 .overlay .txt {
    bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec04 .overlay .txt .heading {
    font-size: 18px;
  }
}

.inner-sec05 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/projects/02_renucorp_vanaha/location-bg.webp);
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .inner-sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec05 {
    padding: 30px 0;
  }
}
.inner-sec05 .item {
  display: flex;
  align-items: center;
  margin-top: 35px;
}
@media screen and (max-width: 1680px) {
  .inner-sec05 .item {
    display: block;
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec05 .item {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec05 .item {
    display: block;
    margin-top: 20px;
  }
}
.inner-sec05 .item .img {
  position: relative;
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}
@media screen and (max-width: 1680px) {
  .inner-sec05 .item .img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec05 .item .img {
    width: 80px;
    height: 80px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec05 .item .img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
  }
}
.inner-sec05 .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media screen and (max-width: 991px) {
  .inner-sec05 .item .img img {
    width: unset;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec05 .item .img img {
    width: 60%;
  }
}
.inner-sec05 .item p {
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .inner-sec05 .item p {
    font-size: 11px;
    line-height: 15px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec05 .item p {
    font-size: unset;
    line-height: unset;
  }
}
.inner-sec05 .map {
  border: 1px solid var(--theme-orange);
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .inner-sec05 .map {
    padding: 10px;
  }
}
.inner-sec05 iframe {
  height: 500px;
}
@media screen and (max-width: 600px) {
  .inner-sec05 iframe {
    height: 300px;
  }
}

.inner-sec06 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .inner-sec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec06 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec06.bottom-space {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec06.bottom-space {
    padding: 30px 0 70px;
  }
}
.inner-sec06 .img {
  position: relative;
  border: 1px solid #000;
}
.inner-sec06 .img img {
  filter: blur(2px);
}
.inner-sec06 .img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-blue);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .inner-sec06 .img i {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .inner-sec06 .img i {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .inner-sec06 .img i {
    padding: 15px;
  }
}

.service-sec01 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .service-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .service-sec01 {
    padding: 50px 0 30px;
  }
}
.service-sec01 .vector {
  position: absolute;
  top: -50px;
  left: -50px;
}

.service-sec02 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .service-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .service-sec02 {
    padding: 30px 0;
  }
}

.service-sec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/services/01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .service-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .service-sec03 {
    padding: 30px 0;
  }
}

.service-sec04 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .service-sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .service-sec04 {
    padding: 30px 0;
  }
}
.service-sec04 a {
  text-decoration: none;
  color: #000;
}

.architectural-sec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .architectural-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .architectural-sec01 {
    padding: 50px 0 30px;
  }
}
.architectural-sec01 .txt {
  padding: 0 200px;
}
@media screen and (max-width: 1440px) {
  .architectural-sec01 .txt {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1280px) {
  .architectural-sec01 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .architectural-sec01 .txt {
    padding: 0;
  }
}
.architectural-sec01 p a {
  color: #000;
  text-decoration: none;
}

.architectural-sec02 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .architectural-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .architectural-sec02 {
    padding: 30px 0;
  }
}
.architectural-sec02 .vector {
  position: absolute;
  top: -50px;
  left: -50px;
}

.architectural-sec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/services/architectural-solutions/background.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .architectural-sec03 {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 991px) {
  .architectural-sec03 {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .architectural-sec03 {
    padding: 30px 0 70px;
  }
}
.architectural-sec03 .txt {
  background-color: #fff;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .architectural-sec03 .txt {
    font-size: 14px;
  }
}
.architectural-sec03 .owl-nav .owl-prev i,
.architectural-sec03 .owl-nav .owl-next i {
  color: #fff;
}

.architectural-sec04 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .architectural-sec04 {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .architectural-sec04 {
    padding: 30px 0 70px;
  }
}
.architectural-sec04 .item {
  border: 1px solid #ececec;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.interior-design-sec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .interior-design-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .interior-design-sec01 {
    padding: 50px 0 30px;
  }
}
.interior-design-sec01 .txt {
  padding: 0 200px;
}
@media screen and (max-width: 1440px) {
  .interior-design-sec01 .txt {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1280px) {
  .interior-design-sec01 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .interior-design-sec01 .txt {
    padding: 0;
  }
}

.interior-design-sec02 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .interior-design-sec02 {
    background-color: var(--sub-color);
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .interior-design-sec02 {
    padding: 30px 0;
  }
}
.interior-design-sec02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 65%;
  background-color: var(--sub-color);
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .interior-design-sec02:before {
    height: 70%;
  }
}
@media screen and (max-width: 991px) {
  .interior-design-sec02:before {
    display: none;
  }
}
.interior-design-sec02 p a {
  color: #000;
  text-decoration: none;
}

.interior-design-sec03 {
  position: relative;
  padding: 100px 0;
  background-color: var(--marathi-font-color);
}
@media screen and (max-width: 991px) {
  .interior-design-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .interior-design-sec03 {
    padding: 30px 0;
  }
}
.interior-design-sec03 .nav-pills {
  position: relative;
}
.interior-design-sec03 .nav-pills:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--theme-orange);
  left: 0;
  bottom: 0;
}
.interior-design-sec03 .nav-pills .nav-item .nav-link {
  position: relative;
  color: #fff;
  margin: 0 50px;
}
@media screen and (max-width: 1024px) {
  .interior-design-sec03 .nav-pills .nav-item .nav-link {
    margin: 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .interior-design-sec03 .nav-pills .nav-item .nav-link {
    margin: 0 0;
  }
}
.interior-design-sec03 .nav-pills .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-orange);
  left: 0;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.interior-design-sec03 .nav-pills .nav-item .nav-link:hover, .interior-design-sec03 .nav-pills .nav-item .nav-link.active {
  background-color: unset;
}
.interior-design-sec03 .nav-pills .nav-item .nav-link:hover:before, .interior-design-sec03 .nav-pills .nav-item .nav-link.active:before {
  opacity: 1;
  height: 5px;
}
.interior-design-sec03 .tab-pane .carousel-indicators {
  position: relative;
  position: unset;
  display: unset;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .interior-design-sec03 .tab-pane .carousel-indicators {
    display: none;
  }
}
.interior-design-sec03 .tab-pane .carousel-indicators [data-bs-target] {
  width: 100% !important;
  height: unset;
  text-indent: unset;
  border-top: unset;
  border-bottom: unset;
  opacity: 1;
  background-color: unset;
}
.interior-design-sec03 .tab-pane .carousel-indicators button {
  position: relative;
  border: 1px solid #949494 !important;
  transition: all 0.6s ease;
  z-index: 1;
}
.interior-design-sec03 .tab-pane .carousel-indicators button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--theme-orange);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.interior-design-sec03 .tab-pane .carousel-indicators button.active:before {
  height: 100%;
}
.interior-design-sec03 .tab-pane .carousel-indicators button:hover:before {
  height: 100%;
}
.interior-design-sec03 .tab-pane .carousel-indicators button p {
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .interior-design-sec03 .tab-pane .carousel-indicators button p {
    font-size: 12px;
  }
}
.interior-design-sec03 .select-wrapper {
  position: relative;
}
.interior-design-sec03 .select-wrapper:after {
  content: url("../images/icons/down-arrow.png");
  font-size: 1rem;
  top: 5px;
  right: 20px;
  position: absolute;
}
.interior-design-sec03 .select-wrapper .drop-down {
  background-color: #fff;
  border: 1px solid var(--theme-orange);
  width: 100%;
  padding: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.interior-design-sec03 .select-wrapper .drop-down:focus-visible {
  outline: none;
}
.interior-design-sec03 .select-wrapper .drop-down option {
  background-color: #fff;
}

.interior-design-sec04 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .interior-design-sec04 {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .interior-design-sec04 {
    padding: 30px 0 70px;
  }
}
.interior-design-sec04 .item {
  border: 1px solid #ececec;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.bank-safety-sec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec01 {
    padding: 50px 0 30px;
  }
}
.bank-safety-sec01 .txt {
  padding: 0 200px;
}
@media screen and (max-width: 1440px) {
  .bank-safety-sec01 .txt {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1280px) {
  .bank-safety-sec01 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .bank-safety-sec01 .txt {
    padding: 0;
  }
}
.bank-safety-sec01 p a {
  color: #000;
  text-decoration: none;
}

.bank-safety-sec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/services/bank-safety/background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec02 {
    padding: 30px 0;
  }
}

.bank-safety-sec03 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec03 {
    padding: 30px 0;
  }
}
.bank-safety-sec03 .vector {
  position: absolute;
  top: 0;
  left: 0;
}

.bank-safety-sec04 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec04 {
    padding: 30px 0;
  }
}

.bank-safety-sec05 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/services/bank-safety/background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec05 {
    padding: 30px 0;
  }
}

.bank-safety-sec06 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec06 {
    padding: 30px 0;
  }
}

.bank-safety-sec07 {
  position: relative;
  padding: 100px 0 200px;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec07 {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec07 {
    padding: 30px 0;
  }
}
.bank-safety-sec07 .vector {
  position: absolute;
  top: 0;
  left: 0;
}

.bank-safety-sec08 {
  position: relative;
  padding: 0 0 100px;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec08 {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec08 {
    padding: 30px 0;
    background-color: var(--marathi-font-color);
  }
}
.bank-safety-sec08 .box {
  background-color: var(--marathi-font-color);
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  margin-top: -100px;
}
@media screen and (max-width: 991px) {
  .bank-safety-sec08 .box {
    margin-top: -50px;
  }
}
@media screen and (max-width: 600px) {
  .bank-safety-sec08 .box {
    margin-top: 0;
    border-radius: 0;
    background-color: unset;
    padding: 0;
  }
}
.bank-safety-sec08 .box .img {
  border-radius: 10px;
  overflow: hidden;
}
.bank-safety-sec08 .box .owl-nav {
  left: 0;
}
.bank-safety-sec08 .box .owl-nav .owl-prev i,
.bank-safety-sec08 .box .owl-nav .owl-next i {
  color: #fff;
}

.career-sec01 {
  position: relative;
  padding: 100px 0;
  background-color: var(--sub-color);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .career-sec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .career-sec01 {
    padding: 50px 0 30px;
  }
}
.career-sec01 .vector {
  position: absolute;
  top: -100px;
  left: 0;
}
.career-sec01 .txt {
  padding: 0 100px;
}

.career-sec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/career/01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .career-sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .career-sec02 {
    padding: 30px 0;
    background-size: contain;
    background-repeat: unset;
  }
}
.career-sec02 .input {
  padding: 10px;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .career-sec02 .input {
    padding: 10px;
  }
}
.career-sec02 .input:focus {
  box-shadow: none;
  border-color: unset;
}
.career-sec02 ::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.career-sec02 a {
  color: var(--theme-orange);
  font-family: var(--gotham-bold);
}
.career-sec02 ::-moz-placeholder {
  font-size: 14px;
  color: #bfd3d9;
}
.career-sec02 ::placeholder {
  font-size: 14px;
  color: #bfd3d9;
}

.contact-sec01 {
  position: relative;
  padding: 100px 0 200px;
  background-color: var(--sub-color);
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .contact-sec01 {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .contact-sec01 {
    padding: 50px 0 30px;
  }
}
.contact-sec01 .vector {
  position: absolute;
  top: -100px;
  left: 0;
}
.contact-sec01 .contact-box {
  position: relative;
  background-color: #fff;
  padding: 50px;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media screen and (max-width: 1280px) {
  .contact-sec01 .contact-box {
    padding: 30px;
  }
}
.contact-sec01 .contact-box.static {
  position: relative;
  background-color: var(--theme-orange);
  color: #fff;
  z-index: 1;
}
.contact-sec01 .contact-box.static:before {
  position: absolute;
  content: "";
  width: 94%;
  height: 90%;
  background-color: transparent;
  border: 1px solid #fff;
  top: 5%;
  left: 3%;
  z-index: -1;
}
.contact-sec01 .contact-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--theme-orange);
  left: 0;
  bottom: 0;
}
.contact-sec01 .contact-box .head {
  font-size: 30px;
  font-family: var(--gotham-medium);
}
@media screen and (max-width: 1280px) {
  .contact-sec01 .contact-box .head {
    font-size: 20px;
  }
}

.contact-sec02 {
  position: relative;
  padding: 0 0 100px;
  margin-top: -100px;
}
@media screen and (max-width: 991px) {
  .contact-sec02 {
    padding: 0 0 50px;
    margin-top: -50px;
  }
}
@media screen and (max-width: 600px) {
  .contact-sec02 {
    padding: unset;
    margin-top: 0;
    background-image: url(../images/contact/01.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.contact-sec02 .contact-form {
  background-image: url(../images/contact/01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contact-sec02 .contact-form {
    background-image: unset;
    background-size: unset;
    background-repeat: unset;
    padding: 30px 0;
  }
}
.contact-sec02 .contact-form .input {
  padding: 10px;
  border-radius: 0;
}
.contact-sec02 .contact-form ::-moz-placeholder {
  font-size: 14px;
}
.contact-sec02 .contact-form ::placeholder {
  font-size: 14px;
}
.contact-sec02 .contact-form .theme-btn {
  background-color: var(--theme-orange);
}
.contact-sec02 .contact-form .theme-btn:before, .contact-sec02 .contact-form .theme-btn:after {
  display: none;
}

.contact-sec03 iframe {
  height: 500px;
}
@media screen and (max-width: 991px) {
  .contact-sec03 iframe {
    height: 400px;
  }
}

footer .footer {
  position: relative;
  background-color: #ebebeb;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  footer .footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  footer .footer {
    padding: 30px 0;
  }
}
footer .footer a.theme-btn {
  background-color: var(--theme-orange);
  text-decoration: none;
  color: #fff;
}
footer .footer a.theme-btn::after, footer .footer a.theme-btn::before {
  content: unset;
}
footer .footer .vector {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
footer .footer .footer-head {
  font-family: var(--gotham-bold);
  text-transform: uppercase;
}
footer .footer .footer-links {
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer .footer-links li {
  list-style-type: none;
  margin: 10px 0;
}
@media screen and (max-width: 600px) {
  footer .footer .footer-links li {
    margin: 5px 0;
  }
}
footer .footer .footer-links li a {
  position: relative;
  color: #000;
  text-decoration: none;
  transition: all 0.6s ease;
}
footer .footer .footer-links li a:hover:before {
  width: 100%;
  opacity: 1;
}
footer .footer .footer-links li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--theme-orange);
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: all 0.6s ease;
}
footer .footer .contact-details {
  position: relative;
}
footer .footer .contact-details:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  top: 0;
  left: -50px;
}
@media screen and (max-width: 1680px) {
  footer .footer .contact-details:before {
    left: -35px;
  }
}
@media screen and (max-width: 1280px) {
  footer .footer .contact-details:before {
    left: -20px;
  }
}
@media screen and (max-width: 991px) {
  footer .footer .contact-details:before {
    display: none;
  }
}
footer .footer .contact-details .social-media ul {
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer .contact-details .social-media ul li {
  position: relative;
  list-style-type: none;
  display: inline-block;
  margin: 5px;
  height: 40px;
  width: 40px;
  background-color: transparent;
  z-index: 1;
}
footer .footer .contact-details .social-media ul li:hover:before {
  opacity: 0;
  width: 0;
  height: 0;
}
footer .footer .contact-details .social-media ul li:hover:after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
footer .footer .contact-details .social-media ul li:hover i {
  color: #fff;
}
footer .footer .contact-details .social-media ul li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
footer .footer .contact-details .social-media ul li:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: var(--theme-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
footer .footer .contact-details .social-media ul li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  transition: all 0.6s ease;
}
footer .copyright {
  background-color: var(--theme-blue);
  padding: 15px 0;
}
@media screen and (max-width: 600px) {
  footer .copyright {
    margin-bottom: 58px;
    padding: 5px 0;
  }
}
@media screen and (max-width: 600px) {
  footer .copyright p {
    font-size: 12px;
  }
}
footer .copyright p a {
  color: var(--theme-orange);
  font-family: var(--gotham-medium);
}

#thank-you {
  background-color: var(--theme-blue);
  height: 100vh;
  display: flex;
  align-items: center;
}
#thank-you h3 {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-orange);
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 600px) {
  .m-backtotop {
    right: 10px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: var(--theme-orange);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.float-icons {
  position: fixed;
  top: 150px;
  right: 10px;
  z-index: 99;
}
@media screen and (max-width: 600px) {
  .float-icons {
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
  }
}
.float-icons ul {
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.float-icons ul li {
  background-color: #333333;
  list-style-type: none;
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 10px 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li {
    border-radius: 0;
    margin: 0;
    display: inline-block;
    width: 33.33%;
    border: unset;
    text-align: center;
    padding: 5px;
    position: relative;
  }
  .float-icons ul li:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.float-icons ul li:hover {
  margin-left: -130px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover {
    margin-left: -1px;
  }
}
.float-icons ul li:hover p {
  opacity: 1;
  transition: all 0.2s ease;
  transition-delay: 0.2s;
  left: -80px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover p {
    opacity: unset;
    transition: unset;
    transition-delay: unset;
  }
}
.float-icons ul li:hover .img {
  transform: rotate(-360deg);
}
.float-icons ul li:hover .img:before {
  display: block;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover .img:before {
    display: none;
  }
}
.float-icons ul li:first-child {
  margin-top: 0;
}
.float-icons ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a {
    display: unset;
    align-items: unset;
    padding: 0;
  }
}
.float-icons ul li a .img {
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a .img {
    transform: scale(0.8);
  }
}
.float-icons ul li a .img:before {
  position: absolute;
  content: "";
  height: 150%;
  width: 150%;
  background-color: var(--theme-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  display: none;
  transition: all 0.6s ease;
}
.float-icons ul li a p {
  position: absolute;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a p {
    position: unset;
    opacity: 1;
    font-size: 14px;
  }
}

.form-design .modal-content {
  border-radius: 0;
}
.form-design .modal-content .modal-header {
  background-color: var(--theme-orange);
  border-radius: 0;
  color: #fff;
  padding: 15px 30px;
}
.form-design .modal-content .modal-header .theme-btn-close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 30px;
  top: 20px;
  color: #fff;
}
.form-design .modal-content .modal-header .modal-title {
  font-size: 20px;
  font-family: var(--gotham-medium);
}
.form-design .modal-content .modal-body {
  padding: 30px;
}
.form-design .modal-content .modal-body input {
  border-radius: 0;
  padding: 10px;
  border: 1px solid #787878;
}
.form-design .modal-content .modal-body input:focus {
  box-shadow: none;
}
.form-design .modal-content .modal-body input::-moz-placeholder {
  font-size: 12px;
}
.form-design .modal-content .modal-body input::placeholder {
  font-size: 12px;
}

.disclaimer {
  position: relative;
  padding: 100px 0;
}
.disclaimer h4 {
  font-family: var(--gotham-medium);
}

.hoe-sec01 {
  position: relative;
}
.hoe-sec01 .desc {
  position: absolute;
  left: 20px;
  bottom: 20px;
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 1440px) {
  .hoe-sec01 .desc {
    font-size: 10px;
    left: 5px;
    bottom: 5px;
  }
}
.hoe-sec01 .overlay {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.hoe-sec01 .overlay h1 {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--bodoni_book);
  font-size: 55px;
}
@media screen and (max-width: 1680px) {
  .hoe-sec01 .overlay h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .hoe-sec01 .overlay h1 {
    font-size: 35px;
  }
}
.hoe-sec01 .scroll-down {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1440px) {
  .hoe-sec01 .scroll-down {
    bottom: 85px;
  }
}
@media screen and (max-width: 991px) {
  .hoe-sec01 .scroll-down {
    bottom: 0px;
  }
}
.hoe-sec01 .scroll-down .box {
  position: absolute;
  content: "";
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 20px;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1440px) {
  .hoe-sec01 .scroll-down .box {
    width: 25px;
    height: 40px;
    border: 1px solid #fff;
    top: -45px;
  }
}
.hoe-sec01 .scroll-down i {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%);
  animation: scrollDown 0.8s ease infinite;
}
@media screen and (max-width: 1440px) {
  .hoe-sec01 .scroll-down i {
    font-size: 12px;
  }
}
@media screen and (max-width: 1440px) {
  .hoe-sec01 .scroll-down p {
    font-size: 14px;
  }
}

.hoe-sec02 {
  position: relative;
}
@media screen and (max-width: 991px) {
  .hoe-sec02 {
    background-color: #f0ede5;
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hoe-sec02 {
    padding: 30px 0;
  }
}
.hoe-sec02 .contact-form {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  width: 90%;
  padding: 50px;
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  .hoe-sec02 .contact-form {
    position: relative;
    top: unset;
    box-shadow: unset;
    width: 100%;
    padding: 0;
    background-color: unset;
  }
}
@media screen and (max-width: 600px) {
  .hoe-sec02 .contact-form {
    padding: unset;
  }
}
.hoe-sec02 .contact-form p {
  font-family: var(--roboto_bold);
  text-transform: uppercase;
  font-weight: bold;
}
.hoe-sec02 .contact-form .input {
  border: 1px solid #000;
  padding: 10px 15px;
}
@media screen and (max-width: 991px) {
  .hoe-sec02 .contact-form .input {
    background-color: transparent;
  }
}
.hoe-sec02 .contact-form .input:focus {
  box-shadow: none;
}
.hoe-sec02 .contact-form ::-moz-placeholder {
  color: gray;
  font-size: 14px;
}
.hoe-sec02 .contact-form ::placeholder {
  color: gray;
  font-size: 14px;
}
.hoe-sec02 .contact-form .form-control:disabled {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.hoe-sec02 .contact-form #banner_phone {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.hoe-sec03 {
  position: relative;
  padding: 200px 0 100px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hoe-sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hoe-sec03 {
    padding: 30px 0;
  }
}
.hoe-sec03 .vector {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .hoe-sec03 .vector {
    width: 50%;
  }
}
.hoe-sec03 .item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1680px) {
  .hoe-sec03 .item {
    display: unset;
  }
}
@media screen and (max-width: 991px) {
  .hoe-sec03 .item {
    display: flex;
  }
}
.hoe-sec03 .item .img {
  position: relative;
  background-color: #103b3f;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}
@media screen and (max-width: 1680px) {
  .hoe-sec03 .item .img {
    width: 50px;
    height: 50px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .hoe-sec03 .item .img {
    width: 80px;
    height: 80px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .hoe-sec03 .item .img {
    width: 60px;
    height: 60px;
  }
}
.hoe-sec03 .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1680px) {
  .hoe-sec03 .item .img img {
    width: 60%;
  }
}
@media screen and (max-width: 991px) {
  .hoe-sec03 .item .img img {
    width: unset;
  }
}
@media screen and (max-width: 600px) {
  .hoe-sec03 .item .img img {
    width: 60%;
  }
}
@media screen and (max-width: 1680px) {
  .hoe-sec03 .item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .hoe-sec03 .item p {
    font-size: 13px;
  }
}
.hoe-sec03 .img {
  border: 1px solid #e28549;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .hoe-sec03 .img {
    padding: 10px;
  }
}

.hoe-btn {
  position: relative;
  background-color: #103b3f;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.6s ease;
  overflow: hidden;
  z-index: 1;
  padding: 10px 50px;
}
@media screen and (max-width: 991px) {
  .hoe-btn {
    width: unset;
  }
}
.hoe-btn:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: #e28549;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.6s ease;
  z-index: -1;
}
.hoe-btn:hover:before {
  width: 100%;
}

@keyframes scrollDown {
  50% {
    top: 50%;
  }
}
@keyframes circle-full {
  from {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  to {
    clip-path: circle(100% at 50%);
    opacity: 1;
    opacity: 1;
  }
}
@keyframes fallDown {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
}
@keyframes zoom-in {
  100% {
    transform: scale(1.1);
  }
}
@keyframes fadeUp {
  0% {
    top: 70%;
  }
}
@keyframes fadeLeft {
  0% {
    left: -10%;
  }
}
@keyframes fadeRight {
  0% {
    right: 0;
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
.sitemap {
  margin-top: 107px;
}
@media screen and (max-width: 999px) {
  .sitemap {
    margin-top: 1px;
  }
}
.sitemap .maintetx {
  padding: 2.5rem 0;
  width: 40%;
}
.sitemap .maintetx ul {
  list-style-type: none;
  padding: 0 2rem;
  margin: 0;
}
.sitemap .maintetx ul li {
  background: #015066;
  color: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.sitemap .maintetx ul li:last-child {
  border-bottom: 0px solid #f5f5f5;
}
.sitemap .maintetx ul li a {
  color: #fff;
  padding: 1rem 2.8rem;
  display: block;
  text-decoration: none;
}
.sitemap .maintetx ul li ul {
  border: 1px solid #656565;
}
.sitemap .maintetx ul li ul li {
  background: #02254d;
}
.sitemap .maintetx ul li ul li ul li {
  background: #000;
}

.card {
  margin-top: 1rem;
}
.card .card-header {
  padding: 0;
  background: transparent;
}
.card .card-header button.btnlink {
  width: 100%;
  display: block;
  padding: 0.46rem 1.5rem;
  color: #000;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  background: rgba(222, 229, 237, 0.2901960784);
  text-align: left;
  border: 1px solid #fff;
}
@media screen and (max-width: 600px) {
  .card .card-header button.btnlink {
    padding: 0.46rem 2rem 0.46rem 1rem;
    font-size: 14px;
  }
}
.card .card-header button.btnlink .material-symbols-outlined {
  transition: all 0.6s ease;
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 1.5rem;
}
.card .card-header button.btnlink .material-symbols-outlined.up {
  display: block;
  transition: all 0.6s ease;
}
.card .card-header button.btnlink .material-symbols-outlined.down {
  display: none;
  transition: all 0.6s ease;
}
.card .card-header button.btnlink.collapsed .material-symbols-outlined.up {
  display: none;
  transition: all 0.6s ease;
}
.card .card-header button.btnlink.collapsed .material-symbols-outlined.down {
  display: block;
  transition: all 0.6s ease;
}/*# sourceMappingURL=style.css.map */