body {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: rgba(64, 64, 64, 0.8);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
  width: 100%;
  margin: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
  letter-spacing: 2px;
  font-weight: 600;
}
a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.form-control:focus {
  border-color: #71c057;
  box-shadow: 0 0 0 0.25rem rgba(113, 192, 87, 0.38);
}
::placeholder {
  color: #111827;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #111827;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #111827;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #111827;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #111827;
}
.btn-theme-warning {
  background: #e17930;
  border: 2px solid #e17930;
  color: #ffffff;
  padding: 10px 10px 10px 25px;
  text-transform: capitalize;
  border-radius: 50px;
  display: flex;
  align-items: center;
  width: 250px;
}
.btn-theme-warning:hover {
  background: #6b9b91;
  color: #ffffff;
  border: 2px solid #6b9b91;
}
.btn-theme-warning:focus {
  box-shadow: none;
}
.btn-theme-warning .arrow {
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 50px;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.btn-theme-warning .arrow i {
  color: #e17930;
}
.btn-white {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #614aeb;
  padding: 10px 10px 10px 25px;
  text-transform: capitalize;
  border-radius: 50px;
}
.btn-white:hover {
  background: transparent;
  color: #ffffff;
}
.btn-white .arrow {
  background: #614aeb;
  padding: 4px 8px;
  border-radius: 50px;
  margin-left: 15px;
}
.btn-white .arrow i {
  color: #ffffff;
}
.regContainer {
  width: 100%;
  max-width: 1600px;
  border-radius: 40px;
  background: #f3f2f7;
  margin: 0 auto;
}
.light-bg-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 490px;
  height: 480px;
  background-image: url(../images/icon-section-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
}
.home-bg-two {
  background: url(../images/home-bg-two.png);
  background-size: cover;
}
.bgPrimary {
  background: #614aeb;
}
.text-yellow {
  color: #f1a800;
}
.primaryGradient {
  background: linear-gradient(180deg, #635bff1f 0, #635bff08 100%);
}
.warningGradient {
  background: linear-gradient(180deg, #f8c20a1f 0, #f8c20a08 100%);
}
.secondaryGradient {
  background: linear-gradient(180deg, #16cdc71f 0, #16cdc708 100%);
}
.dangerGradient {
  background: linear-gradient(180deg, #ff66921f 0, #ff669208 100%);
}
.successGradient {
  background: linear-gradient(180deg, #36c76c1f 0, #36c76c08 100%);
}
#back-to-top {
  display: inline-block;
  background-color: #ec7b13;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 45px;
  color: #ffffff;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: #0c1524;
}
#back-to-top:active {
  background-color: #0c1524;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.regHeader.is-sticky {
  background: #0f4036;
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  width: 100%;
  z-index: 5;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.regHeader {
  background: #045041;
  padding: 15px 0;
  z-index: 5;
  position: relative;
  border-bottom: 1px solid #23800c;
}
.regHeader .regNavbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.regHeader .regNavbar .logo {
  display: inline-block;
  width: 200px;
}
.regHeader .regNavbar .logo img {
  width: 100%;
}
.regHeader .regNavbar .mainMenu .navbarNav li {
  display: inline-block;
  padding: 15px 12px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li {
    display: block;
    padding: 5px 20px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.regHeader .regNavbar .mainMenu .navbarNav li a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: #e17930;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
.regHeader .regNavbar .mainMenu .navbarNav li a:hover {
  color: #bdd7b7;
}
.regHeader .regNavbar .mainMenu .navbarNav li a:hover::before {
  transform-origin: 50% 50%;
  transform: scale3d(1, 1, 1);
}
.regHeader .regNavbar .mainMenu .navbarNav li a.active {
  color: #614aeb;
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 210px;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: #614aeb;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu {
    position: inherit;
    visibility: visible;
    opacity: 1;
    transform: inherit;
    text-align: center;
    margin: auto;
    display: inherit;
    margin-top: 10px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li {
  padding: 10px 15px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li {
    padding: 5px 15px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  display: inline-block;
  color: #ffffff;
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li:hover a {
  transform: translateX(5px);
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li:hover a {
    transform: inherit;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li:hover {
  transition: all 0.3s ease-in-out;
}
.regHeader .regNavbar .mainMenu .navbarNav li:hover ul.subMenu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 10px 0;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li:hover ul.subMenu {
    transform: inherit;
    padding: 0;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child {
  display: none;
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child a {
  color: #ffffff;
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child a:hover {
  color: #614aeb;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li:last-child {
    display: block;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav .has-child-menu::after {
  position: absolute;
  right: 3px;
  font-family: FontAwesome !important;
  content: "\f107";
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-in-out;
  top: 22px;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  color: #111827;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav .has-child-menu::after {
    content: inherit;
  }
}
.regHeader .header-btn {
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 500;
}
.regHeader .header-btn p {
  line-height: 14px;
}
@media screen and (max-width: 992px) {
  .regHeader .header-btn {
    display: none;
  }
}
.runningProject {
  background: #045041;
  padding: 20px 0;
}
.runningProject .projectBox {
  border-bottom: 1px solid #6b9b91;
}
.runningProject .projectBox:last-child {
  border-bottom: none;
}
.runningProject .projectBox .projectPicture img {
  border: 6px solid #6b9b91;
  padding: 6px;
}
.runningProject .projectBox .details {
  color: #ffffff;
}
.runningProject .projectBox .details h2 {
  font-size: 32px;
  line-height: 36px;
}
.runningProject .projectBox .details a.pera {
  color: #ffffff;
  text-decoration: underline;
}
.runningProject .projectBox .details .customBadgeSuccess {
  background-color: #fff;
  border: 3px solid #50857a;
  color: #23800c;
  padding: 7px 20px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  border-radius: 8px 35px;
  margin-left: 10px;
}
.runningProject .projectBox .details .detailsBox h5 {
  color: #7cc7b7;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
}
.runningProject .projectBox .details .detailsBox p {
  font-size: 16px;
  line-height: 20px;
}
.serviceSec {
  position: relative;
  padding: 120px 0 80px;
  background: #ffffff url(../images/background/pattern-2.png) left top repeat;
}
.serviceSec .service-box {
  margin: 30px 0;
  padding: 0 15px;
}
.serviceSec .service-box .img-box {
  padding-bottom: 20px;
  width: 80px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.serviceSec .service-box .img-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-color: rgba(35, 128, 12, 0.32);
  z-index: -1;
  border-radius: 25px 1px 25px 8px;
}
.serviceSec .service-box .img-box img {
  width: 100%;
}
.serviceSec .service-box .content h6 {
  color: #52764c;
  font-size: 22px;
  line-height: 26px;
  padding-bottom: 15px;
}
.sec-title h2 {
  color: #111827;
  font-size: 42px;
  line-height: 46px;
}
.sec-title h2 .dot {
  margin-left: 7px;
  background-color: #72bf58;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 3px;
}
.page-banner {
  position: relative;
  padding: 0;
  color: #ffffff;
  background: #222429;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-banner .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -moz-filter: grayscale(0);
}
.page-banner .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  max-width: 100%;
  height: 100%;
  background: url(../images/background/b-shape-1.png) right bottom no-repeat;
  z-index: 1;
  opacity: 0.5;
}
.page-banner .shape-2 {
  position: absolute;
  right: -14px;
  top: -63px;
  width: 250px;
  max-width: 100%;
  height: 100%;
  background: url(../images/background/b-shape-2.png) right top no-repeat;
  z-index: 1;
  opacity: 0.5;
}
.page-banner .banner-inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}
.page-banner .banner-inner .inner-container {
  position: relative;
  padding: 140px 0px;
}
.page-banner .banner-inner .inner-container h1 {
  position: relative;
  font-size: 62px;
  color: #ffffff;
  line-height: 66px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.page-banner .banner-inner .inner-container .page-nav {
  position: relative;
  padding-top: 5px;
  text-align: center;
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb {
  position: relative;
  display: inline-block;
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb li {
  position: relative;
  float: left;
  font-size: 20px;
  line-height: 30px;
  color: #ccd6df;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
  padding-right: 15px;
  margin-right: 15px;
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb li::before {
  position: absolute;
  right: -15px;
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  content: "-";
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb li:last-child::before {
  content: inherit;
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb li a {
  color: #ffffff;
  font-weight: 400;
  transition: all 300ms ease;
}
.page-banner .banner-inner .inner-container .page-nav .bread-crumb li.active {
  color: #72bf58;
}
.page-banner .slide-item {
  position: relative;
}
.page-banner .slide-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 1;
}
.page-banner .owl-dots {
  display: none;
}
.banner-carousel .owl-nav {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 50%;
  width: 1200px;
  height: 110px;
  text-align: right;
}
.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  padding: 0;
  margin: 0;
  line-height: 50px;
  text-align: center;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 500ms ease;
}
.banner-carousel .owl-nav .owl-next {
  top: 60px;
}
.banner-carousel .owl-nav button i {
  color: #000;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.page-banner .left-based-text {
  position: absolute;
  left: 50px;
  top: 50px;
  bottom: 50px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
  z-index: 10;
}
.page-banner .left-based-text .base-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 730px;
  height: 24px;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}
.page-banner .left-based-text .social-links {
  position: absolute;
  left: 0;
  top: 0;
}
.page-banner .left-based-text .social-links ul li {
  float: left;
  margin-right: 35px;
}
.page-banner .left-based-text .social-links ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  transition: all 500ms ease;
}
.contactSec {
  position: relative;
  padding: 120px 0 80px;
  background: #ffffff url(../images/background/pattern-2.png) left top repeat;
}
.contactSec .contact-picture img {
  border: 10px solid #bdcbc8;
}
.contactSec .contact-box {
  background-color: #bdcbc8;
  padding: 30px;
  border-radius: 0 15px 15px 0;
}
.contactSec .contact-box h2 {
  color: #045041;
}
.qualitySec {
  position: relative;
  padding: 120px 0 80px;
  background: #ffffff url(../images/background/pattern-2.png) left top repeat;
}
.qualityBox {
  display: flex;
  align-items: start;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
}
.qualityBox .itemImage {
  flex: 0 0 auto;
  width: 160px;
  position: relative;
}
.qualityBox .itemImage img {
  border: 2px solid #6b9b91;
  padding: 2px;
  border-radius: 10px;
}
.qualityBox .itemImage .view {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(100%);
  margin: 0 auto;
  background-color: #fffdfd;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: rgba(64, 64, 64, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qualityBox .itemImage .view i {
  color: #23800c;
  font-size: 22px;
}
.qualityBox .content h5 {
  font-size: 18px;
  list-style: 22px;
  letter-spacing: 0;
  color: rgba(64, 64, 64, 0.8);
}
.qualityBox .content p {
  font-size: 14px;
  color: rgba(64, 64, 64, 0.8);
}
.qualityBox {
  position: relative;
}
.qualityBox.galleryBox .itemImage {
  width: 100%;
}
.qualityBox.galleryBox .itemImage .view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background-color: #fffdfd;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  color: rgba(64, 64, 64, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qualityBox.galleryBox .itemImage .content {
  background-color: rgba(114, 191, 88, 0.36);
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  width: 100%;
  color: #ffffff;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}
.slick-prev {
  background: rgba(0, 0, 0, 0.45) url(../images/sliderright.png) center center no-repeat;
  background-size: 25px;
}
.slick-next {
  background: rgba(0, 0, 0, 0.45) url(../images/sliderleft.png) center center no-repeat;
  background-size: 25px;
}
.projectDetailsSec {
  padding: 120px 0;
  background: #ffffff url(../images/background/pattern-2.png) left top repeat;
}
.projectDetailsSec .gallery-item {
  position: relative;
  margin-bottom: 30px;
}
.projectDetailsSec .gallery-item .inner-box {
  position: relative;
  overflow: hidden;
}
.projectDetailsSec .gallery-item .inner-box .image {
  position: relative;
  border: 10px solid #6b9b91;
}
.projectDetailsSec .gallery-item .inner-box .image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -moz-filter: grayscale(0);
  transition: all 300ms ease;
}
.projectDetailsSec .gallery-item .inner-box:hover .cap-box {
  opacity: 1;
  transform: translateY(0px);
}
.projectDetailsSec .gallery-item .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.55);
  opacity: 0;
  transition: all 500ms ease;
}
.projectDetailsSec .gallery-item .cap-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  color: #ffffff;
  opacity: 1;
  transform: translateY(200px);
  transition: all 500ms ease;
}
.projectDetailsSec .gallery-item .cap-box .cap-inner {
  position: relative;
  display: block;
  padding: 25px 35px;
  background: #111827;
  border-radius: 7px;
}
.projectDetailsSec .gallery-item .cap-box .cap-inner a {
  color: #ffffff;
}
.projectDetailsSec .accordionWrap .accordion-item {
  border: 1px solid #0f4036;
  border-radius: 3px;
  margin-bottom: 15px;
}
.projectDetailsSec .accordionWrap .accordion-header .accordion-button {
  color: #71c057;
  background-color: #045041;
}
.projectDetailsSec .accordionWrap .accordion-header .accordion-button::after {
  background-image: inherit;
}
.projectDetailsSec .accordionWrap .detailsBox h5 {
  color: #111827;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
}
.projectDetailsSec .accordionWrap .detailsBox p {
  font-size: 16px;
  line-height: 20px;
}
.banner-carousel .slide-item .right-bottom-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 655px;
  max-width: 100%;
  height: 100%;
  background: url(../images/main-slider/right-curved-bg.png) right bottom no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateX(700px);
}
.banner-carousel .active .right-bottom-curve {
  opacity: 0.5;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1300ms;
}
.banner-carousel .slide-item .right-top-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 164px;
  max-width: 100%;
  height: 100%;
  background: url(../images/main-slider/right-white-curve.png) right top no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateX(200px);
}
.banner-carousel .active .right-top-curve {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1800ms;
}
.banner-carousel .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 968px;
  padding: 0 0px;
  z-index: 11;
}
.banner-carousel .content-box .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 100px 0px 50px;
}
.banner-carousel .content-box .inner {
  position: relative;
  display: block;
  max-width: 800px;
}
.banner-carousel .active .content-box .sub-title {
  opacity: 1;
  transform: translate(0);
  transition: all 700ms ease;
  transition-delay: 800ms;
}
.banner-carousel .content-box .sub-title {
  display: block;
  font-size: 24px;
  line-height: 1.5em;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(80px);
}
.banner-carousel .active .content-box h1 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1300ms;
}
.banner-carousel .content-box h1 {
  display: block;
  font-size: 140px;
  line-height: 0.85em;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  transform: translateY(80px);
}
.nav.nav-tabs {
  background: #72bf58;
  border-radius: 10px;
  margin-bottom: 15px;
  flex-wrap: nowrap;
}
.nav.nav-tabs .nav-item {
  width: 33.333%;
  position: relative;
  display: flex;
  /* Ensures child stretches */
}
.nav.nav-tabs .nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0px;
  background: #045041;
  transition: all 0.3s ease;
}
.nav.nav-tabs .nav-item .nav-link {
  flex: 1;
  /* Makes it fill .nav-item */
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: transparent;
  border-radius: 10px;
  color: #ffffff;
  padding: 20px 30px;
  font-size: 22px;
  text-transform: uppercase;
  background: transparent;
}
.nav.nav-tabs .nav-item .nav-link.active {
  background-color: #045041;
  color: #ffffff;
}
.main-footer {
  position: relative;
  color: #ffffff;
  background: #045041 url(../images/background/pattern-1.png) center top no-repeat;
  padding: 80px 0 0px 0;
}
.main-footer .widget-content .logo {
  padding-bottom: 30px;
}
.main-footer .widget-content .logo a {
  display: inline-block;
}
.main-footer .widget-content .logo a img {
  height: 80px;
}
.main-footer .widget-content .text {
  padding-right: 30px;
}
.main-footer .widget-content h6 {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  color: #7cc7b7;
}
.main-footer .widget-content .nav-list li {
  display: block;
  padding-bottom: 15px;
}
.main-footer .widget-content .nav-list li a {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.main-footer .widget-content .nav-list li a i {
  color: #7cc7b7;
  font-size: 8px;
  margin-right: 5px;
}
.main-footer .widget-content .nav-list li a:hover {
  color: #71c057;
}
.main-footer .widget-content .contact-info li a {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.main-footer .widget-content .contact-info li a i {
  color: #7cc7b7;
  margin-right: 10px;
}
.main-footer .widget-content .contact-info li a:hover {
  color: #71c057;
}
.main-footer .widget-content .contact-info li:first-child a {
  align-items: start;
}
.main-footer .widget-content .contact-info li:first-child a i {
  margin-top: 7px;
}
.main-footer .footer-bottom {
  padding: 20px 0;
  background-color: #054639;
  margin-top: 40px;
}
.main-footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-footer .footer-bottom .footer-bottom-inner .social-links {
  display: flex;
  align-items: center;
}
.main-footer .footer-bottom .footer-bottom-inner .social-links li {
  margin-right: 8px;
}
.main-footer .footer-bottom .footer-bottom-inner .social-links li a {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #1c1e22;
  text-align: center;
  border-radius: 50%;
  transition: all 300ms ease;
}
.main-footer .footer-bottom .footer-bottom-inner .social-links li a:hover {
  background-color: #23800c;
}
.box-slider .owl-carousel .owl-dots.disabled {
  display: block;
}
.box-slider .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
}
.side-social {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 9999;
}
.side-social ul {
  padding: 0px;
  transform: translate(108px, 0);
  transition: all 1.5s;
}
.side-social ul:hover {
  transform: translate(6px, 0);
  transition: all 1.5s;
}
.side-social ul li {
  display: block;
  margin: 5px;
  background: rgba(234, 123, 19, 0.81);
  width: 170px;
  text-align: right;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  transition: all 1.5s;
}
.side-social ul li a {
  display: inline-block;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
}
.side-social ul li a img {
  margin-right: 10px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: rotateAnimation 2s linear infinite;
}
.site-form {
  position: fixed;
  top: 25%;
  right: 0;
  z-index: 9999;
  transform: translate(300px, 0);
  background: #edeaea;
  padding: 20px;
  border-radius: 10px 0px 0px 10px;
  width: 300px;
  transition: all 1.5s;
}
.site-form.open {
  transform: translate(6px, 0);
  transition: all 1.5s;
}
.site-form span.icon {
  display: inline-block;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
  position: absolute;
  left: -56px;
  background: rgba(225, 121, 48, 0.84);
  padding: 6px 0;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}
.site-form span.icon img {
  margin: 4px 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: rotateAnimation 2s linear infinite;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  width: 30px;
  height: 30px;
  border: 3px solid #045041;
  border-bottom-color: #fff;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loaderIconWrap {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.loaderIconWrap .loader {
  position: absolute;
  left: 0px;
  top: 0px;
}
.text-jusify{
	text-align: justify;
}
