* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  /* 100 - 900 */
  font-style: normal;

  overflow-y: auto !important;

  /* min-height: 2000px; */
  /* display: flex;
  justify-content: center;
  align-items: flex-end; */
  /* background-color: #ffffff; */
}

.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;
}

.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;
}

.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;
}

.heroSection .center_content .navbar {
  width: 100%;
  /* height: 150.8px; */
  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 {
  /* height: 150px; */
  /* position: fixed; */
  padding: 0px 3rem 0px;
  margin-top: 0rem;

  background-color: #fff;
  transform: translateY(0px) scaleY(1);
  /* top: 0;
  left: 0; */
}

.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;
  /* gap: 20px; */

  /* extra */
  /* margin-bottom: 1.5rem; */
}

.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 {
  margin-bottom: 0;
} */
.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 {
  /* min-height: 70px; */
  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(1px, 2px) rotate(45deg); */
  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;
  /* color: #000; */
  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;
  /* background-color: #333; */
  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: 110;
}

.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: 6px; */
  width: 4px;
}

.sideBarNav_middlePart::-webkit-scrollbar-button {
  background-color: transparent;
  height: 0;
}

.sideBarNav_middlePart::-webkit-scrollbar-thumb {
  background-color: #000;
  /* border-radius: 3px; */
  border-radius: 0px;
}

.sideBarNav_middlePart::-webkit-scrollbar-track {
  background-color: rgba(32, 32, 32, 0.05);
}

/* .verticalIcon .verticalIcon_mailIcon i,
.verticalIcon .verticalIcon_phoneIcon i {
  font-size: 1.5rem;
} */

.centerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding-top: 7rem; */
}

.centerContent .topTextAnimation {
  overflow: hidden;
  height: 25px;
  position: relative;
  /* width: 100%; */
  width: 225px;
  transition: 0.3s;
}

.centerContent .topTextAnimation .topTextAnimation_text01,
.centerContent .topTextAnimation .topTextAnimation_text02 {
  transition: 0.3s;
  position: absolute;
  top: 0;
  /* width: 100%; */
  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;
}

/* footer */
footer {
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
}

footer .center_content {
  width: 97%;
  /* max-width: 1400px; */
  /* margin: 0 auto 3rem auto; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 75px;
  margin: 5rem 0;
  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;
}

.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;
}

@media (min-aspect-ratio: 16/9) {
  .back_video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back_video {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width: 1220px) {
  footer .center_content .footer_topPart .row02 {
    padding: 25px 0;
  }

  footer .center_content .footer_bottomPart {
    padding: 0 1rem;
  }
}

@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: 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;
  }
}

@media screen and (max-width: 775px) {
  .heroSection {
    padding: 0;
  }

  .heroSection .center_content .navbar {
    padding: 0px 1.5rem 20px;
    margin-top: 15px;
    /* height: 130px; */
  }

  .heroSection .center_content .navbar .logo img {
    width: 85%;
  }

  /* .heroSection .center_content .navbar.fixNavbar {
    height: 130px;
  } */
}

@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;
    /* padding-top: 1.6rem; */
    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;
    /* width: 100vh;
    height: 100vw; */
  }

  .sideBar.hideSideBar {
    height: 0;
    width: 0;
    backdrop-filter: blur(50px);

    /* top: 0; */
    /* bottom: 0;
    left: 0;
    right: 0; */
  }

  .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;
    /* gap: 35px; */
    margin-top: 2.5rem;
    /* margin-left: 26.656px; */
  }

  .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/images/1.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;
  }
}

/* ************* SERVICES ************** */
/* *********************************** */

.services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .center_content {
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 5rem 0;
}

.services .center_content h1 {
  letter-spacing: 6px;
  line-height: 1.3;
  font-size: 29px;
  font-weight: 400;
}

.services .center_content .services_cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 1rem;
}

.services .center_content .services_cards .services_cards_card01 {
  width: calc(100% / 3 - 20px);
  height: 391.71px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.services .center_content .services_cards .services_cards_card01::before {
  content: "";
  width: 100%;
  bottom: 0;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100px);
  opacity: 0.7;
  left: 0;
  -webkit-transition: all calc(var(--trans-length) * 2) ease;
  transition: all calc(var(--trans-length) * 2) ease;
  z-index: 1;
}

.services .center_content .services_cards .services_cards_card01 .services_cards_card01_image {
  display: flex;
}

.services .center_content .services_cards .services_cards_card01 .services_cards_card01_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease-out;
}

.services .center_content .services_cards .services_cards_card01:hover .services_cards_card01_image img {
  transform: scale(1.1);
}

.services .center_content .services_cards .services_cards_card01 .services_cards_card01_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: all 0.3s ease;
  z-index: 1;
}

.services .center_content .services_cards .services_cards_card01 .services_cards_card01_content::before {
  content: "";
  flex: 1 0 auto;
  max-height: 100%;
  width: 100%;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2 linear;
}

.services .center_content .services_cards .services_cards_card01:hover .services_cards_card01_content::before {
  transition-delay: 0s;
  max-height: 0;
}

.services .center_content .services_cards .services_cards_card01:hover .services_cards_card01_content {
  background-color: #000;
  align-items: center;
}

.services .center_content .services_cards .services_cards_card01 .services_cards_card01_content h1 {
  font-size: 21px;
  letter-spacing: 4px;
  line-height: 1.3;
  font-weight: 400;
  margin: 20px;
  color: #fff;
}

@media screen and (max-width: 1380px) {
  .services .center_content .services_cards .services_cards_card01 {
    width: calc(100% / 3 - 25px);
  }
}

@media screen and (max-width: 1140px) {
  .services .center_content .services_cards .services_cards_card01 {
    width: 433.31px;
  }

  .services .center_content {
    width: 90%;
    max-width: 90%;
    min-width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .services .center_content .services_cards .services_cards_card01 {
    width: 100%;
    height: 293.8px;
  }

  .services .center_content .services_cards {
    padding: 0 0.3rem;
  }

  .services .center_content .services_cards .services_cards_card01 .services_cards_card01_content h1 {
    font-size: 19px;
  }

  .services .center_content h1 {
    font-size: 28px;
    text-align: center;
  }
}

/* ********** About Us ********* */
/* *************************** */

.aboutUs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutUs .center_content {
  /* max-width: ; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin: 1rem 0;
  padding: 0px 1.3rem;
}

.aboutUs .center_content .aboutUs_leftSide,
.aboutUs .center_content .aboutUs_rightSide {
  flex: 50%;
}

.aboutUs .center_content .aboutUs_leftSide {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content {
  max-width: 601px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: flex-start;
  align-items: flex-start;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_topPart h2 {
  font-size: 29px;
  letter-spacing: 6px;
  line-height: 1.3;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_topPart p {
  color: #34495e;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_centerText {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #000;
  font-family: "Arapey", serif;
  font-weight: 400;
  font-style: normal;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_centerText a {
  color: currentColor;
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_centerText a::after {
  content: "";
  width: 0px;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 1px;
  transition: 0.4s;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_centerText a:hover::after {
  width: 100%;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a {
  background: transparent;
  border: 1px solid #000;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  height: 46px;
  letter-spacing: 0.015em;
  line-height: 16px;
  min-width: 200px;
  overflow: hidden;
  padding: 15px 30px;
  padding-bottom: 14px;
  padding-top: 14px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: all 0.2s;
  vertical-align: middle;
  white-space: nowrap;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a:nth-child(1) {
  background-color: transparent;
  color: #000;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a:nth-child(1):hover {
  background-color: #000;
  color: #fff;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a:nth-child(2) {
  background-color: #000;
  color: #fff;
}

.aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a:nth-child(2):hover {
  background-color: transparent;
  color: #000;
}

.aboutUs .center_content .aboutUs_rightSide .image {
  max-width: 879.33px;
  height: 694.67px;
  background-color: #ffffff;
}

.aboutUs .center_content .aboutUs_rightSide .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 992px) {
  .aboutUs .center_content {
    flex-wrap: wrap-reverse;
  }

  .aboutUs .center_content .aboutUs_rightSide .image {
    max-width: 100%;
  }

  .aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content {
    max-width: 100%;
  }

  .aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_centerText .justForBrRemove br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns {
    flex-direction: column;
    width: 100%;
  }

  .aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .btns a {
    width: 100%;
  }

  .aboutUs .center_content .aboutUs_rightSide .image {
    height: 250px;
  }

  .aboutUs .center_content {
    padding: 0;
  }

  .aboutUs .center_content .aboutUs_leftSide {
    padding: 0 1.3rem;
  }

  .aboutUs .center_content .aboutUs_leftSide .aboutUs_leftSide_content .aboutUs_leftSide_content_topPart h2 {
    font-size: 28px;
  }
}

/* *************** THE LATEST NEWS **************** */
/* ********************************************** */

.TheLatestNews {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.TheLatestNews .center_content {
  min-width: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin: 5rem 0;
}

.TheLatestNews .center_content .topHeading h1 {
  letter-spacing: 6px;
  line-height: 1.3;
  font-size: 29px;
  color: #000;
  font-weight: 400;
}

.TheLatestNews .center_content .TheLatestNews_mainContent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_leftSideArrow,
.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_rightSideArrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #000000;
  cursor: pointer;
  transition: 0.3s;
}

.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_leftSideArrow svg,
.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_rightSideArrow svg {
  width: 14px;
  fill: #000000;
}

.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_leftSideArrow:hover,
.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_rightSideArrow:hover {
  background-color: #000000;
}

.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_leftSideArrow:hover svg,
.TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_rightSideArrow:hover svg {
  fill: #ffffff;
}

.TheLatestNews_mainContent_cards {
  max-width: 1045px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  scroll-behavior: smooth;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 {
  max-width: 335px;
  min-height: 427.56px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #000000;
  flex-direction: column;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_image {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_image:hover img {
  transform: scale(1.1);
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  padding: 35px 35px 38px;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .heading {
  text-decoration: none;
  color: #fff;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .heading h6 {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent p {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #ffffff;
  font-family: "Arapey", serif;
  font-weight: 400;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .readmore {
  text-decoration: none;
  height: 14px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  position: relative;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .readmore::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .readmore:hover::before {
  width: 100%;
}

.TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .readmore:hover {
  opacity: 0.7;
}

.TheLatestNews .center_content .btn {
  background: #000000;
  border: 2px solid #000000;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.TheLatestNews .center_content .btn:hover {
  background: transparent;
  color: #000000;
}

@media screen and (max-width: 1350px) {
  .TheLatestNews .center_content {
    min-width: 90%;
    max-width: 90%;
    width: 90%;
  }

  .TheLatestNews_mainContent_cards {
    max-width: calc(355px * 2);
  }
}

@media screen and (max-width: 930px) {
  .TheLatestNews_mainContent_cards {
    max-width: 80%;
  }

  .TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .TheLatestNews .center_content .TheLatestNews_mainContent {
    position: relative;
  }

  .TheLatestNews_mainContent_cards {
    max-width: 100%;
  }

  .TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_leftSideArrow {
    position: absolute;
    bottom: -4rem;
    left: 0px;
  }

  .TheLatestNews .center_content .TheLatestNews_mainContent .TheLatestNews_mainContent_rightSideArrow {
    position: absolute;
    bottom: -4rem;
    right: 0px;
  }

  .TheLatestNews .center_content .topHeading h1 {
    font-size: 28px;
    text-align: center;
  }

  .TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent .heading h6 {
    font-size: 14px;
  }

  .TheLatestNews_mainContent_cards .TheLatestNews_mainContent_cards_card01 .TheLatestNews_mainContent_cards_card01_textContent p {
    font-size: 16px;
  }
}

/* ************* 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/images/Newsletter-Section/1.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;
}

@media 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;
  }
}