/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Marcellus&display=swap");
.crossLine {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  transform: rotate(135deg);
}
@media (max-width: 992px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "League Spartan", sans-serif !important;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

p {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 992px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

.slick-dots {
  bottom: 0;
  right: -2%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(90deg);
  width: auto;
  z-index: 2222;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 15px 0 0;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  font-size: 0;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.8;
}
.slick-dots li.slick-active {
  width: 45px;
  height: 15px;
}
.slick-dots li.slick-active button {
  background-color: #5ec4d1;
  width: 45px;
  height: 15px;
  border-radius: 20px;
  opacity: 1;
}
@media (max-width: 1366px) {
  .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 10px 0 0;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .slick-dots li.slick-active {
    width: 35px;
    height: 10px;
  }
  .slick-dots li.slick-active button {
    width: 35px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .slick-dots {
    right: -5%;
  }
}
@media (max-width: 575px) {
  .slick-dots {
    right: 0;
    left: 0;
    bottom: 10%;
    top: inherit;
    transform: rotate(0deg);
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.defaultButton {
  background: #000;
  padding: 10px 15px;
  color: #fff;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}
.defaultButton:hover, .defaultButton:focus {
  background: #125AD3;
  color: #fff;
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 6px;
  height: 8px;
  width: 8px;
  border-radius: 0px;
  background: #41afbd;
  transform: rotate(45deg);
}

.sectionTitle {
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  color: #41afbd;
  line-height: 80px;
  font-family: "Marcellus", serif !important;
}
@media (max-width: 1366px) {
  .sectionTitle {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 25px;
    line-height: 35px;
  }
}

.sectionPadding {
  padding: 100px 0 100px;
}
.sectionPadding.paddingTop {
  padding-top: 0px;
}
.sectionPadding.paddingBottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .sectionPadding {
    padding: 80px 0;
  }
}
@media (max-width: 992px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 30px 0px;
  }
}

.btnSec {
  text-align: center;
}
.btnSec .commonBtn {
  font-size: 18px;
  line-height: 18px;
  color: #000;
  display: inline-block;
  font-weight: 700;
  position: relative;
  padding: 10px 0;
}
.btnSec .commonBtn::before {
  content: "";
  position: absolute;
  backface-visibility: hidden;
  bottom: 0px;
  display: block;
  margin: 0 auto;
  transition: all 280ms ease-in-out;
  width: 0;
  top: 0;
  border-top: 1px solid #000;
  left: 0px;
  right: 0px;
}
.btnSec .commonBtn::after {
  content: "";
  position: absolute;
  backface-visibility: hidden;
  bottom: 0px;
  display: block;
  margin: 0 auto;
  transition: all 280ms ease-in-out;
  width: 0;
  bottom: 0;
  border-top: 1px solid #000;
  left: 0px;
  right: 0px;
}
.btnSec .commonBtn:hover::before {
  backface-visibility: hidden;
  border-color: #000;
  transition: width 350ms ease-in-out;
  width: 100%;
}
.btnSec .commonBtn:hover::after {
  backface-visibility: hidden;
  border-color: #000;
  transition: width 350ms ease-in-out;
  width: 100%;
}

.mgTop {
  margin-top: 20px;
}
@media (max-width: 400px) {
  .mgTop {
    margin-top: 0;
  }
}

.socialMedia {
  display: flex;
}
.socialMedia li {
  margin: 0 25px 0 0;
}
.socialMedia li i {
  color: #41afbd;
  transition: 0.4s ease-in-out all;
  font-size: 25px;
}
.socialMedia li:hover i {
  color: #F5B1B3;
}
@media (max-width: 1200px) {
  .socialMedia li {
    margin: 0 0 0 20px;
  }
  .socialMedia li i {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .socialMedia li {
    margin: 0 20px 0 0;
  }
  .socialMedia li i {
    font-size: 20px;
  }
}

.upsideContent p {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 992px) {
  .upsideContent p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 400px) {
  .upsideContent p {
    font-size: 14px;
    line-height: 22px;
  }
}

.blueTxt {
  font-size: 45px;
  line-height: 55px;
  color: #41afbd;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .blueTxt {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 400px) {
  .blueTxt {
    font-size: 25px;
    line-height: 35px;
  }
}

.mainHeader {
  padding: 15px 0 30px;
  background: #fff;
  position: relative;
  width: 100%;
  z-index: 1111;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.mainHeader header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .mainHeader header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.mainHeader header .logo {
  margin-bottom: 35px;
}
.mainHeader header .logo.deskNone {
  display: none;
}
.mainHeader header .logo a {
  display: block;
}
@media (max-width: 1200px) {
  .mainHeader header .logo {
    margin-bottom: 20px;
  }
  .mainHeader header .logo img {
    height: 70px;
  }
}
@media (max-width: 992px) {
  .mainHeader header .logo {
    margin-bottom: 0;
  }
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin: 0 40px;
}
@media (max-width: 1200px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 30px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 0 10px;
  }
}
.mainHeader header .navbarLink ul li.Menulogo {
  padding: 0;
}
.mainHeader header .navbarLink ul li.Menulogo a {
  padding: 0;
}
.mainHeader header .navbarLink ul li.Menulogo a::before {
  display: none;
}
.mainHeader header .navbarLink ul li.Menulogo a img {
  width: 170px;
  margin: 0;
  border-radius: 50%;
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  color: #4a4a4a;
  font-size: 24px;
  transition: 0.4s ease-in-out all;
  position: relative;
  display: inline-block;
  font-weight: 300;
  font-family: "Marcellus", serif !important;
}
.mainHeader header .navbarLink ul li a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background: #41afbd;
  height: 2px;
  width: 0%;
  transition: 0.4s ease-in-out all;
}
@media (max-width: 1200px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
    padding: 5px;
  }
  .mainHeader header .navbarLink ul li a::before {
    bottom: 0;
  }
}
@media (max-width: 992px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 20px;
    padding: 15px;
    color: #fff;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  border-radius: 0;
  color: #41afbd;
}
.mainHeader header .navbarLink ul li.active a::before, .mainHeader header .navbarLink ul li:hover a::before {
  width: 100%;
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #000;
  padding: 0;
  margin: 0;
  min-width: 220px;
  transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #fff;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #000 !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 992px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    transform: rotate(0deg);
  }
}
@media (max-width: 992px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: center;
    padding: 3px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  flex-direction: column;
}
@media (min-width: 992px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  transform: rotate(0deg);
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown {
  left: 0 !important;
  top: 100% !important;
  position: relative;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li {
  padding-left: 20px;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li a {
  font-size: 13px;
  padding: 0;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover {
  background: none;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover a {
  color: #ff9a38 !important;
}
@media (max-width: 992px) {
  .mainHeader header .navbarLink ul {
    flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 992px) {
  .mainHeader header .navbarLink {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 70px;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 1200px) {
  .mainHeader {
    padding: 5px 0 20px;
  }
}
@media (max-width: 992px) {
  .mainHeader {
    padding: 15px 0;
  }
}

.homebanner {
  position: relative;
}
.homebanner .bannerImage img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.homebanner .bannerBox {
  display: block !important;
}
.homebanner .bannerText {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  max-width: 200px;
  margin: auto;
  text-align: center;
  height: 100px;
}
@media (max-width: 1366px) {
  .homebanner .bannerText {
    max-width: 200px;
  }
}
.homebanner .bannerText .bannerLogo img {
  width: 250px;
}
@media (max-width: 1366px) {
  .homebanner .bannerText .bannerLogo img {
    width: 160px;
  }
}

.tagline {
  font-size: 24px !important;
  color: #41afbd;
  font-weight: 600 !important;
}
@media (max-width: 992px) {
  .tagline {
    font-size: 20px !important;
  }
}

.bgGray {
  background: #f8f9f8;
}

.aboutSec .aboutTop {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.aboutSec .aboutTop .sectionTitle {
  text-transform: capitalize;
}
.aboutSec .aboutDetail {
  display: flex;
  justify-content: space-between;
}
.aboutSec .aboutDetail .aboutDtlt {
  flex: 0 0 30%;
}
.aboutSec .aboutDetail .aboutDtlt img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.aboutSec .aboutDetail .aboutDtlt .manojDt {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  align-items: center;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.16);
}
.aboutSec .aboutDetail .aboutDtlt .manojDt p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0;
}
.aboutSec .aboutDetail .aboutDtlt .manojDt .socialMedia {
  display: flex;
}
.aboutSec .aboutDetail .aboutDtlt .manojDt .socialMedia li {
  margin: 0 10px;
}
.aboutSec .aboutDetail .aboutDtlt .manojDt .socialMedia li i {
  color: #41afbd;
  transition: 0.4s ease-in-out all;
  font-size: 18px;
}
.aboutSec .aboutDetail .aboutDtlt .manojDt .socialMedia li:hover i {
  color: #F5B1B3;
}
.aboutSec .aboutDetail .aboutDtRt {
  flex: 0 0 65%;
}
.aboutSec .aboutDetail .aboutDtRt .aboutText p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.aboutSec .aboutDetail .aboutDtRt .aboutText .bigPara {
  font-size: 35px;
  line-height: 43px;
  font-weight: 400;
  color: #424141;
}
.aboutSec .aboutDetail .aboutDtRt .aboutText ul li {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
}
.aboutSec .aboutBottom {
  margin-top: 15px;
}
.aboutSec .aboutBottom p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .aboutSec .aboutTop {
    margin-bottom: 30px;
  }
  .aboutSec .aboutDetail .aboutDtlt {
    flex: 0 0 35%;
  }
  .aboutSec .aboutDetail .aboutDtlt img {
    height: 250px;
  }
  .aboutSec .aboutDetail .aboutDtlt .manojDt p {
    font-size: 14px;
    line-height: 24px;
  }
  .aboutSec .aboutDetail .aboutDtlt .manojDt .socialMedia li i {
    font-size: 16px;
  }
  .aboutSec .aboutDetail .aboutDtRt {
    flex: 0 0 60%;
  }
  .aboutSec .aboutDetail .aboutDtRt .aboutText p {
    font-size: 18px;
    line-height: 24px;
  }
  .aboutSec .aboutDetail .aboutDtRt .aboutText .bigPara {
    font-size: 28px;
    line-height: 38px;
  }
  .aboutSec .aboutDetail .aboutDtRt .aboutText ul li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .aboutSec .aboutBottom {
    margin-top: 10px;
  }
  .aboutSec .aboutBottom p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .aboutSec .aboutDetail {
    flex-wrap: wrap;
  }
  .aboutSec .aboutDetail .aboutDtlt {
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .aboutSec .aboutDetail .aboutDtlt img {
    height: 300px;
  }
  .aboutSec .aboutDetail .aboutDtRt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .aboutSec .aboutDetail .aboutDtRt .aboutText .bigPara {
    font-size: 25px;
    line-height: 35px;
  }
}

.projects {
  position: relative;
}
@media (max-width: 992px) {
  .projects {
    padding: 65px 0;
  }
}
@media (max-width: 575px) {
  .projects {
    padding: 50px 0;
  }
}
@media (max-width: 400px) {
  .projects {
    padding: 40px 0;
  }
}
.projects .cd-project .projectsUl li {
  flex: 0 0 30%;
  max-width: 30%;
  margin: 0 15px 30px;
}
.projects .cd-project .projectsUl li .projectBox .projectImg {
  position: relative;
}
.projects .cd-project .projectsUl li .projectBox .projectImg img {
  width: 100%;
}
.projects .cd-project .projectsUl li .projectBox .projectImg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.projects .cd-project .projectsUl li .projectBox .projectImg .zoomText {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  transition: 0.4s ease-in-out all;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects .cd-project .projectsUl li .projectBox .projectImg .zoomText p {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  max-width: 250px;
  transition: 0.4s ease-in-out all;
  opacity: 0;
  font-family: "Marcellus", serif !important;
}
.projects .cd-project .projectsUl li:hover .projectBox .projectImg .zoomText p {
  opacity: 1;
}
.projects .cd-project .projectsUl li:hover .projectBox .projectImg::before {
  opacity: 0.5;
}
@media (max-width: 992px) {
  .projects .cd-project .projectsUl li {
    flex: 0 0 30%;
    max-width: 30%;
    margin: 0 10px 25px;
  }
  .projects .cd-project .projectsUl li .projectBox .projectImg .zoomText p {
    font-size: 30px;
    line-height: 40px;
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .projects .cd-project {
    margin-top: 60px;
  }
  .projects .cd-project .projectsUl li {
    flex: 0 0 46%;
    max-width: 46%;
    margin: 0 10px 25px;
  }
}
@media (max-width: 575px) {
  .projects .cd-project {
    margin-top: 60px;
  }
  .projects .cd-project .projectsUl li {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 25px;
  }
}

.cd-main-content .cd-tab-filter-wrapper {
  margin: 40px 0 20px;
}

footer {
  padding: 40px 0 0;
  background: #2a2a2a;
}
footer .row {
  align-items: center;
}
footer .footerLogo img {
  width: 150px;
}
footer .footerRight {
  text-align: right;
}
footer .footerRight .socialMedia {
  justify-content: flex-end;
  padding-bottom: 30px;
}
footer .footerRight .socialMedia .ftAdd {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerRight .socialMedia .ftAdd img {
  width: 25px;
  margin-right: 15px;
}
footer .footerRight .socialMedia .ftAdd p {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
footer .footerRight .socialMedia .ftAdd a {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  transition: 0.4s ease-in-out all;
}
footer .footerRight .socialMedia .ftAdd a:hover {
  color: #5ec4d1;
}
footer .footerRight .navLink {
  display: flex;
  justify-content: flex-end;
}
footer .footerRight .navLink li {
  margin: 0 20px;
}
footer .footerRight .navLink li a {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  transition: 0.4s ease-in-out all;
}
footer .footerRight .navLink li:hover a, footer .footerRight .navLink li.active a {
  color: #41afbd;
}
footer .copyRight {
  text-align: center;
  padding: 10px 0;
  margin-top: 25px;
  background: #2a2a2a;
  border-top: 1px solid #707070;
}
footer .copyRight p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
@media (max-width: 1200px) {
  footer {
    padding: 30px 0 0;
  }
  footer .footerLogo img {
    width: 125px;
  }
  footer .footerRight .socialMedia {
    padding-bottom: 20px;
  }
  footer .footerRight .socialMedia .ftAdd img {
    width: 20px;
    margin-right: 10px;
  }
  footer .footerRight .socialMedia .ftAdd p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
  }
  footer .footerRight .socialMedia .ftAdd a {
    font-size: 14px;
    line-height: 22px;
  }
  footer .footerRight .navLink li {
    margin: 0 0 0 25px;
  }
  footer .footerRight .navLink li a {
    font-size: 14px;
    line-height: 22px;
  }
  footer .copyRight {
    padding: 10px 0;
    margin-top: 20px;
  }
  footer .copyRight p {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  footer .footerRight .socialMedia li {
    margin: 0 0 0 15px;
  }
  footer .footerRight .socialMedia .ftAdd p {
    font-size: 12px;
    line-height: 20px;
  }
  footer .footerRight .socialMedia .ftAdd a {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 20px 0 0;
  }
  footer .footerLogo {
    text-align: center;
    margin-bottom: 25px;
  }
  footer .footerLogo img {
    width: 100px;
  }
  footer .footerRight {
    flex-direction: column;
  }
  footer .footerRight .socialMedia {
    padding-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footerRight .socialMedia li {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 10px;
    margin: 0;
  }
  footer .footerRight .socialMedia li:nth-child(3), footer .footerRight .socialMedia li:last-child {
    flex: inherit;
    max-width: inherit;
    margin: 0 10px;
  }
  footer .footerRight .socialMedia .ftAdd img {
    margin-right: 10px;
  }
  footer .footerRight .navLink {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  footer .footerRight .navLink li {
    margin: 0 0 15px 0;
  }
  footer .copyRight {
    margin-top: 10px;
  }
}

.publicationSec .upsideContent {
  padding-bottom: 40px;
}
.publicationSec .publicationbox {
  box-shadow: 0px 15px 55px 0px rgba(0, 0, 0, 0.1607843137);
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.publicationSec .publicationbox .publicationimg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.publicationSec .publicationbox .publicationimg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.publicationSec .publicationbox .publicationimg .zoomEffect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  width: 0px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  transition: 0.4s ease-in-out all;
}
.publicationSec .publicationbox .publicationimg .zoomEffect img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.publicationSec .publicationbox .publicationimg a img {
  height: 325px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.publicationSec .publicationbox .publicationinfo {
  color: #333;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.publicationSec .publicationbox:hover .publicationimg .zoomEffect {
  height: 40px;
  width: 40px;
}
.publicationSec .publicationbox:hover .publicationimg::before {
  opacity: 0.5;
}
@media (max-width: 1366px) {
  .publicationSec .publicationbox {
    padding: 0;
  }
  .publicationSec .publicationbox .publicationimg a img {
    height: 280px;
  }
  .publicationSec .publicationbox .publicationinfo {
    font-size: 20px;
    line-height: 28px;
    min-height: 60px;
  }
}
@media (max-width: 767px) {
  .publicationSec .upsideContent {
    padding-bottom: 15px;
  }
  .publicationSec .publicationbox {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .publicationSec .publicationbox .publicationimg a img {
    height: auto;
  }
}
@media (max-width: 400px) {
  .publicationSec .upsideContent {
    padding-bottom: 10px;
  }
  .publicationSec .publicationbox {
    max-width: 300px;
  }
  .publicationSec .publicationbox .publicationinfo {
    font-size: 18px;
    line-height: 26px;
    min-height: 50px;
  }
}

.contactSec .bgColor {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .contactSec .bgColor {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .contactSec .bgColor {
    margin-top: 20px;
  }
}
.contactSec iframe.contactMap {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .contactSec iframe.contactMap {
    height: 350px;
  }
}
.contactSec .contactBox {
  max-width: 700px;
  margin: auto 20px 0 0;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
}
.contactSec .inquiryForm {
  text-align: center;
  padding: 0;
}
.contactSec .inquiryForm .form-group {
  margin-bottom: 20px !important;
  text-align: left;
}
.contactSec .inquiryForm .form-group .form-control {
  margin: 0 0 0px;
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
  color: #212529;
  background-color: #fff;
}
.contactSec .inquiryForm .form-group textarea.form-control {
  height: calc(7rem + 2px);
}
.contactSec .inquiryForm .btnSec {
  text-align: left;
}
.contactSec .ctDetail li .ctAdd {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}
.contactSec .ctDetail li .ctAdd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-image: url("../images/location.png");
  background-size: contain;
}
.contactSec .ctDetail li .ctAdd p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
  color: #000;
}
.contactSec .ctDetail li .ctAdd a {
  font-size: 18px;
  line-height: 26px;
  transition: 0.4s ease-in-out all;
  color: #000;
}
.contactSec .ctDetail li .ctAdd a:hover {
  color: #41afbd;
}
.contactSec .ctDetail li .ctAdd.ctMail::before {
  background-image: url("../images/email.png");
}
.contactSec .ctDetail li .ctAdd.ctPhone::before {
  background-image: url("../images/call.png");
}
.contactSec .contactTxt {
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  color: #000;
  font-family: "Marcellus", serif !important;
}
@media (max-width: 1200px) {
  .contactSec .contactBox {
    padding: 25px;
  }
  .contactSec .ctDetail li .ctAdd {
    margin-bottom: 20px;
    padding-left: 40px;
  }
  .contactSec .ctDetail li .ctAdd::before {
    height: 25px;
    width: 25px;
  }
  .contactSec .ctDetail li .ctAdd p {
    font-size: 16px;
    line-height: 24px;
  }
  .contactSec .ctDetail li .ctAdd a {
    font-size: 16px;
    line-height: 24px;
  }
  .contactSec .contactTxt {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .contactSec .contactBox {
    padding: 20px;
  }
  .contactSec .ctDetail li .ctAdd {
    margin-bottom: 15px;
    padding-left: 35px;
  }
  .contactSec .ctDetail li .ctAdd::before {
    height: 20px;
    width: 20px;
  }
  .contactSec .ctDetail li .ctAdd p {
    font-size: 14px;
    line-height: 22px;
  }
  .contactSec .ctDetail li .ctAdd a {
    font-size: 14px;
    line-height: 22px;
  }
  .contactSec .contactTxt {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .contactSec .contactBox {
    padding: 25px;
  }
  .contactSec .ctDetail li .ctAdd {
    margin-bottom: 15px;
    padding-left: 35px;
  }
  .contactSec .ctDetail li .ctAdd::before {
    height: 20px;
    width: 20px;
  }
  .contactSec .ctDetail li .ctAdd p {
    font-size: 14px;
    line-height: 22px;
  }
  .contactSec .ctDetail li .ctAdd p br {
    display: none;
  }
  .contactSec .ctDetail li .ctAdd a {
    font-size: 14px;
    line-height: 22px;
  }
  .contactSec .contactTxt {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .maxPhone {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .maxPhone {
    max-width: 320px;
    margin: 0 auto;
  }
}

.projectDetail .sectionTitle {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}
.projectDetail .detailText {
  text-align: center;
}
.projectDetail .detailText p {
  line-height: 35px;
}
.projectDetail .projectGallery {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding-top: 40px;
}
.projectDetail .projectGallery li {
  margin-bottom: 30px;
}
.projectDetail .projectGallery li:last-child {
  margin-bottom: 0;
}
.projectDetail .projectGallery li .projectImg {
  position: relative;
}
.projectDetail .projectGallery li .projectImg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.projectDetail .projectGallery li .projectImg .zoomEffect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  width: 0px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  transition: 0.4s ease-in-out all;
}
.projectDetail .projectGallery li .projectImg img {
  width: 100%;
}
.projectDetail .projectGallery li:hover .projectImg .zoomEffect {
  height: 40px;
  width: 40px;
}
.projectDetail .projectGallery li:hover .projectImg::before {
  opacity: 0.5;
}
@media (max-width: 992px) {
  .projectDetail .sectionTitle {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .projectDetail .detailText {
    text-align: center;
  }
  .projectDetail .detailText p {
    line-height: 30px;
  }
}

.gallerySec .sectionTitle {
  text-align: center;
}
.gallerySec .grid {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.gallerySec .grid .grid-item {
  margin-bottom: 30px;
}
.gallerySec .grid .grid-item:last-child {
  margin-bottom: 0;
}
.gallerySec .grid-item img {
  width: 100%;
}
@media (max-width: 992px) {
  .gallerySec .grid .grid-item {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .gallerySec .grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 575px) {
  .gallerySec .grid {
    -moz-column-count: 1;
         column-count: 1;
  }
  .gallerySec .grid .grid-item {
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

.box_zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.box_zoom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0%;
  width: 0%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.8s;
  z-index: 1;
}
.box_zoom::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  background: url(../images/zoom.svg) center center no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0;
  transform: scale(1.5);
  visibility: hidden;
  z-index: 2;
}
.box_zoom:hover::before {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
}
.box_zoom:hover::after {
  opacity: 1;
  transform: scale(1);
  transition: 1s;
  visibility: visible;
}

.mapSec iframe {
  display: block;
}

.socialWall {
  padding-top: 50px;
}
.socialWall .sectionTitle {
  text-align: center;
  padding-bottom: 50px;
}
.socialWall .row {
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.socialWall .socialImg {
  margin-bottom: 30px;
}
.socialWall .socialImg img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 1366px) {
  .socialWall .socialImg img {
    height: 250px;
  }
}
@media (max-width: 1200px) {
  .socialWall {
    padding-top: 40px;
  }
  .socialWall .sectionTitle {
    padding-bottom: 30px;
  }
  .socialWall .socialImg {
    margin-bottom: 20px;
  }
  .socialWall .socialImg img {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .socialWall .sectionTitle {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .socialWall .sectionTitle {
    padding-bottom: 10px;
  }
  .socialWall .socialImg img {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .socialWall .socialImg {
    max-width: 350px;
    margin: 0 auto 20px;
  }
}/*# sourceMappingURL=style.css.map */