* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none !important;
}

/* preloader */
/* ********* */
.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 1111;
}

.preloader img {
  width: 250px;
}

.preloader.hideLoader {
  transform: translateY(-200px);
  visibility: hidden;
  opacity: 0;
}

.heroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.heroSection .center_content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  position: relative;
}

.breadcrumb .center_content {
  min-height: 400px;
}

.heroSection .center_content .back_video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.videoContainer {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
}

.imageContainer {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../king-html-template/logan/neghbourhood/breadcrumb-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.NeighborhoodsBreadcrumb {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../king-html-template/logan/neghbourhood/breadcrumb-bg1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroSection .center_content .navbar {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0px 3rem 20px;
  transition: 0.2s all ease;
  background-color: transparent;
  z-index: 11;
  margin-top: 40px;
}

.heroSection .center_content .navbar.fixNavbar {
  padding: 0px 3rem 0px;
  margin-top: 0rem;

  background-color: #fff;
  transform: translateY(0px) scaleY(1);
}

.heroSection .center_content .navbar .logo {
  width: 125px;
  overflow: hidden;
}

.heroSection .center_content .navbar .logo img {
  width: 100%;
}

.heroSection .center_content .navbar .logo .darkImage {
  display: none;
}

.heroSection .center_content .navbar.fixNavbar .logo .lightImage {
  display: none;
}

.heroSection .center_content .navbar.fixNavbar .logo .darkImage {
  display: block;
}

.heroSection .center_content .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroSection .center_content .navbar ul li a,
.heroSection .center_content .navbar ul li span {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  transition: 0.2s;
  line-height: 1.3;
  letter-spacing: 0.15em;
  padding: 10px;
}

.heroSection .center_content .navbar.fixNavbar ul li a,
.heroSection .center_content .navbar.fixNavbar ul li span {
  color: #000;
}

.heroSection .center_content .navbar ul li a:hover {
  opacity: 0.7;
}

.heroSection .center_content .navbar ul .hamburger_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  transition: 0.1s;
  cursor: pointer;
  padding-left: 10px;
}

.heroSection .center_content .navbar ul .menu:hover .hamburger_icon {
  gap: 5px;
}

.heroSection .center_content .navbar ul .hamburger_icon div {
  width: 27px;
  height: 2px;
  background-color: #fff;
}

.heroSection .center_content .navbar.fixNavbar ul .hamburger_icon div {
  background-color: #000;
}

.sideBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  overflow: hidden;
  z-index: 111;
}

.sideBar.hideSideBar {
  visibility: hidden;
  opacity: 0;
}

.sideBar .sideBarNav {
  height: 100%;
  min-width: 442px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 55px 53px;
}

.sideBar .sideBarNav .sideBarNav_topPart {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 330px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 3rem;
}

.hamburgerCloseIcon {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sideBar .sideBarNav .sideBarNav_topPart .Copanylogo {
  width: 90px;
  overflow: hidden;
  display: none;
}

.sideBar .sideBarNav .sideBarNav_topPart .Copanylogo img {
  width: 100%;
}

.sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon div {
  width: 40px;
  height: 2px;
  background: #171819;
}

.sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon:hover div {
  opacity: 0.7;
}

.sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon div:nth-child(1) {
  transform: translate(40px, 0px) rotate(45deg);
}

.sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon div:nth-child(2) {
  transform: rotate(-45deg);
}

.sideBarNav_middlePart {
  height: 70%;
  overflow-y: auto;
  overflow-x: hidden;
}

.sideBarNav_middlePart ul {
  list-style: none;
}

.sideBarNav_middlePart ul li a {
  text-decoration: none;
  min-width: 330px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  transition: 0.3s;

  color: #171819;
  font-weight: 500;
  text-transform: uppercase;
}

.sideBarNav_middlePart ul li a:hover {
  opacity: 0.7;
}

.sideBarNav_bottomPart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  position: relative;
}

.sideBarNav_bottomPart .mail,
.verticalIcon .verticalIcon_mailIcon,
.verticalIcon .verticalIcon_phoneIcon {
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  border: 1px solid #878787;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.sideBarNav_bottomPart .justAddInMobile {
  display: none;
}

.sideBarNav_bottomPart .mail i,
.sideBarNav_bottomPart .mail svg,
.verticalIcon .verticalIcon_mailIcon i,
.verticalIcon .verticalIcon_phoneIcon i {
  color: #000;
  fill: #000;
}

.sideBarNav_bottomPart .mail:hover,
.verticalIcon .verticalIcon_mailIcon:hover,
.verticalIcon .verticalIcon_phoneIcon:hover {
  background-color: #000;
}

.sideBarNav_bottomPart .mail:hover i,
.sideBarNav_bottomPart .mail:hover svg,
.verticalIcon .verticalIcon_mailIcon:hover i,
.verticalIcon .verticalIcon_phoneIcon:hover i {
  color: #fff;
  fill: #fff;
}

.verticalIcon {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 11px;
  display: none;
  z-index: 2;
}

.verticalIcon .verticalIcon_mailIcon,
.verticalIcon .verticalIcon_phoneIcon {
  background-color: #fff;
}

.verticalIcon .verticalIcon_mailIcon,
.verticalIcon .verticalIcon_phoneIcon {
  border: none;
  box-shadow: 0 0 2px 0 #000;
}

.sideBarNav_middlePart::-webkit-scrollbar {
  width: 4px;
}

.sideBarNav_middlePart::-webkit-scrollbar-button {
  background-color: transparent;
  height: 0;
}

.sideBarNav_middlePart::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0px;
}

.sideBarNav_middlePart::-webkit-scrollbar-track {
  background-color: rgba(32, 32, 32, 0.05);
}

.centerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.breadcrumb .centerContent {
  padding: 66px;
  padding-bottom: 64px;
  justify-content: flex-end;
}

.breadcrumb01 .centerContent {
  justify-content: center;
}

.centerContent .topTextAnimation {
  overflow: hidden;
  height: 25px;
  position: relative;
  width: 225px;
  transition: 0.3s;
}

.centerContent .topTextAnimation .topTextAnimation_text01,
.centerContent .topTextAnimation .topTextAnimation_text02 {
  transition: 0.3s;
  position: absolute;
  top: 0;
  width: 34%;
  height: 100%;
  text-align: right;
}

.staticText {
  font-size: 16px;
  color: #fff;
  position: absolute;
  right: 0;
}

.centerContent .topTextAnimation .topTextAnimation_text01 p,
.centerContent .topTextAnimation .topTextAnimation_text02 p {
  font-size: 16px;
  color: #fff;
}

.centerContent .topTextAnimation .dsa {
  -webkit-animation: cl-htco-fadeInDown 1s ease 0s 1 normal both;
  animation: cl-htco-fadeInDown 1s ease 0s 1 normal both;
  visibility: visible;
  opacity: 1;
}

.centerContent .topTextAnimation .asd {
  visibility: hidden;
  opacity: 0;
}

@keyframes cl-htco-fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.horizontalLine {
  width: 220px;
  height: 1px;
  margin: 0.5rem 0;
  background-color: #fff;
}

.mainDynamicText {
  margin-top: 0.5rem;
}

.mainDynamicText h1 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  transition: 1s;
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
}

.mainDynamicText h1 .text01 {
  position: absolute;
  width: 100%;
  top: 0;
}

.mainDynamicText h1 .text01,
.mainDynamicText h1 .text02 {
  transition: 1s;
}

.mainDynamicText h1 .text02.hideText,
.mainDynamicText h1 .text01.hideText {
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(50px);
}

.t2 h1 {
  font-size: 58px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 60px;
  text-transform: uppercase;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 2.5rem;
}

.btns button {
  font-size: 14px;
  padding: 14px 20px;
  border: 2px solid #fff;
  transition: all 0.3s;
  background: transparent;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.btns button:hover {
  background-color: #fff;
  color: #000;
}

.menu {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu:hover {
  opacity: 0.7;
}

.mobileHamburger {
  display: none !important;
}

@media (min-aspect-ratio: 16/9) {
  .back_video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back_video {
    width: auto;
    height: 100%;
  }
}

.breadcrumb .centerContent h1 {
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}

.breadcrumb01 .centerContent h1 {
  margin-bottom: 0;
}

.breadcrumb .centerContent p {
  max-width: 926px;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  font-family: "Arapey", serif;
  font-style: italic;
}

.breadcrumb .centerContent .breadcrumb_socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 48px;
}

.breadcrumb .centerContent .breadcrumb_socialIcons a {
  width: 44px;
  height: 44px;
  border: 1px solid #eee;
  border-radius: 50%;
  padding: 4px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.breadcrumb .centerContent .breadcrumb_socialIcons a svg {
  fill: #fff;
}

.breadcrumb .centerContent .breadcrumb_socialIcons a i,
.breadcrumb .centerContent .breadcrumb_socialIcons a svg {
  height: 16px;
}

.breadcrumb .centerContent .breadcrumb_socialIcons a:hover {
  border-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 1);
}

.breadcrumb .centerContent .breadcrumb_socialIcons a:hover i {
  color: rgba(35, 33, 48, 1);
}

.breadcrumb .centerContent .breadcrumb_socialIcons a:hover svg {
  fill: rgba(35, 33, 48, 1);
}

/* ************* Newsletter section ************* */
/* ******************************************** */

.Newsletter {
  width: 98%;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../king-html-template/logan/neghbourhood/newsletter-section-image.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.Newsletter::before {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0.2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.Newsletter .center_content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  flex-wrap: wrap;
  padding: 3rem 1rem;
}

.Newsletter .center_content .Newsletter_leftSide {
  max-width: 572px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: rgba(242, 242, 242, 0.95);
  padding: 72px;
}

.Newsletter .center_content .Newsletter_leftSide h2 {
  letter-spacing: 6px;
  line-height: 1.3;
  font-size: 29px;
  font-weight: 400;
  color: #000;
}

.Newsletter .center_content .Newsletter_leftSide p {
  padding: 24px 0;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 1);
  font-family: "Arapey", serif;
  font-weight: 400;
  text-align: center;
}

.Newsletter .center_content .Newsletter_leftSide .btn {
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1;
  max-width: 100%;
  text-align: center;
  background: transparent;
  border: 2px solid #000;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.2s ease 0s;
  color: #000;
  text-transform: uppercase;
}

.Newsletter .center_content .Newsletter_leftSide .btn:hover {
  background-color: #000;
  color: #fff;
}

.Newsletter .center_content .Newsletter_rightSide {
  min-width: 572px;
  min-height: 370.19px;
  padding: 72px;
  padding-top: 50px;
  padding-bottom: 50px;
  border: 1px solid #f1f1f1;
  border-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.Newsletter .center_content .Newsletter_rightSide h2 {
  font-size: 29px;
  letter-spacing: 6px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.Newsletter .center_content .Newsletter_rightSide p {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 1);
  font-family: "Arapey", serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.Newsletter .center_content .Newsletter_rightSide form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.Newsletter .center_content .Newsletter_rightSide form input {
  min-width: 424px;
  min-height: 56.33px;
  border: 3px solid #c8c8c8;
  -webkit-box-shadow: 0 0 0 30px #fff inset;
  outline: none;
  transition: all 0.3s ease 0s;
  color: rgb(0, 0, 0);
  font-size: 15px;
  line-height: 18px;
  text-transform: capitalize;
  padding: 0px 15px 0px 20px;
  font-family: inherit;
}

.Newsletter .center_content .Newsletter_rightSide form button {
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  overflow: hidden;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.2s ease 0s;
  border-color: #ffffff;
  color: #000;
  background-color: rgb(255, 255, 255);
  font-family: inherit;
}

.Newsletter .center_content .Newsletter_rightSide form button:hover {
  background: transparent;
  color: #fff;
}

/* footer */
footer {
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
  padding-top: 96px;
}

footer .center_content {
  width: 97%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 75px;
  margin-bottom: 3rem;
}

footer .center_content .footer_topPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

footer .center_content .footer_topPart .row01 img {
  width: 200px;
}

footer .center_content .footer_topPart .row02 {
  width: 100%;
  min-height: 160.8px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 25px 80.56px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding-top: 15px;
}

.row02_content {
  width: 100%;
  max-width: 1250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .center_content .footer_topPart .row02 .left_side {
  gap: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 {
  min-width: 163.33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 p {
  line-height: 22.4px;
  font-size: 14px;
  color: #000;
  padding-top: 2px;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 h1 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 a,
footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .emailDisplay {
  font-size: 14px;
  position: relative;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .phone {
  padding: 0.3rem 0;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 a::before,
footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .emailDisplay::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 a:hover,
footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .emailDisplay:hover {
  color: #000000bd;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 a:hover::before,
footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .emailDisplay:hover::before {
  width: 100%;
}

footer .center_content .footer_topPart .row02 .right_side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

footer .center_content .footer_topPart .row02 .right_side p {
  font-size: 18px;
}

footer .center_content .footer_topPart .row02 .right_side .socialLinks {
  display: flex;
  gap: 20px;
  list-style: none;
}

footer .center_content .footer_topPart .row02 .right_side .socialLinks li {
  transition: 0.3s;
}

footer .center_content .footer_topPart .row02 .right_side .socialLinks li a {
  min-width: 46px;
  min-height: 46px;
  text-decoration: none;
  border: 1px solid #000;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 20px;
}

footer .center_content .footer_topPart .row02 .right_side .socialLinks li a:hover {
  background-color: #000;
}

footer .center_content .footer_topPart .row02 .right_side .socialLinks li a:hover i {
  color: #fff;
}

footer .center_content .footer_topPart .row03 {
  margin-top: 1rem;
}

footer .center_content .footer_topPart .row03 ul {
  list-style: none;
  display: flex;
  transition: 0.3s;
}

footer .center_content .footer_topPart .row03 ul li a {
  text-decoration: none;
  color: #000;
  padding: 4px 15px;
  font-size: 12px;
  border-right: 1px solid #000;
}

footer .center_content .footer_topPart .row03 ul li a:hover {
  color: #000000bd;
}

footer .center_content .footer_topPart .row03 ul li:last-child a {
  border: none;
}

footer .center_content .footer_bottomPart {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80.56px;
}

footer .center_content .footer_bottomPart p {
  font-size: 14px;
}

footer .center_content .footer_bottomPart .PrivacyPolicy {
  font-size: 14px;
  text-decoration: none;
  position: relative;
  color: #000;
}

footer .center_content .footer_bottomPart .PrivacyPolicy:hover {
  color: #000000bd;
}

footer .center_content .footer_bottomPart .PrivacyPolicy::before {
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

footer .center_content .footer_bottomPart .PrivacyPolicy:hover::before {
  width: 100%;
}

footer .center_content .footer_bottomPart .centerLink {
  font-size: 18px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

footer .center_content .footer_bottomPart .centerLink:hover {
  color: #000000bd;
}

footer .center_content .footer_bottomPart .centerLink span {
  position: relative;
}

footer .center_content .footer_bottomPart .centerLink span::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

footer .center_content .footer_bottomPart .centerLink span:hover::before {
  width: 100%;
}

.animateBottomToTop {
  transform: translateY(100px);
  filter: blur(5px);
  opacity: 0;
  transition: all 2s;
}

.link01:nth-child(2) {
  transition-delay: 100ms !important;
}

.link01:nth-child(3) {
  transition-delay: 200ms !important;
}

.link01:nth-child(4) {
  transition-delay: 300ms !important;
}

.email {
  display: none;
}

footer .center_content .footer_topPart .row02 .left_side .left_side_col01 .emailDisplay {
  padding: 0px;
  line-height: normal;
}

/* ******* areas_of_expertise ******** */
/* ********************************** */

.areas_of_expertise {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 75px 0;
}

.areas_of_expertise .topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.areas_of_expertise .topPart h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}

.areas_of_expertise .topPart p {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 200;
}

.areas_of_expertise .bottomPart {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
  position: relative;
  width: 100%;
}

.card a {
  text-decoration: none;
}

.card .card_bgImage {
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.card .card_bgImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.card .card_content {
  width: 70%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding-top: 55px;
  transition: all linear 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.card .card_content h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.3;
  font-size: 34px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.card .card_content a.learnMoreBtn {
  border: 2px solid rgba(255, 255, 255, 1);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 20px 46px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  opacity: 0;
  transition: all linear 0.4s;
}

.card:hover .card_content {
  padding: 0;
}

.card:hover .card_content a.learnMoreBtn {
  opacity: 1;
}

.card .card_content a.learnMoreBtn:hover {
  color: rgba(42, 80, 93, 1);
  background-color: #ffffff;
}

.card:hover .card_bgImage {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* ********** Media Query *********** */
/* ******************************** */

@media screen and (max-width: 1220px) {
  footer .center_content .footer_topPart .row02 {
    padding: 25px 0;
  }

  footer .center_content .footer_bottomPart {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 1199px) {
  .Newsletter .center_content .Newsletter_leftSide h2 {
    text-align: center;
    font-size: 28px;
    letter-spacing: 6px;
    line-height: 1.65;
  }

  .Newsletter .center_content .Newsletter_rightSide {
    border: 1px solid #f1f1f1;
  }

  .Newsletter .center_content .Newsletter_leftSide p {
    font-size: 19px;
    letter-spacing: 2px;
  }

  .Newsletter .center_content .Newsletter_leftSide .btn {
    width: 100%;
  }

  .Newsletter .center_content .Newsletter_leftSide {
    width: 100%;
    min-height: unset;
    max-width: 100%;
    min-width: 100%;
    padding: 45px 15px;
  }

  .Newsletter {
    width: 100%;
  }

  .Newsletter .center_content {
    padding: 3rem 1.5rem;
  }

  .Newsletter .center_content .Newsletter_rightSide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin: 1rem 0;
    padding: 45px 15px;
  }

  .Newsletter .center_content .Newsletter_rightSide form {
    width: 100%;
    margin-bottom: 20px;
  }

  .Newsletter .center_content .Newsletter_rightSide form input {
    min-width: 100%;
    border: 1px solid #c8c8c8;
  }

  .Newsletter .center_content .Newsletter_rightSide form button {
    width: 100%;
  }

  .Newsletter .center_content .Newsletter_rightSide p {
    text-align: center;
    font-size: 19px;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 1040px) {
  footer .center_content .footer_topPart .row02 .row02_content .left_side {
    gap: 40px;
  }
}

@media screen and (max-width: 940px) {
  footer .center_content .footer_topPart .row02 .row02_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
    padding: 60px 1rem;
  }

  footer .center_content .footer_topPart .row02 .row02_content .right_side {
    align-items: flex-start;
  }

  footer .center_content {
    margin: 5rem 0 3rem;
  }

  footer .center_content .footer_topPart .row02 .row02_content .left_side {
    width: 100%;
  }

  footer .center_content .footer_bottomPart {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 775px) {
  .heroSection {
    padding: 0;
  }

  .heroSection .center_content .navbar {
    padding: 0px 1.5rem 20px;
    margin-top: 15px;
  }

  .heroSection .center_content .navbar .logo img {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  footer .center_content .footer_topPart .row01 img {
    width: 160px;
  }

  footer .center_content {
    width: 100%;
  }

  footer .center_content .footer_topPart {
    padding: 78px 20px 0;
  }

  footer .center_content .footer_topPart {
    gap: 20px;
  }

  footer .center_content .footer_topPart .row02 .row02_content .left_side {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  footer .center_content .footer_topPart .row02 .row02_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding: 4rem 0px;
  }

  footer .center_content .footer_topPart .row02 .row02_content .right_side {
    align-items: flex-start;
  }

  footer .center_content .footer_topPart .row03 ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .center_content .footer_topPart .row03 ul li a {
    border: none;
  }

  footer .center_content .footer_topPart .row03,
  footer .center_content .footer_topPart .row03 ul li,
  footer .center_content .footer_topPart .row03 ul li a {
    width: 100%;
  }

  footer .center_content .footer_topPart .row03 ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
  }

  footer .center_content .footer_bottomPart {
    flex-direction: column;
    position: relative;
  }

  footer .center_content .footer_bottomPart .centerLink {
    margin-top: 5rem;
    text-align: center;
  }

  footer .center_content .footer_bottomPart .PrivacyPolicy {
    position: absolute;
    top: 1.5rem;
  }

  footer .center_content .footer_bottomPart .centerLink {
    margin-top: 3.5rem;
  }

  footer .center_content {
    margin: 3rem 0 3rem;
  }

  .card .card_bgImage {
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
  }

  .areas_of_expertise .bottomPart {
    grid-template-columns: 1fr;
  }

  .card .card_content a.learnMoreBtn {
    display: none;
  }

  .card .card_content {
    padding-top: 0px !important;
  }

  .card:hover .card_content a.learnMoreBtn {
    display: none;
  }

  .card .card_content a.learnMoreBtn:hover {
    display: none;
  }
}

@media screen and (max-width: 710px) {
  .sideBarNav_middlePart::-webkit-scrollbar {
    width: 6px;
  }

  .sideBarNav_middlePart::-webkit-scrollbar-thumb {
    border-radius: 3px;
  }

  .heroSection .center_content .navbar ul li {
    display: none;
  }

  .heroSection .center_content .navbar.fixNavbar {
    padding: 0px 1.5rem 0px;
  }

  .sideBar .sideBarNav {
    min-width: 100%;
    padding: 20px 20px;

    justify-content: flex-start;
    padding-top: 0;
  }

  .sideBar .sideBarNav .sideBarNav_topPart {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;

    margin: 0;
    padding: 35px 0 20px;
  }

  .sideBar .sideBarNav .sideBarNav_topPart .Copanylogo {
    display: block;
  }

  .sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon {
    height: 100%;
    overflow: hidden;
    margin-right: 20px;
  }

  .sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon div {
    width: 20px;
  }

  .sideBar .sideBarNav .sideBarNav_topPart .hamburgerCloseIcon div:nth-child(1) {
    transform: translate(20px, 0px) rotate(45deg);
  }

  .sideBar {
    left: unset;
    transition: 0.3s all ease;
  }

  .sideBar.hideSideBar {
    height: 0;
    width: 0;
    backdrop-filter: blur(50px);
  }

  .sideBarNav_middlePart {
    width: 100%;
    border-top: 2px solid rgb(11 11 11 / 24%);
    border-bottom: 2px solid rgb(0 0 0 / 24%);
  }

  .sideBarNav_middlePart ul li a {
    justify-content: flex-start;
    font-size: 20px;
    border-bottom: none;
    padding: 13px 0;
    text-transform: capitalize;
    color: #000;
    font-weight: 400;
  }

  .sideBarNav_middlePart ul li a:hover {
    opacity: 1;
  }

  .sideBarNav_bottomPart {
    justify-content: flex-start;
    margin-top: 2.5rem;
  }

  .justAddInMobile {
    display: flex !important;
  }

  .mailIcon {
    display: none !important;
  }

  .verticalIcon {
    display: flex;
  }

  .sideBarNav_middlePart {
    height: calc(100% - 238px);
    padding: 30px 0;
  }

  .sideBarNav_middlePart ul {
    margin-left: 26.656px;
  }

  .sideBarNav_bottomPart .mail,
  .verticalIcon .verticalIcon_mailIcon,
  .verticalIcon .verticalIcon_phoneIcon {
    margin: 0 10px;
  }

  .mainDynamicText h1 {
    font-size: 25px;
  }

  .mainDynamicText {
    margin: 0.5rem 2rem;
  }

  .heroSection .center_content .back_video {
    display: none;
  }

  .videoContainer {
    background: url('../king-html-template/logan/neghbourhood/static_mobile.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .btns {
    flex-wrap: wrap;
  }

  .centerContent .topTextAnimation .topTextAnimation_text01 p,
  .centerContent .topTextAnimation .topTextAnimation_text02 p {
    font-size: 14px;
  }

  .mainDynamicText h1 {
    font-size: 14px;
    line-height: 1.5rem;
  }

  .btns {
    gap: 25px;
    margin-top: 1rem;
  }

  .centerContent {
    top: 4rem;
  }

  .btns button {
    width: 202.88px;
    font-size: 12px;
    line-height: 1.666;
    letter-spacing: 0.1em;
  }

  .heroSection .center_content .navbar ul {
    height: 100%;
  }

  .heroSection .center_content .navbar ul .hamburger_icon {
    height: 100%;
  }

  .t2 h1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
  }

  .centerContent .topTextAnimation {
    width: 196px;
  }

  .staticText {
    font-size: 14px;
  }

  .mobileHamburger {
    display: flex !important;
  }

  .breadcrumb .centerContent {
    width: 90%;
    justify-content: flex-end;
    top: 0rem;
    padding: 0;
    left: unset;
    padding-bottom: 48px;
  }

  .breadcrumb01 .centerContent {
    justify-content: center;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .slick-slider .slick-list {
    height: 241px !important;
    padding: 0 !important;
  }

  .slick-slide img {
    height: 241px;
  }

  .videoContainer01 {
    min-height: 300px;
  }

  .videoContainer01 iframe {
    height: 300px !important;
  }

  footer {
    padding-top: 0;
  }

  .Newsletter .center_content .Newsletter_leftSide p {
    font-size: 16px;
  }

  .Newsletter .center_content .Newsletter_leftSide h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .Newsletter .center_content .Newsletter_rightSide h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 500px) {
  .breadcrumb .center_content {
    min-height: 410px;
  }

  .breadcrumb .centerContent h1 {
    text-align: center;
    font-size: 22px;
    line-height: 26px;
  }

  .breadcrumb .centerContent p {
    font-size: 18px;
    line-height: 24px;
  }

  .breadcrumb .centerContent .breadcrumb_socialIcons {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 10px;
  }

  .breadcrumb .centerContent .breadcrumb_socialIcons a {
    width: 40px;
    height: 40px;
  }

  .card .card_content {
    width: 90%;
  }

  .card .card_content h1 {
    font-size: 24px;
  }

  .areas_of_expertise .topPart h1 {
    font-size: 32px;
    letter-spacing: 0;
  }

  .areas_of_expertise .topPart p {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .areas_of_expertise {
    gap: 30px;
    padding: 65px 0 80px;
  }

  .areas_of_expertise .topPart {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 377px) {
  .breadcrumb .center_content {
    min-height: 390px;
  }

  .breadcrumb .centerContent .breadcrumb_socialIcons a {
    width: 34px;
    height: 34px;
  }

  .breadcrumb .centerContent .breadcrumb_socialIcons a i,
  .breadcrumb .centerContent .breadcrumb_socialIcons a svg {
    font-size: 14px;
    height: unset;
  }

  .zillowIcon svg {
    height: 14px;
  }
}

@media screen and (max-width: 320px) {
  .areas_of_expertise .topPart p {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .areas_of_expertise .topPart h1 {
    font-size: 26px;
  }

  .areas_of_expertise {
    gap: 25px;
  }

  .card .card_content h1 {
    font-size: 22px;
  }
}

@media screen and (max-width: 300px) {
  .breadcrumb .centerContent .breadcrumb_socialIcons a {
    width: 34px;
    height: 34px;
  }

  .breadcrumb .centerContent p {
    font-size: 16px;
    line-height: 22px;
  }

  .breadcrumb .centerContent h1 {
    font-size: 20px;
  }
}