/*********************
BREAKPOINTS

https://responsivedesign.is/develop/getting-started-with-sass-and-breakpoint-mixin/
*********************/
/***************************
FLEXBOX MIXINS
***************************/
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
.grid-parent {
  display: -ms- grid;
  display: grid;
}

.svg-canvas {
  height: 0;
  padding-top: 100%;
  position: relative;
}
.svg-canvas svg:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.phtx-flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.phtx-flex-container.column {
  -webkit-flex-direction: vertical;
  -moz-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.phtx-flex-container.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.phtx-flex-container.flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.phtx-flex-container.space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.phtx-flex-container.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.phtx-flex-container > * {
  width: 100%;
}
.phtx-flex-container .collapsing {
  -webkit-transition: none;
  transition: none;
  display: none;
}
.phtx-flex-container > .child-sm-12 {
  width: 100%;
}
.phtx-flex-container > .child-sm-11 {
  width: 91.33%;
}
.phtx-flex-container > .child-sm-10 {
  width: 83%;
}
.phtx-flex-container > .child-sm-9 {
  width: 74.5%;
}
.phtx-flex-container > .child-sm-8 {
  width: 66.33%;
}
.phtx-flex-container > .child-sm-7 {
  width: 58%;
}
.phtx-flex-container > .child-sm-6 {
  width: 49.66%;
}
.phtx-flex-container > .child-sm-5 {
  width: 41.33%;
}
.phtx-flex-container > .child-sm-4 {
  width: 33%;
}
.phtx-flex-container > .child-sm-3 {
  width: 24.66%;
}
.phtx-flex-container > .child-sm-2 {
  width: 16.33%;
}
.phtx-flex-container > .child-sm-1 {
  width: 8%;
}
@media (min-width: 48em) and (max-aspect-ratio: 2) {
  .phtx-flex-container > .child-md-12 {
    width: 100%;
  }
  .phtx-flex-container > .child-md-11 {
    width: 91.33%;
  }
  .phtx-flex-container > .child-md-10 {
    width: 83%;
  }
  .phtx-flex-container > .child-md-9 {
    width: 74.5%;
  }
  .phtx-flex-container > .child-md-8 {
    width: 66.33%;
  }
  .phtx-flex-container > .child-md-7 {
    width: 58%;
  }
  .phtx-flex-container > .child-md-6 {
    width: 49.66%;
  }
  .phtx-flex-container > .child-md-5 {
    width: 41.33%;
  }
  .phtx-flex-container > .child-md-4 {
    width: 33%;
  }
  .phtx-flex-container > .child-md-3 {
    width: 24.66%;
  }
  .phtx-flex-container > .child-md-2 {
    width: 16.33%;
  }
  .phtx-flex-container > .child-md-1 {
    width: 8%;
  }
}
@media (min-width: 62em) and (orientation: landscape) {
  .phtx-flex-container > .child-lg-12 {
    width: 100%;
  }
  .phtx-flex-container > .child-lg-11 {
    width: 91.33%;
  }
  .phtx-flex-container > .child-lg-10 {
    width: 83%;
  }
  .phtx-flex-container > .child-lg-9 {
    width: 74.5%;
  }
  .phtx-flex-container > .child-lg-8 {
    width: 66.33%;
  }
  .phtx-flex-container > .child-lg-7 {
    width: 58%;
  }
  .phtx-flex-container > .child-lg-6 {
    width: 49.66%;
  }
  .phtx-flex-container > .child-lg-5 {
    width: 41.33%;
  }
  .phtx-flex-container > .child-lg-4 {
    width: 33%;
  }
  .phtx-flex-container > .child-lg-3 {
    width: 24.66%;
  }
  .phtx-flex-container > .child-lg-2 {
    width: 16.33%;
  }
  .phtx-flex-container > .child-lg-1 {
    width: 8%;
  }
}
@media (min-width: 75em) and (orientation: landscape) {
  .phtx-flex-container > .child-xl-12 {
    width: 100%;
  }
  .phtx-flex-container > .child-xl-11 {
    width: 91.33%;
  }
  .phtx-flex-container > .child-xl-10 {
    width: 83%;
  }
  .phtx-flex-container > .child-xl-9 {
    width: 74.5%;
  }
  .phtx-flex-container > .child-xl-8 {
    width: 66.33%;
  }
  .phtx-flex-container > .child-xl-7 {
    width: 58%;
  }
  .phtx-flex-container > .child-xl-6 {
    width: 49.66%;
  }
  .phtx-flex-container > .child-xl-5 {
    width: 41.33%;
  }
  .phtx-flex-container > .child-xl-4 {
    width: 33%;
  }
  .phtx-flex-container > .child-xl-3 {
    width: 24.66%;
  }
  .phtx-flex-container > .child-xl-2 {
    width: 16.33%;
  }
  .phtx-flex-container > .child-xl-1 {
    width: 8%;
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  --axp-white: #FFF;
  --axp-light: #D2D2D2;
  --axp-black: #000;
  --axp-gold: #B3881C;
  --axp-dark-gold: #775411;
  --axp-darkest-gold: #61440E;
  --axp-light-gold: #B3871B;
  --axp-light-grey: #D3D5D7;
  --axp-grey: #808080;
  --axp-dark-grey: #494949;
  --axp-transparent-grey: #A7A7A72E;
  --axp-accent: #20b2aa;
  --axp-dark-accent: #188781;
  --axp-light-accent: #24c8bf;
  --axp-orange: #FFA500;
  --axp-font-body: "Roboto", serif;
  --axp-font-display: "Raleway", Arial, sans-serif;
  overflow-x: hidden !important;
  background: var(--axp-black);
  height: 100%;
  font-family: var(--axp-font-body) !important;
}

.image_img {
  width: 100%;
  margin-bottom: 40px;
  padding: 10px;
}

:focus {
  outline: none !important;
}

a {
  text-decoration: none !important;
  color: var(--axp-light);
}
a:focus, a:hover {
  color: var(--axp-gold);
  text-decoration: underline;
}

li {
  list-style-type: none;
}

ul {
  padding: 0;
  margin: 0;
}

html {
  background: var(--axp-black);
  height: 100%;
  font-family: var(--axp-font-body) !important;
}

/*navbar starts*/
.nav > li > a {
  font-size: 15px;
}

ul.nav.navbar-nav.navbar-right {
  padding: 19px 0;
}

.navbar-default {
  padding: 0 0;
  border: none;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #dcdcdc;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: rgba(221, 221, 221, 0);
}
.navbar-default .navbar-brand {
  color: var(--axp-white);
  opacity: 1;
  transition: all 2s ease;
}
.navbar-default .navbar-brand span {
  color: var(--axp-dark-gold);
  display: inline-block;
  margin: 0 0 0 10px;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
  color: var(--axp-white);
  opacity: 0.4;
  transition: all 2s ease;
}

.navbar-brand {
  float: none;
  height: auto;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 0;
}

a.navbar-brand.nav-logo {
  display: inline-block;
}

.ayatana-logo {
  width: 190px;
}

.women-logo {
  width: 90px;
  margin-left: 25px;
}

ul.nav.navbar-nav.navbar-right a {
  color: var(--axp-white);
  border-bottom: 2px solid var(--axp-black);
}

ul.nav.navbar-nav.navbar-right a:hover {
  color: var(--axp-white);
  /*border-bottom: 2px solid #775411;*/
  transition: 0.45s;
}

.bg-video {
  width: 100%;
  background: var(--axp-black);
}
.bg-video video {
  width: 100%;
  filter: sepia(77%);
  height: 100%;
}

header {
  position: relative;
}

/*navbar ends*/
/*return-top*/
#return-to-top {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
  background: none;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #ffffff;
  margin: 0;
  position: relative;
  left: 22px;
  top: 15px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #ffffff;
  top: 5px;
}

/*expand section*/
label {
  font-weight: bold;
  display: block;
  line-height: 1.5;
  margin-bottom: 5px;
  cursor: pointer;
}

.hint-text {
  font-size: 0.8rem;
  color: var(--axp-grey);
}

.styled-button {
  color: white;
  font-weight: bold;
  background-color: var(--axp-accent);
  border: 3px solid var(--axp-dark-accent);
  padding: 0.5rem;
}
.styled-button:hover, .styled-button:active, .styled-button:focus {
  background-color: var(--axp-light-accent);
  cursor: pointer;
  -webkit-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
}
.styled-button:focus {
  outline: 3px solid var(--axp-orange);
}

.styled-list {
  list-style-type: initial;
  margin-left: 2rem;
}
.styled-list ul {
  list-style-type: circle;
  margin-left: 1.25rem;
}
.styled-list li {
  line-height: 1.25;
}

.expand-button {
  margin-top: 1rem;
  background: no-repeat;
  font-size: 22px;
  border: none;
}
.expand-button:focus {
  outline: none;
}

/* .expand-button:active, .expand-button:focus {
    transform: rotate(180deg);

  }*/
.special-text {
  position: relative;
  max-height: 95px;
  overflow: hidden;
  transition: max-height 1s ease;
}
.special-text.-expanded {
  max-height: 100vh;
}
.special-text:not(.-expanded)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), var(--axp-black));
}

.border-wr {
  border-top: 1px solid var(--axp-transparent-grey);
  padding: 50px 0 0;
  color: var(--axp-light);
  text-align: center;
}
.border-wr h2 {
  color: var(--axp-darkest-gold);
}
.border-wr p {
  font-size: 14px;
  line-height: 25px;
  color: var(--axp-light-grey);
  padding: 15px 0;
  width: 65%;
  margin: 0 auto;
}

.article-wr {
  margin: 20px 0;
}
.article-wr strong {
  font-size: 15px !important;
  margin: 0 0 0 26px;
  color: #fff !important;
}

.moment-inner {
  background: #232323;
  color: #fff;
  padding: 28px 20px;
  height: 100vh;
}
.moment-inner span {
  display: inline-block;
  margin: 10px 0;
}
.moment-inner span img {
  display: inline;
  width: 42px;
  padding: 0 6px;
}
.moment-inner strong {
  font-size: 22px;
  font-weight: 100;
  color: #a5700b;
}
.moment-inner ul li {
  display: inline-block;
  margin: 19px 0;
}

.moment-outer-col {
  height: 100vh;
}

li.sc-blog {
  margin: 0 16px !important;
  font-size: 18px;
}
li.sc-blog a {
  color: #fff;
}
li.sc-blog a:hover {
  opacity: 0.8;
}

a.blog-btn {
  text-align: center;
  display: block;
  margin: 35px auto 0;
  border: 1px solid #fff;
  padding: 5px 29px;
  font-size: 12px;
  width: 140px;
}
a.blog-btn:hover {
  background: #fff;
  transition: 0.45s;
  color: #000;
}

/*ends*/
.navbar-toggle {
  margin-top: 25px;
}

/*clients css starts*/
/* .slide-content {
    padding: 0 25px;
  } */
.col-md-8.blog-page-moment .moment-inner {
  height: auto;
}

.row.blog-space {
  margin-bottom: 35px;
  padding: 0 13px;
}

.slick-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.blog-image {
  height: 100vh;
}
.blog-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.outer-content {
  background: #ffffff;
  position: relative;
  margin: 0 25px;
  overflow: hidden;
}
.outer-content:hover .hover-content {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover-content {
  display: none;
}
.hover-content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
}
.hover-content::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.8117647059);
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: 0.45s;
  transform: scale(1.05);
}
.hover-content:hover {
  overflow: hidden;
  height: 100%;
}
.hover-content:hover img,
.hover-content:hover a {
  transform: scale(1.05);
  transition: 0.45s;
}
.hover-content:hover .outer-wr-content a {
  transform: scale(1.04);
  transition: 0.45s;
}
.hover-content img {
  position: absolute;
  top: 0;
}
.hover-content p {
  color: #fff;
  position: relative;
  z-index: 1111;
  font-size: 20px;
  font-weight: 100;
  line-height: 35px;
}

.outer-wr-content {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  padding: 55px 0px;
  text-align: center;
  transition: 0.45s;
}
.outer-wr-content img {
  filter: invert(100);
  position: relative;
  z-index: 1000;
  width: 75%;
}
.outer-wr-content a {
  display: inline-block;
  text-align: center;
  color: #8a6d3b;
  position: relative;
  z-index: 1000;
  text-transform: uppercase;
  font-size: 20px;
  padding: 21px 9px;
  text-decoration: none;
  font-weight: 300;
  transition: 0.45s;
  transform: scale(1.05);
}
.outer-wr-content span {
  display: inline-block;
  margin: 65px 0;
  color: #fff;
  position: relative;
  z-index: 1000;
  font-size: 15px;
}

button.slick-prev.slick-arrow {
  background: none;
  color: rgba(217, 217, 217, 0.768627451);
  border: none;
  padding: 3px 10px;
  position: absolute;
  font-size: 37px;
  top: 40%;
  left: -35px;
  z-index: 1;
}

button.slick-next.slick-arrow {
  background: none;
  color: rgba(217, 217, 217, 0.768627451);
  border: none;
  padding: 3px 10px;
  font-size: 30px;
  position: absolute;
  top: 40%;
  right: -35px;
  z-index: 10000;
}

.heading-wr span {
  font-size: 20px;
  display: inline-block;
  padding: 30px 0;
  color: var(--axp-light-grey);
}
.heading-wr h2 {
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  display: inline-block;
  margin: 40px auto;
  padding: 10px 20px;
  font-family: var(--axp-font-body);
  font-weight: 300;
}

.slick-slider {
  margin: 50px 0 0;
}

/*ends*/
/*team css starts*/
.hover-team {
  top: 0;
  height: 100%;
  padding: 24% 0;
  width: 100%;
  display: none;
  vertical-align: middle;
  position: absolute;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7215686275);
  text-align: center;
}
.hover-team span {
  display: block;
  font-weight: 200;
  font-size: 20px;
}
.hover-team strong {
  display: block;
  font-size: 22px;
  font-weight: 300;
  margin: 30px 0;
}
.hover-team:hover strong,
.hover-team:hover span {
  transition: 0.45s;
  transform: scale(1.05);
}

.outer-content:hover .hover-team {
  display: block;
}

.outer-apporach-wr img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.img-outer-wr-app {
  margin: 10px 0;
  height: 246px;
}

.inner-content-we {
  background: #ffffff;
  border: 2px dashed #ffb400;
  padding: 60px 15px;
  text-align: center;
  font-family: var(--axp-font-body);
  font-weight: 200;
  color: var(--axp-black);
}
.inner-content-we strong {
  font-size: 15px;
  text-align: center;
  display: block;
  font-weight: 200;
  padding: 15px 0 15px;
  color: var(--axp-black);
}

.moments-outer {
  padding: 30px;
}
.moments-outer .col-md-4,
.moments-outer .col-md-8 {
  padding: 0;
}

.footer-cnt strong {
  display: block;
  font-family: var(--axp-font-body);
  font-size: 18px;
  font-weight: 400;
}
.footer-cnt span {
  display: block;
  font-size: 17px;
  padding: 15px 0;
  font-family: var(--axp-font-body);
  font-weight: 200;
}

ul.footer-sc {
  margin: 0px 0 25px;
}
ul.footer-sc li {
  display: inline-block;
  margin: 5px 10px;
  font-size: 25px;
}
ul.footer-sc li a {
  color: #fff;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 65px;
  opacity: 0.3;
}
ul.footer-sc li a img {
  filter: invert(1);
  width: 50px !important;
  padding: 10px;
  height: 50px;
}

/*ends*/
/*client page css starts*/
.client-img {
  padding: 13% 0px;
}
.client-img img {
  width: 75% !important;
}

.cl-p-image-wr {
  background: #fff;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.cl-p-image-wr:hover img {
  transition: 0.45s;
  transform: scale(1.1);
}
.cl-p-image-wr:hover .cl-hover-content {
  display: block;
  transition: 0.45s ease-in;
}
.cl-p-image-wr img {
  width: 100%;
}
.cl-p-image-wr .outer-content {
  margin: 0;
}
.cl-p-image-wr .hover-team {
  width: 100%;
}

/*.modal-dialog {
      width: 47%;
      overflow-x: hidden;
      margin: 112px auto 0;
      height: 639px;
  }*/
.modal-dialog {
  width: 100%;
  margin: 90px auto;
}

.modal-content {
  background: none;
  box-shadow: none;
  border: none;
}

button.close {
  position: absolute;
  top: 43px;
  color: #fff;
  z-index: 100;
  height: 50px;
  width: 50px;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.6705882353);
  opacity: 1;
  border-radius: 50%;
  font-weight: 300;
  padding: 9px 14px;
  right: 38px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 0;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

.modal-body {
  position: relative;
  padding: 0;
  /* height: 380px;*/
  background: none;
}

.modal-header {
  padding: 0;
  background: #efefef;
  border: none;
}
.modal-header .close {
  margin: 8px 15px;
  font-size: 28px;
  color: #000;
}

img.pop-up-imge {
  background: #fff;
  box-shadow: 0px 0px 7px 4px #e2e2e2;
  width: 100%;
}

.popup-content.col-md-8 {
  padding: 35px;
}
.popup-content strong {
  font-size: 24px;
  color: #AC7710;
  font-weight: 500;
  display: inline-block;
  margin: 15px 12px 0 0;
}
.popup-content p {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
  line-height: 35px;
}

.col-md-4.client-inside-wr {
  padding: 10px;
  height: 390px;
}

/*client page css ends*/
/*team css starts*/
.team-content-l {
  padding: 70px;
  color: #fff;
}

.team-content-r {
  padding: 70px 100px 0 0px;
  color: #fff;
}

.team-content-r strong,
.team-content-l strong {
  font-size: 21px;
  display: block;
  margin: 10px 0 3px;
  font-weight: 100;
  color: #a77f31;
}
.team-content-r span,
.team-content-l span {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 20px;
}

/*team css ends*/
section {
  background: #000;
  position: relative;
  padding: 60px 0;
}

.bg-video {
  height: 800px;
}
.bg-video video {
  position: fixed;
  width: 100%;
  height: auto;
}

footer.index-footer {
  position: relative;
  background: #000;
}

/*parallax effets*/
.project {
  position: relative;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out, -webkit-transform 0.5s ease-out;
  will-change: transform, box-shadow;
}

.fade-text-wr.text p {
  position: fixed;
  top: 52%;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--axp-font-body);
  font-weight: 200;
  font-size: 20px;
  z-index: 100;
  color: #fff !important;
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

.project__description {
  text-align: center;
  height: 537px;
  position: relative;
  color: #fff;
  z-index: 0;
}

/*moments css  starts*/
section.moment-banner {
  margin: 35px 0;
}

.blog-page-moment .moment-inner {
  background: none;
  padding: 0 0 0 20px;
}

.bloger-right span {
  display: inline-block;
  padding: 10px 0;
  color: #fff;
}
.bloger-right strong {
  display: block;
  font-size: 24px;
  color: #b57b18;
  font-weight: 100;
  margin: 0;
}
.bloger-right img {
  width: 100%;
}

.col-md-4.blog-left img {
  width: 100%;
  object-fit: cover;
}

.col-md-4.blog-left {
  padding: 0;
}

.row.blog-space {
  margin-bottom: 35px;
}

.no-pad {
  padding: 0;
}

.right-blog-content {
  background: #2b2b2b;
  padding: 10px;
}
.right-blog-content .article-wr strong {
  display: inline-block;
  font-size: 13px !important;
  margin: 0 0 0 30px;
}

.insta-wr img {
  width: 80px;
  background: #fff;
  border-radius: 50%;
  padding: 4px 4px;
  float: left;
}
.insta-wr p {
  vertical-align: middle;
  float: left;
  margin: 10px 0 0 32px;
}
.insta-wr b {
  display: inline-block;
  clear: both;
  margin: 15px 10px;
  color: #ccc;
  font-weight: 100;
}

.rght-bottom {
  margin: 25px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid #4a4a4a;
}
.rght-bottom strong {
  font-size: 22px;
  margin: 0px 0 17px;
}
.rght-bottom p strong {
  margin: 0;
}

.insta-image .col-md-6 {
  padding: 5px;
}
.insta-image a {
  text-align: center;
  display: inline-block;
  margin: 15px 0 0;
  padding: 10px 0;
  width: 100%;
  background: #fff;
  color: #c18c2f;
}

.col-md-12.we-do-page-content {
  text-align: center;
  padding: 20px 0;
}
.col-md-12.we-do-page-content strong {
  font-size: 20px;
  color: #ececec;
  font-weight: 100;
}
.col-md-12.we-do-page-content p {
  font-size: 15px;
  line-height: 23px;
  margin: 29px 0px 0;
  color: #fff;
  font-weight: 100;
}

/*moment css ends*/
a.outer-content {
  display: block;
}

.menu {
  left: 0;
  z-index: 1000;
  top: 0;
  position: absolute;
  width: 100%;
  font-size: 2rem;
  margin: 0;
  background-color: #000;
  padding: 1rem 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.banner-wr img {
  object-fit: contain;
  width: 50%;
  position: fixed;
  z-index: 0;
  top: 22%;
  height: auto;
  margin: 0 auto;
  left: 0;
  right: 0;
}

/* .menu li {
    padding: 0.5em 1em;
    color: #fff;
  } */
.menu.is-fixed {
  position: fixed;
  z-index: 10004;
  -webkit-animation-name: stickySlideDown;
  animation-name: stickySlideDown;
  padding: 0;
  -webkit-transition: none;
  transition: none;
}

@-webkit-keyframes stickySlideDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.main-logo img {
  width: 25%;
}

.logo-outer {
  position: fixed;
  z-index: 99;
  background: #000;
  top: 80px;
  padding: 1% 0;
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
}

.inner-delv img {
  width: 100%;
}

section.delv {
  margin: 30px 0px;
}
section.delv .row {
  margin: 0 0 135px 0;
  position: relative;
}

.delv-txt img {
  width: 28%;
}
.delv-txt p {
  padding: 30px 0 0;
  font-size: 37px;
  color: #fff;
  position: relative;
  font-family: var(--axp-font-body);
  font-weight: 200;
  margin: 18% 0 0;
}
.delv-txt p::before {
  content: "";
  width: 55%;
  height: 1px;
  position: absolute;
  bottom: 184px;
  left: 0;
  background: var(--axp-light-gold);
}

.align-right {
  text-align: right;
}
.align-right p::before {
  right: 0;
  left: auto;
}

section.elevated-sc {
  background-color: #e6e7e6;
  text-align: center;
}

.inner-ele h2 {
  font-family: var(--axp-font-body);
  font-weight: 200;
  line-height: 50px;
  font-size: 40px;
  padding: 0px 75px;
}
.inner-ele p {
  font-size: 22px;
  font-family: var(--axp-font-body);
  font-weight: 200;
  padding: 0 100px;
  margin: 45px 0;
}
.inner-ele img {
  width: 8%;
}

.we-do-wr {
  background-image: url(../images/work-bg.png);
  background-size: contain;
  padding: 20% 0;
  background-repeat: no-repeat;
  background-position: center;
}

.outer-form {
  text-align: center;
}

strong.engage-head {
  font-size: 27px;
  color: #ffffff;
  font-family: var(--axp-font-body);
  font-weight: 200;
  display: inline-block;
  padding: 20px 0;
}

.question select option,
.index-question select option {
  background-color: var(--axp-black);
  color: var(--axp-white);
  padding: 10px;
}

.question select,
.question input,
.index-question select {
  width: 25%;
  background-color: var(--axp-black);
  color: #fff;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 50px;
  font-family: var(--axp-font-body);
  font-weight: 200;
  padding: 10px 10px;
  border: 1px solid #af872a;
  margin: 10px 0;
}

.question select {
  background-image: url(../images/down-arrow.png);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: auto 35%;
}

.index-question select {
  background-image: url(../images/down-arrow-black.png);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: auto 25%;
}

.question textarea {
  width: 25%;
  background: none;
  color: var(--axp-white);
  font-size: 15px;
  font-family: var(--axp-font-body);
  font-weight: 200;
  padding: 10px 10px;
  border: 1px solid #af872a;
  margin: 10px 0;
}

::placeholder {
  color: var(--axp-white);
  font-size: 15px;
}

.home-inp input::placeholder,
.home-inp textarea::placeholder {
  color: var(--axp-black) !important;
}

form.index-form button {
  background: none;
  border: 1px solid #b0892b;
  color: #b0892b;
  font-family: var(--axp-font-body);
  font-weight: 200;
  padding: 10px 25px;
}
form.index-form button:hover {
  background: #b0892b;
  transition: 0.45s;
  color: #fff;
}

p.bottom-p {
  font-size: 26px;
  margin: 30px 0;
  padding: 0 19%;
  color: #b0892b;
  font-family: var(--axp-font-body);
  font-weight: 200;
}

a.dr-mail {
  font-size: 20px;
  font-family: var(--axp-font-body);
  font-weight: 200;
  display: inline-block;
}
a.dr-mail:hover {
  color: #fff;
  transform: scale(1.1);
  transition: 0.45s ease-in-out;
}

.border-wr.footer-cnt img {
  width: 160px;
}

.inner-work-wr {
  background: #fff;
  text-align: center;
  height: 285px;
  padding: 30px 0;
}
.inner-work-wr img {
  width: 65%;
}

a.carousel-control.left {
  background: none;
  position: absolute;
  font-size: 33px;
  top: 45%;
}
a.carousel-control.left.left {
  left: -60px;
}
a.carousel-control.left.right {
  right: -60px;
}

.modal.fade.in {
  background: #000000;
  /*overflow: hidden;*/
  top: -35px;
}

.client-banner-wr {
  padding: 100px 0 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.client-banner-wr .img-content h2 {
  margin: 0;
  padding: 30px 0;
  font-size: 35px;
  font-weight: 200;
  position: relative;
  color: var(--axp-light-gold);
}
.client-banner-wr .img-content p {
  position: relative;
  font-weight: 100;
  font-size: 23px;
  line-height: 35px;
}
.client-banner-wr img {
  width: 100%;
}

section.about-wr {
  padding: 100px 0 0;
  text-align: center;
}

.inner-content-abt p {
  font-size: 22px;
  color: #fff;
  font-weight: 200;
  line-height: 45px;
  padding: 0 50px;
}
.inner-content-abt p strong {
  font-weight: 100;
  font-size: 33px;
  display: inline;
  color: #fff;
  margin: 0 5px;
}
.inner-content-abt p strong span {
  color: #a17d28;
  display: inline;
  margin: 0;
}
.inner-content-abt strong {
  font-size: 50px;
  display: inline-block;
  font-weight: 100;
  color: #a17d28;
  margin: 25px 0;
}
.inner-content-abt span {
  display: block;
  font-size: 39px;
  font-weight: 200;
  color: #fff;
  margin: 30px 0;
}

.en-image-wr {
  margin-bottom: 30px;
}
.en-image-wr img {
  width: 100%;
}

.inner-eng-wr {
  padding: 15% 0;
}

select::-ms-expand {
  display: none;
}

footer.index-footer {
  padding: 6% 0;
}

ul.right-ser {
  text-align: right;
}
ul.right-ser li:before {
  right: 0;
}

.client-heading.heading-wr {
  text-align: center;
}

#style-4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #000000;
}
#style-4::-webkit-scrollbar {
  width: 3px;
  background-color: #000000;
}
#style-4::-webkit-scrollbar-thumb {
  background-color: #8a6d3b;
}

.style-11::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #000000;
}
.style-11::-webkit-scrollbar {
  width: 3px;
  background-color: #000000;
}
.style-11::-webkit-scrollbar-thumb {
  background-color: #8a6d3b;
}

.cl-hover-content {
  display: none;
  transition: 0.45s ease-in;
}

.cl-outer-wr-content {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.768627451);
  right: 0;
  left: 0;
  padding: 20% 0;
  text-align: center;
  justify-content: center;
  display: block;
  height: 100%;
  width: 100%;
}
.cl-outer-wr-content p {
  font-size: 20px;
  color: #fff;
  padding: 29px 2px;
  font-weight: 100;
}
.cl-outer-wr-content a {
  font-size: 26px;
  font-weight: 100;
  display: inline-block;
  color: #e29f2b;
  transition: 0.45s ease-in;
}
.cl-outer-wr-content a:hover {
  transform: scale(1.1);
  transition: 0.45s ease-in;
}

ul.client-popup-grid li {
  display: inline-block;
  width: 47%;
  margin: 5px 6px;
}
ul.client-popup-grid li img {
  width: 100%;
}

.outer-form {
  text-align: center;
  padding: 17% 0px 0;
}

.wrk-logos {
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  right: 0;
  margin: 0 auto;
  width: 50%;
}
.wrk-logos img {
  width: 75%;
  margin: 7% auto 0;
  text-align: center;
  opacity: 0.6;
}

p.cmg-sn {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 81px;
  font-family: var(--axp-font-body);
  color: #fff;
  font-weight: 200;
}

.large-font {
  font-size: 40px;
  text-align: center;
  font-weight: 100;
}

.carousel-er ul li {
  width: 49%;
  display: inline-block;
  padding: 60px 12px;
}
.carousel-er ul li img {
  width: 100%;
}

.bems-scroller {
  display: flex;
  border-radius: 1em;
  overflow: hidden;
}
.bems-scroller #scrolling-container {
  display: flex;
  flex-wrap: nowrap;
  padding: 1em 0;
  overflow-x: scroll;
  overflow-x: -moz-scrollbars-none;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.bems-scroller #scrolling-container::-webkit-scrollbar {
  display: none;
}
.bems-scroller li {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  list-style-type: none;
  width: 46%;
  margin: 55px 1em;
}
.bems-scroller li img {
  width: 100%;
}

.about-content {
  padding: 25px;
  background: #fff;
}

.about-cls {
  background: #000;
  top: -20px !important;
}

/* ==========================================================================
     Mixins  ========================================================================== */
.text-anim {
  color: #ffffff;
  font-size: 66px;
  text-align: center;
  font-family: var(--axp-font-body);
  font-weight: 100;
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
}
.text-anim.animate span {
  opacity: 1;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}
.text-anim span {
  opacity: 0;
  -webkit-transition: all, 550ms;
  transition: all, 550ms;
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -ms-filter: blur(25px);
  filter: blur(25px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* ==========================================================================
       Main Animation
  ========================================================================== */
}
.text-anim span:nth-child(12) {
  -webkit-transition-delay: 420ms;
  transition-delay: 420ms;
}
.text-anim span:nth-child(11) {
  -webkit-transition-delay: 385ms;
  transition-delay: 385ms;
}
.text-anim span:nth-child(10) {
  -webkit-transition-delay: 350ms;
  transition-delay: 350ms;
}
.text-anim span:nth-child(9) {
  -webkit-transition-delay: 315ms;
  transition-delay: 315ms;
}
.text-anim span:nth-child(8) {
  -webkit-transition-delay: 280ms;
  transition-delay: 280ms;
}
.text-anim span:nth-child(7) {
  -webkit-transition-delay: 245ms;
  transition-delay: 245ms;
}
.text-anim span:nth-child(6) {
  -webkit-transition-delay: 210ms;
  transition-delay: 210ms;
}
.text-anim span:nth-child(5) {
  -webkit-transition-delay: 175ms;
  transition-delay: 175ms;
}
.text-anim span:nth-child(4) {
  -webkit-transition-delay: 140ms;
  transition-delay: 140ms;
}
.text-anim span:nth-child(3) {
  -webkit-transition-delay: 105ms;
  transition-delay: 105ms;
}
.text-anim span:nth-child(2) {
  -webkit-transition-delay: 70ms;
  transition-delay: 70ms;
}
.text-anim span:nth-child(1) {
  -webkit-transition-delay: 35ms;
  transition-delay: 35ms;
}

/*gallery popup css*/
.gallery-container h1 {
  text-align: center;
  margin-top: 50px;
  font-family: "Droid Sans", sans-serif;
  font-weight: bold;
}
.gallery-container p.page-description {
  text-align: center;
  margin: 25px auto;
  font-size: 18px;
  color: #999;
}

.tz-gallery {
  padding: 40px;
}
.tz-gallery .row > div {
  padding: 2px;
}
.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: "FontAwesome";
  content: "\f002";
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}
.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(46, 132, 206, 0.7);
  content: "";
  transition: 0.4s;
}
.tz-gallery .lightbox:hover:after, .tz-gallery .lightbox:hover:before {
  opacity: 1;
}
.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

/* Override bootstrap column paddings */
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  vertical-align: middle;
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 767px) {
  body {
    padding: 0;
  }
}
.about-popup-wr .modal-dialog {
  width: 86%;
  height: auto;
  overflow: hidden;
}
.about-popup-wr .modal-dialog:before {
  content: "";
  position: absolute;
  background: #ebebeb;
  width: 100%;
  height: 100%;
  top: -28%;
  transform: rotate(-48deg);
  left: -23%;
}
.about-popup-wr button.close {
  position: absolute;
  color: #fff;
  z-index: 100;
  height: 50px;
  width: 50px;
  border-radius: 0;
  font-size: 35px;
  top: 0 !important;
  background: rgba(0, 0, 0, 0.6705882353);
  opacity: 1;
  font-weight: 300;
  padding: 9px 14px;
  right: -15px;
}

.pop-up-img-ab img {
  width: 100%;
  border: 8px solid #AC7710;
}

/* ===================
  Pre Loader
  ======================*/
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  background: #000;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.page-load-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.preloader-wrap {
  display: table;
  width: 100%;
  height: 100%;
}

.wrap-2 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.wrap-2 img {
  width: 35%;
}

body.loaded .page-loading {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mail-font {
  color: red;
  font-size: 20px;
}

/*video play start*/
.video-play-button {
  position: relative;
  z-index: 10;
  top: 50%;
  left: 46%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  margin-top: 16px;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #b3871f;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #b3871f;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button:hover:after {
  background-color: #da0528;
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay {
  position: relative;
  z-index: -1;
  top: 0;
  bottom: 0;
  /* display: none;*/
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}

img.ww-logo {
  width: 110px;
  border-left: 1px solid #fff;
  padding-left: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}
.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
  background-color: var(--axp-black);
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 0px;
  right: 260px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
  margin-top: 94px;
}
.video-overlay-close:hover {
  color: #b3871f;
}

#play-video {
  margin-bottom: 35px;
  margin-top: 35px;
}

.snip1211 {
  font-family: var(--axp-font-display);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
.snip1211 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1211 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 0.1em;
  padding: 0;
}
.snip1211 a {
  padding: 0.4em 0;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.snip1211 a:before {
  position: absolute;
  content: "";
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  top: 25%;
  bottom: 25%;
  left: 0;
  right: 0;
  border-top: 3px solid #775411;
  border-bottom: 3px solid #775411;
}
.snip1211 a:hover,
.snip1211 .current a {
  color: var(--axp-white);
}
.snip1211 a:hover:before,
.snip1211 .current a:before {
  opacity: 1;
  top: 0;
  bottom: 0;
}

/*---------------
| New Styles
----------------*/
.outlined-header {
  color: var(--axp-black);
  text-shadow: -1px -1px 0 var(--axp-light-gold), 1px -1px 0 var(--axp-light-gold), -1px 1px 0 var(--axp-light-gold), 1px 1px 0 var(--axp-light-gold);
  letter-spacing: 5px;
  font-size: 45px;
  padding: 25px;
  text-align: center;
  width: 100%;
}

svg.axp-header text {
  letter-spacing: 5px;
  font-size: 45px;
  fill: none;
  stroke: var(--axp-light-gold);
  stroke-width: 2px;
  dominant-baseline: middle;
  text-anchor: middle;
}

.page-ban-wr {
  padding: 100px 0 0;
}

.instafeed_wrap .row {
  margin-bottom: 50px;
}
.instafeed_wrap h3 {
  font-size: 40px;
  color: #fff;
}

section.jobs-wr {
  color: var(--axp-white);
}
section.jobs-wr h3 {
  text-align: center;
  font-weight: 200;
}
section.jobs-wr ul {
  padding: 20px 0;
  border-top: 2px solid var(--axp-dark-gold);
  border-bottom: 2px solid var(--axp-dark-gold);
}
section.jobs-wr .job-list-header {
  text-align: center;
  margin: 30px 0 15px;
  font-size: 30px;
  font-weight: 100;
  color: var(--axp-light-gold);
}
section.jobs-wr li.job-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.jobs-wr li.job-post > * {
  width: 100%;
  padding: 0 15px;
}
section.jobs-wr li.job-post .job-title {
  margin-bottom: 20px;
  font-weight: 100;
  font-size: 40px;
  color: var(--axp-light-gold);
}
section.jobs-wr li.job-post .job-post-date {
  font-variant: small-caps;
  font-weight: 200;
  margin: 0;
}
section.jobs-wr li.job-post .job-details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: var(--axp-dark-grey);
}
section.jobs-wr li.job-post .job-details > p {
  padding: 10px 0;
}
section.jobs-wr li.job-post .job-summary {
  background-color: var(--axp-white);
  color: var(--axp-black);
  font-size: 20px;
  padding: 30px 15px;
}
section.jobs-wr li.job-post .job-link {
  text-align: center;
  font-size: 20px;
  width: fit-content;
  margin: auto;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid var(--axp-gold);
  color: var(--axp-gold);
  transition: all 0.35s ease;
}
section.jobs-wr li.job-post .job-link:hover {
  border-color: var(--axp-black);
  background-color: var(--axp-gold);
  color: var(--axp-black);
}

.ser-ban-wr {
  padding: 107px 0 0;
  margin-bottom: 50px;
}
.ser-ban-wr h1 {
  width: 100%;
  text-align: center;
}
.ser-ban-wr .image-wr img {
  width: 100%;
}
@media (min-width: 62em) and (orientation: landscape) {
  .ser-ban-wr .image-wr {
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
  }
  .ser-ban-wr .image-wr img {
    border-radius: 1rem;
  }
}

section.ser-outer {
  padding: 0;
  margin-top: 20px;
}
section.ser-outer .inner-service ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
section.ser-outer .inner-service ul li {
  width: 100%;
  padding: 57px 0;
  position: relative;
  border: 2px solid var(--axp-dark-gold);
  color: var(--axp-white);
  text-align: center;
  border-radius: 1.5rem;
  margin-bottom: 50px;
  margin-top: 50px;
}
section.ser-outer .inner-service ul li .image-container {
  position: absolute;
  width: 100%;
  top: 0;
  margin-top: -50px;
}
section.ser-outer .inner-service ul li .image-container img {
  width: 100px;
}
section.ser-outer .inner-service ul li i.fa {
  position: relative;
  background-color: var(--axp-dark-gold);
  font-size: 50px;
  color: var(--axp-black);
  inset: top center;
  margin-bottom: -100%;
  margin-top: -100%;
  top: -55px;
  padding: 15px;
  border-radius: 1rem;
  border: 1px solid var(--axp-black);
}
section.ser-outer .inner-service ul li strong {
  font-size: 18px;
  font-family: var(--axp-font-body);
  font-weight: bold;
  color: var(--axp-white);
}
section.ser-outer .inner-service ul li details {
  transition: all 0.5s ease-in-out;
  color: var(--axp-white);
}
section.ser-outer .inner-service ul li details[open] {
  animation-name: detailsOpen;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: alternate;
}
section.ser-outer .inner-service ul li details summary {
  color: var(--axp-grey);
}
@media (min-width: 48em) and (max-aspect-ratio: 2) {
  section.ser-outer .inner-service ul li {
    width: 48%;
  }
}
@media (min-width: 62em) and (orientation: landscape) {
  section.ser-outer .inner-service ul li {
    width: 23%;
  }
}

@keyframes detailsOpen {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
section.work-outer-wr {
  max-width: 100%;
}
section.work-outer-wr .column, section.work-outer-wr .row {
  width: 100%;
}

div.work-grid {
  width: 100%;
}

div.work-mosaic {
  display: grid;
  margin-block: 50px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
  row-gap: 10px;
  padding: 10px;
  width: 100%;
}
div.work-mosaic .work-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: var(--axp-white);
  grid-column-start: 1;
  grid-column-end: span 1;
}
div.work-mosaic .work-logo img {
  width: 100%;
}
@media (max-width: 48em) {
  div.work-mosaic .work-logo {
    grid-column-end: span 3;
  }
  div.work-mosaic .work-logo img {
    width: 60%;
    margin: auto;
  }
}
div.work-mosaic .work-description {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-direction: vertical;
  -moz-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: var(--axp-white);
  grid-column-start: 2;
  grid-column-end: span 2;
  text-align: center;
  border-top: 1px solid var(--axp-darkest-gold);
  border-bottom: 1px solid var(--axp-darkest-gold);
  border-right: 1px solid var(--axp-darkest-gold);
}
div.work-mosaic .work-description h2 {
  font-weight: 300;
  margin-top: 0;
}
@media (max-width: 48em) {
  div.work-mosaic .work-description h2 {
    font-size: 24px;
  }
}
div.work-mosaic .work-description h3 {
  font-weight: 100;
  font-style: italic;
  margin-top: 0;
}
@media (max-width: 48em) {
  div.work-mosaic .work-description h3 {
    font-size: 20px;
  }
}
div.work-mosaic .work-description ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 15px 0;
}
div.work-mosaic .work-description ul li {
  margin: 5px;
  padding: 7px 15px;
  background-color: var(--axp-light-gold);
  border-radius: 1.5rem;
}
@media (max-width: 48em) {
  div.work-mosaic .work-description ul {
    margin-bottom: 0;
  }
  div.work-mosaic .work-description ul li {
    font-size: 11px;
  }
}
@media (max-width: 48em) {
  div.work-mosaic .work-description {
    grid-column-start: 1;
    grid-column-end: span 3;
    border-right: none;
    padding: 25px;
  }
}
div.work-mosaic .work-image,
div.work-mosaic .work-video {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1;
  overflow: hidden;
}
div.work-mosaic .work-image a,
div.work-mosaic .work-video a {
  width: 100%;
  height: 100%;
}
div.work-mosaic .work-image.extra-wide,
div.work-mosaic .work-video.extra-wide {
  aspect-ratio: 3/1;
  grid-column-end: span 3;
}
div.work-mosaic .work-image.wide,
div.work-mosaic .work-video.wide {
  aspect-ratio: 2/1;
  grid-column-end: span 2;
}
div.work-mosaic .work-image.tall,
div.work-mosaic .work-video.tall {
  aspect-ratio: auto;
  grid-row-end: span 2;
}
div.work-mosaic .work-image.grid-col-1,
div.work-mosaic .work-video.grid-col-1 {
  grid-column-start: 1;
}
div.work-mosaic .work-image.grid-col-2,
div.work-mosaic .work-video.grid-col-2 {
  grid-column-start: 2;
}
div.work-mosaic .work-image.grid-col-3,
div.work-mosaic .work-video.grid-col-3 {
  grid-column-start: 3;
}
div.work-mosaic .work-image.grid-row-1,
div.work-mosaic .work-video.grid-row-1 {
  grid-row-start: 2;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-1,
  div.work-mosaic .work-video.grid-row-1 {
    grid-row-start: 3;
  }
}
div.work-mosaic .work-image.grid-row-2,
div.work-mosaic .work-video.grid-row-2 {
  grid-row-start: 3;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-2,
  div.work-mosaic .work-video.grid-row-2 {
    grid-row-start: 4;
  }
}
div.work-mosaic .work-image.grid-row-3,
div.work-mosaic .work-video.grid-row-3 {
  grid-row-start: 4;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-3,
  div.work-mosaic .work-video.grid-row-3 {
    grid-row-start: 5;
  }
}
div.work-mosaic .work-image.grid-row-4,
div.work-mosaic .work-video.grid-row-4 {
  grid-row-start: 5;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-4,
  div.work-mosaic .work-video.grid-row-4 {
    grid-row-start: 6;
  }
}
div.work-mosaic .work-image.grid-row-5,
div.work-mosaic .work-video.grid-row-5 {
  grid-row-start: 6;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-5,
  div.work-mosaic .work-video.grid-row-5 {
    grid-row-start: 7;
  }
}
div.work-mosaic .work-image.grid-row-6,
div.work-mosaic .work-video.grid-row-6 {
  grid-row-start: 7;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-6,
  div.work-mosaic .work-video.grid-row-6 {
    grid-row-start: 8;
  }
}
div.work-mosaic .work-image.grid-row-7,
div.work-mosaic .work-video.grid-row-7 {
  grid-row-start: 8;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-7,
  div.work-mosaic .work-video.grid-row-7 {
    grid-row-start: 9;
  }
}
div.work-mosaic .work-image.grid-row-8,
div.work-mosaic .work-video.grid-row-8 {
  grid-row-start: 9;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-8,
  div.work-mosaic .work-video.grid-row-8 {
    grid-row-start: 10;
  }
}
div.work-mosaic .work-image.grid-row-9,
div.work-mosaic .work-video.grid-row-9 {
  grid-row-start: 10;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-9,
  div.work-mosaic .work-video.grid-row-9 {
    grid-row-start: 11;
  }
}
div.work-mosaic .work-image.grid-row-10,
div.work-mosaic .work-video.grid-row-10 {
  grid-row-start: 11;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-10,
  div.work-mosaic .work-video.grid-row-10 {
    grid-row-start: 12;
  }
}
div.work-mosaic .work-image.grid-row-11,
div.work-mosaic .work-video.grid-row-11 {
  grid-row-start: 12;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-11,
  div.work-mosaic .work-video.grid-row-11 {
    grid-row-start: 13;
  }
}
div.work-mosaic .work-image.grid-row-12,
div.work-mosaic .work-video.grid-row-12 {
  grid-row-start: 13;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-12,
  div.work-mosaic .work-video.grid-row-12 {
    grid-row-start: 14;
  }
}
div.work-mosaic .work-image.grid-row-13,
div.work-mosaic .work-video.grid-row-13 {
  grid-row-start: 14;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-13,
  div.work-mosaic .work-video.grid-row-13 {
    grid-row-start: 15;
  }
}
div.work-mosaic .work-image.grid-row-14,
div.work-mosaic .work-video.grid-row-14 {
  grid-row-start: 15;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-14,
  div.work-mosaic .work-video.grid-row-14 {
    grid-row-start: 16;
  }
}
div.work-mosaic .work-image.grid-row-15,
div.work-mosaic .work-video.grid-row-15 {
  grid-row-start: 16;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-15,
  div.work-mosaic .work-video.grid-row-15 {
    grid-row-start: 17;
  }
}
div.work-mosaic .work-image.grid-row-16,
div.work-mosaic .work-video.grid-row-16 {
  grid-row-start: 17;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-16,
  div.work-mosaic .work-video.grid-row-16 {
    grid-row-start: 18;
  }
}
div.work-mosaic .work-image.grid-row-17,
div.work-mosaic .work-video.grid-row-17 {
  grid-row-start: 18;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-17,
  div.work-mosaic .work-video.grid-row-17 {
    grid-row-start: 19;
  }
}
div.work-mosaic .work-image.grid-row-18,
div.work-mosaic .work-video.grid-row-18 {
  grid-row-start: 19;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-18,
  div.work-mosaic .work-video.grid-row-18 {
    grid-row-start: 20;
  }
}
div.work-mosaic .work-image.grid-row-19,
div.work-mosaic .work-video.grid-row-19 {
  grid-row-start: 20;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-19,
  div.work-mosaic .work-video.grid-row-19 {
    grid-row-start: 21;
  }
}
div.work-mosaic .work-image.grid-row-20,
div.work-mosaic .work-video.grid-row-20 {
  grid-row-start: 21;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-20,
  div.work-mosaic .work-video.grid-row-20 {
    grid-row-start: 22;
  }
}
div.work-mosaic .work-image.grid-row-21,
div.work-mosaic .work-video.grid-row-21 {
  grid-row-start: 22;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-21,
  div.work-mosaic .work-video.grid-row-21 {
    grid-row-start: 23;
  }
}
div.work-mosaic .work-image.grid-row-22,
div.work-mosaic .work-video.grid-row-22 {
  grid-row-start: 23;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-22,
  div.work-mosaic .work-video.grid-row-22 {
    grid-row-start: 24;
  }
}
div.work-mosaic .work-image.grid-row-23,
div.work-mosaic .work-video.grid-row-23 {
  grid-row-start: 24;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-23,
  div.work-mosaic .work-video.grid-row-23 {
    grid-row-start: 25;
  }
}
div.work-mosaic .work-image.grid-row-24,
div.work-mosaic .work-video.grid-row-24 {
  grid-row-start: 25;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-24,
  div.work-mosaic .work-video.grid-row-24 {
    grid-row-start: 26;
  }
}
div.work-mosaic .work-image.grid-row-25,
div.work-mosaic .work-video.grid-row-25 {
  grid-row-start: 26;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-25,
  div.work-mosaic .work-video.grid-row-25 {
    grid-row-start: 27;
  }
}
div.work-mosaic .work-image.grid-row-26,
div.work-mosaic .work-video.grid-row-26 {
  grid-row-start: 27;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-26,
  div.work-mosaic .work-video.grid-row-26 {
    grid-row-start: 28;
  }
}
div.work-mosaic .work-image.grid-row-27,
div.work-mosaic .work-video.grid-row-27 {
  grid-row-start: 28;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-27,
  div.work-mosaic .work-video.grid-row-27 {
    grid-row-start: 29;
  }
}
div.work-mosaic .work-image.grid-row-28,
div.work-mosaic .work-video.grid-row-28 {
  grid-row-start: 29;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-28,
  div.work-mosaic .work-video.grid-row-28 {
    grid-row-start: 30;
  }
}
div.work-mosaic .work-image.grid-row-29,
div.work-mosaic .work-video.grid-row-29 {
  grid-row-start: 30;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-29,
  div.work-mosaic .work-video.grid-row-29 {
    grid-row-start: 31;
  }
}
div.work-mosaic .work-image.grid-row-30,
div.work-mosaic .work-video.grid-row-30 {
  grid-row-start: 31;
}
@media (max-width: 48em) {
  div.work-mosaic .work-image.grid-row-30,
  div.work-mosaic .work-video.grid-row-30 {
    grid-row-start: 32;
  }
}

section.home-intro-wr {
  text-align: center;
  line-height: 40px;
  font-size: 22px;
}
section.home-intro-wr .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
section.home-intro-wr .row div.definition-statement,
section.home-intro-wr .row div.image-container,
section.home-intro-wr .row div.belief-statement {
  width: 100%;
  margin: 30px 0;
}
section.home-intro-wr .row div.image-container {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--axp-darkest-gold);
  border-bottom: 1px solid var(--axp-darkest-gold);
}
section.home-intro-wr .row div.image-container img {
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 48em) and (max-aspect-ratio: 2) {
  section.home-intro-wr .row div.image-container,
  section.home-intro-wr .row div.definition-statement {
    width: 50%;
  }
  section.home-intro-wr .row div.image-container {
    border: none;
  }
}
@media (min-width: 75em) and (orientation: landscape) {
  section.home-intro-wr .row {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  section.home-intro-wr .row div.definition-statement,
  section.home-intro-wr .row div.belief-statement {
    width: 37%;
  }
  section.home-intro-wr .row div.belief-statement {
    text-align: left;
  }
  section.home-intro-wr .row div.image-container {
    border: none;
    width: 25%;
  }
  section.home-intro-wr .row div.image-container img {
    width: 80%;
  }
}
section.home-intro-wr p {
  color: var(--axp-white);
  font-weight: 300;
}
section.home-intro-wr h4 {
  line-height: 57.1429px;
  color: var(--axp-gold);
  font-size: 26.5px;
  font-weight: 100;
}
@media (min-width: 75em) and (orientation: landscape) {
  section.home-intro-wr h4 {
    font-size: 28.5px;
  }
}
section.home-intro-wr p.intro-block {
  margin: 0 auto;
  font-size: 20px;
  line-height: 40px;
  font-family: var(--axp-font-body);
  transition: 0.45s ease-in-out;
}
section.home-intro-wr p.intro-block span {
  display: block;
}
section.home-intro-wr p.intro-block strong {
  font-size: 35px;
  font-weight: 500;
}
section.home-intro-wr p.intro-block strong b {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0 14px;
}

div#ha-header {
  height: 100vh;
}
div#ha-header .header-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  animation-name: slideReveal;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 9s;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
div#ha-header .header-slideshow .slideshow-overlay {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-direction: vertical;
  -moz-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 100px;
}
div#ha-header .header-slideshow .slideshow-overlay img {
  top: initial;
  width: 55%;
  max-width: 600px;
}
div#ha-header .header-slideshow .slideshow-image {
  opacity: 0;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: slideAnimation;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  backface-visibility: hidden;
  z-index: 10;
}
div#ha-header .header-slideshow .slideshow-background {
  position: absolute;
  inset: 0;
  background-color: var(--axp-black);
}

@keyframes slideReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.overall-sec {
  position: relative;
  z-index: 10000;
  background: #000;
}
.overall-sec section.experimental-wr {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.overall-sec section.experimental-wr::after {
  content: "";
  position: absolute;
  bottom: 65px;
  right: 0;
  z-index: 100;
  left: 0;
  margin: 0 auto;
  width: 162px;
  height: 3px;
  background: var(--axp-grey);
}

p.intro-txt {
  font-size: 32px;
  color: var(--axp-black);
  font-weight: 100;
  font-family: var(--axp-font-body);
  font-weight: 200;
  margin: 10px 0;
  text-align: center;
  padding: 0px 15%;
}
p.intro-txt span {
  display: inline-block;
  color: var(--axp-gold);
}

/*# sourceMappingURL=custom.css.map */
