@charset "utf-8";
/* CSS Document */

:root {
  --white: #fff;
  --yellow: #d4af37;
  --black: #000;
  --darkgrey: #232323;
  --pink: #fb5887;
}

figure {
  margin: 0;
}

body {
  font-family: "Inter";
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  background-color: #fff;
  color: var(--darkgrey);
}

a,
input,
button,
textarea {
  outline: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

p a {
  text-decoration: none;
  color: inherit;
}

p a:hover {
  color: var(--pink);
}

ul li,
ol li {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ul li a,
ol li a {
  text-decoration: none;
  color: inherit;
}

ul li a:hover,
ol li a:hover {
  color: var(--pink);
}

/* Common Style Start */
.main-title {
  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
}

.main-title * {
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.section-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 500;
}

.section-title * {
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.block-title {
  font-size: 28px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: -1.4px;
}

.block-title * {
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.banner-text {
  font-size: 18px;
  line-height: 27.5px;
  font-weight: 500;
  letter-spacing: 0;
}

.banner-text * {
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.common-detail * {
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.btn {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: -0.75px;
  padding: 11px 19px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn-yellow {
  background-color: var(--pink);
  color: var(--white);
}

.btn-yellow:hover,
.btn-yellow:focus-visible {
  background-color: var(--darkgrey) !important;
  color: var(--white) !important;
}

.btn-link {
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  padding: 0;
  display: flex;
  align-items: center;
  max-width: max-content;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-link:hover {
  color: var(--pink) !important;
}

.btn-link::after {
  content: "";
  background-image: url("../images/long-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 14px;
  height: 12px;
  margin: 1px 0 0 14px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-link:hover::after {
  background-image: url("../images/long-right-pink.svg");
}

.btn-border {
  line-height: 20px;
  padding: 11px;
  border: 1px solid var(--darkgrey);
}

.btn-border:hover,
.btn-border:focus-visible {
  background-color: var(--darkgrey) !important;
  border-color: var(--darkgrey) !important;
  color: var(--white) !important;
}
/* Common Style End */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
  position: relative;
  padding: 20px 0;
  transition: 0.4s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.h-stick {
  position: fixed;
  background: var(--white);
  top: 0;
  box-shadow: 0px 1320px 250px 0px rgba(0, 0, 0, 0),
    0px 53px 116px 0px rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.header.h-stick .navbar-brand {
  max-width: 200px;
}

.header .navbar {
  padding: 0;
}

.header .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 290px;
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.header .navbar-nav .nav-item {
  padding: 0 22px;
}

.header .navbar-nav .nav-item:last-child {
  padding-right: 66px;
}

.header .navbar-nav .nav-item .nav-link {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: #232323;
  /* padding: 0 22px 0 0; */
  position: relative;
  box-shadow: none;
  padding: 0;
  display: inline-flex;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.show {
  color: var(--pink);
}

/* .header .navbar-nav .nav-item .nav-link::after {
	content: "";
	border: none;
	background-image: url("../images/down-arrow.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 11px;
	height: 6px;
	margin: 0;
	vertical-align: middle;
	position: absolute;
	right: 0;
	top: 7px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
} */

/* .header .navbar-nav .nav-item .nav-link:hover::after {
	background-image: url("../images/pink-arrow.svg");
} */

/* .header .navbar-nav .nav-item .nav-link.show::after {
	background-image: url("../images/pink-arrow.svg");
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
} */

.header .dropdown-menu {
  margin: 10px 0 0;
  padding: 0;
}

.header .dropdown-menu .dropdown-item {
  font-size: 13px;
  line-height: 19px;
  padding: 6px 10px;
  background-color: transparent;
}

.header .dropdown-menu .dropdown-item:hover,
.header .dropdown-menu .dropdown-item.active {
  color: var(--pink);
}

.navbar-nav .current-menu-active {
  color: var(--pink) !important;
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/* Banner Start */
.banner-main {
  background-color: var(--darkgrey);
  position: relative;
}

.banner-img img {
  width: 100%;
}

.banner-left .banner-text {
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 15px;
}

.banner-left .main-title {
  color: var(--pink);
  margin: 0 0 34px;
}

.banner-left {
  max-width: 422px;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 102px 25px 102px 49px;
}

.logo-gold {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.banner-img {
  height: 100%;
  margin: 0 -1px 0 -30px;
  display: flex;
}

.banner-img figure {
  height: 100%;
}

.banner-img img,
.banner-img video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wrp {
  padding: 26px 0;
}
/* Banner End */

/* Office Space Start */
.office-space-details .section-title {
  text-transform: uppercase;
  margin: 0 0 19px;
}

.office-space-right img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.office-space-details {
  max-width: 686px;
  width: 100%;
  padding: 0 0 20px;
}

.office-space-right {
  margin: 0 0 0 -13px;
}

.office-space-details .common-detail p {
  margin: 0 0 18px;
}

.modern-way-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.modern-way-details .block-title {
  margin: 0 0 20px;
}

.office-space-bottom .row {
  align-items: flex-end;
}

.modern-way-details {
  margin: 0 0 0 -13px;
}

.modern-way-details .common-detail {
  max-width: 345px;
  width: 100%;
}

.office-space-bottom {
  margin: -148px 0 0;
}

.office-space-wrp {
  padding: 37px 0 34px;
}
/* Office Space End */

/* Amenities Start */
.amenities-wrp {
  padding: 20px 0 35px;
}

.amenities-main .block-title {
  margin: 0 0 18px;
}

.amenities-main .common-detail {
  max-width: 994px;
  width: 100%;
}

.services-img img {
  width: 100%;
  height: 399px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.services-img {
  margin: 0 0 18px;
}

.services-details .section-title {
  line-height: 40px;
  letter-spacing: -1.8px;
  margin: 0 0 21px;
}

.services-item {
  padding: 0 40px 0 0;
}

.services-item:last-child {
  padding-right: 0;
}

.services-slider {
  opacity: 0;
}

.services-slider.slick-initialized {
  opacity: 1;
}

.services-slider .slick-list {
  padding: 0 6% 0 0 !important;
}

.services-slider-wrp {
  padding: 35px 0 38px;
}

.slick-arrow {
  padding: 0;
  border: none;
  background-color: transparent;
  z-index: 9;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -240%);
  -webkit-transform: translate(0, -240%);
  -moz-transform: translate(0, -240%);
  -ms-transform: translate(0, -240%);
  -o-transform: translate(0, -240%);
}

.services-slider .slick-arrow svg path {
  stroke: var(--pink);
}

.services-slider .slick-arrow:hover {
  filter: brightness(0.2);
  -webkit-filter: brightness(0.2);
}

.services-slider .slick-prev {
  left: 17px;
}

.services-slider .slick-next {
  right: 17px;
}

.services-slider .slick-disabled {
  display: none !important;
}
/* Amenities End */

/* Monthly subscription Start */
.monthly-sub-main .section-title {
  line-height: 40px;
  letter-spacing: -1.8px;
  margin: 0 0 25px;
}

.monthly-sub-main > .section-title {
  line-height: 30px;
}

.monthly-sub-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
}

.monthly-sub-block {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}

.monthly-sub-block .common-detail {
  font-weight: 400;
  color: var(--black);
}

.monthly-sub-row .row {
  margin: 0 -10px;
}

.monthly-sub-row .row > * {
  padding: 0 10px;
}

.monthly-sub-wrp {
  padding: 38px 0 27px;
  color: var(--black);
}
/* Monthly subscription End */

/* Palace Experience Start */
.palace-experience-main .section-title {
  margin: 0 0 20px;
  line-height: 36px;
  letter-spacing: -1.4px;
}

.palace-experience-wrp {
  padding: 42px 0 24px;
}

.palace-experience-wrp .experience-arrows .slick-arrow {
  display: flex;
  width: 100%;
  object-fit: contain;
  max-height: 100%;
  padding: 6px;
}

.experience-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
}

.slider-arrow {
  width: 24px;
  height: 24px;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.slider-arrow:hover {
  background-color: var(--pink);
}

.slider-dots {
  background-color: var(--black);
  padding: 8px;
  margin: 0 16px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.slick-dots {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li {
  font-size: 0;
  line-height: 0;
  list-style-type: none;
  padding: 0 2px;
}

.slick-dots li:first-child {
  padding-left: 0;
}

.slick-dots li:last-child {
  padding-right: 0;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 12px;
  height: 12px;
  border: none;
  padding: 0;
  background-color: #b3b3ca;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.slick-dots li.slick-active button {
  background-color: #fff;
  width: 24px;
}

.palace-experience-item img,
.palace-experience-item video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: flex;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.palace-experience-slider .slick-list {
  padding: 0 14% !important;
}

.palace-experience-item {
  margin: 0 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.play-icon {
  font-size: 50px;
  line-height: 50px;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  max-width: max-content;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.play-icon:hover {
  color: var(--darkgrey);
}

.palace-experience-item::after {
  content: "";
  background: -moz-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.palace-experience-slider .slick-track {
  display: flex;
}
/* Palace Experience End */

/* Map Start */
.map-main {
  background-color: #232323;
}

.map-left {
  display: flex;
  height: 100%;
}

.map-left iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.map-right {
  color: var(--white);
  /* padding: 32px 20px; */
  padding: 32px 20px 112px 20px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.map-right .logo-gold {
  max-width: 395px;
  width: 100%;
  left: auto;
  right: 0;
  opacity: 0.29;
  z-index: -1;
}

.map-right .logo-gold img {
  width: 100%;
}

.map-right .banner-text {
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.map-right .banner-text span {
  font-size: 20px;
  line-height: 22px;
  padding: 6px 0 0;
  display: block;
  text-transform: capitalize;
}

.map-right .common-detail {
  line-height: 24px;
  padding: 70px 0 0;
}

.map-right .common-detail ul {
  padding: 0;
  margin: 0;
}

.map-right .common-detail ul li {
  list-style-type: none;
}

.map-wrp {
  padding: 24px 0 26px 0;
}
/* Map End */

/* Contact Start */
.contact-main {
  padding: 0 50px;
}

.contact-main .block-title {
  font-size: 29px;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.contact-form .form-group {
  padding: 18px;
  background-color: #fafafa;
  border-bottom: 1px solid var(--darkgrey);
  margin: 0 0 20px;
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  top: 40px;
  left: -17px;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-acceptance label {
  display: flex;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 10px;
  line-height: 14.4px;
  color: #232323;
}

.wpcf7-acceptance .wpcf7-list-item-label a {
  color: #555;
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover {
  color: var(--black);
}
.contact-form .form-control {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: var(--darkgrey);
  box-shadow: none;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.contact-form .form-control::placeholder {
  color: var(--darkgrey);
}

.contact-section .row {
  margin: 0 -40px;
}

.contact-section .row > * {
  padding: 0 40px;
}

.contact-form .form-check-input {
  margin: 1px 10px 0 0;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  box-shadow: none;
  background-color: var(--white);
  border: 2px solid #232323;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.contact-form .form-check-input:checked {
  background-color: var(--darkgrey);
}

.contact-form .check-group {
  display: flex;
  padding: 25px 20px 37px 13px;
  border-bottom: none;
}

.check-group .form-check-label {
  font-size: 10px;
  line-height: 14px;
}

.check-group .form-check-label a {
  color: #555;
  text-decoration: underline;
}

.check-group .form-check-label a:hover {
  color: var(--pink);
}

.form-btn {
  text-align: right;
  padding: 20px 0 0;
}

.form-btn .btn {
  max-width: 160px;
  width: 100%;
}

.contact-wrp {
  padding: 24px 0 75px;
}
.contact-form .wpcf7-form .wpcf7-response-output {
  border: 0px;
  padding: 0px;
}
.contact-form .wpcf7-form.invalid .wpcf7-response-output,
.contact-form .wpcf7-form.failed .wpcf7-response-output {
  color: #dc3232;
  margin: 10px 0;
}

.contact-form .wpcf7-form.valid .wpcf7-response-output,
.contact-form .wpcf7-form.success .wpcf7-response-output,
.contact-form .wpcf7-form.sent .wpcf7-response-output {
  margin: 10px 0;
  color: #01c901;
}
/* .contact-form .wpcf7-form. .wpcf7-response-output, */

/* Contact End */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/

/*========== Typography Page Start ==========*/
.aligncenter {
  float: none;
  display: block;
  margin: 20px auto;
}

.alignright {
  float: right;
  margin: 20px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 20px 20px 20px 0;
}

.typography-wrp {
  padding: 20px 0 100px 0;
}

.typography-main .main-title {
  margin: 0 0 50px;
  text-align: center;
  color: var(--pink);
}
/*========== Typography Page End ==========*/

/*========== 404 Page Start ==========*/
.error-page {
  text-align: center;
}

.error-page .section-title {
  margin: 0 0 40px;
}

.error-page .block-title {
  margin: 0 0 30px;
}
/*========== 404 Page End ==========*/

/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer-main {
  background-color: #f1f1f1;
  border-top: 8px solid #232323;
  padding: 20px;
}

.footer-main .row {
  align-items: flex-end;
}

.footer-main .common-detail {
  font-size: 16px;
  line-height: 17px;
  font-weight: 500;
}

.footer-main .common-detail h5 {
  margin: 0 0 24px;
}

.footer-main .common-detail ul {
  padding: 0;
  margin: 0;
}

.footer-main .common-detail ul li {
  line-height: 24px;
  list-style-type: none;
  font-weight: 300;
  padding: 0 0 10px;
}

.privacy-notes ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.privacy-notes ul li {
  font-size: 12px;
  line-height: 16px;
  list-style-type: none;
  padding: 0 5px;
  border-right: 1px solid var(--darkgrey);
}

.privacy-notes ul li:first-child {
  padding-left: 0;
}

.privacy-notes ul li:last-child {
  padding-right: 0;
  border-right: none;
}

.copyright {
  padding: 4px 0 0;
}

.copyright p {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.social-media ul {
  padding: 0;
  margin: 0;
}

.social-media ul li {
  font-size: 30px;
  list-style-type: none;
  padding: 0 0 10px;
}

.social-media ul li a {
  display: flex;
  max-width: max-content;
}

.footer-middle .copyright {
  padding: 8px 0 0;
}

/* .footer-right {
	margin: 0 0 0 -70px;
} */

.footer-right a {
  margin: 0 auto;
  display: block;
  max-width: 212px;
}
/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/
