/* --------------------------------

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cd-intro {
  position: relative;
  height: 100%;
    background: url(../img/main.png?v=1) center top / contain no-repeat;
    min-height: 450px;
    max-height: 700px;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px){
  .cd-intro {
    background-size: cover;
  }
}
body {
  font-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
  color: rgba(2, 23, 37, 0.7);
  background-color: white;
  overflow: visible !important;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

a {
  color: white;
  text-decoration: none;
}
.cd-secondary-nav img{
  width: 100px;
  margin: -40px 0px;
}

iframe{
      border: 0;
    width: 567px;
    height: 450px;
    max-width: 100%;
}
/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* --------------------------------

Main components

-------------------------------- */
html, body {
  height: 100%;
}

.cd-header {
  /*position: absolute;*/
  top: 0;
  left: 0;
  background: rgba(2, 23, 37, 0.95);
  height: 50px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*margin:28px 0px 0px;*/
  color: #000;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 115px;
    background: transparent;
    box-shadow: none;
  }
}
.social-icon{
  top: -71px;
    position: absolute;
    right: 22px;

}
.social-icon-n {
    top: 100px;
    position: absolute;
    right: 22px;
    z-index: 3;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    /* transform: translate3d(0, 0, 0); */
    /* -webkit-backface-visibility: hidden; */
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    /* top: -80px; */
    background-color: #898989;
     -webkit-transition: -webkit-transform 0.0s;
    -moz-transition: -moz-transform 0.0s;
    transition: transform 0.0s;
  }
  .cd-header.is-visible {
       -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    position: fixed;
    top: -115px;
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgba(2, 23, 37, 0.96);
  }
}

.cd-logo {
  display: none;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em;
  }
}

.cd-secondary-nav {
  /* hidden on small devices */
  display: none;
  height: 105px;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 3.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: #000;
  text-transform: uppercase;
  font-weight: 500  ;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    display: flex;
    width: 100%;
    padding-left: 55%;
    justify-content: center;
    align-items: center;
    /*background: transparent;*/
  }
}

.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #03263d;
  display: none;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 100px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 300px;
  width: 100%;
  background: rgba(2, 23, 37, 0.96);
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}
.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/*.no-touch .cd-primary-nav a:hover {
  background-color: #e36767;
}*/

.cd-primary-nav .cd-label {
  color: #06446e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-primary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-primary-nav .cd-dribbble a {
  background-position: -88px 0;
}
.cd-primary-nav .cd-twitter a {
  background-position: -132px 0;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* .cd-header {
  z-index: 2;
} */
body, .cd-header, .cd-intro {
  
  box-shadow: none;
}
.social-icon-n {
  opacity: 0;
    transition: 2s ease-in-out;
}
body.transition .social-icon-n {
  opacity: 1;
}
body.transition, body.transition .cd-intro,body.transition .cd-header {
  background-color: #fff;
  
}
body.transition.loaded, body.transition.loaded .cd-intro,body.transition.loaded .cd-header {
  
}
/* body.transition, body.transition .cd-header.is-fixed {
  background-color: #898989; */
  /*transition: background 1s ease-in;*/
/* } */

/*.cd-header {
  background-color: #000;
  color: #fff !important;
}
.cd-header.loaded {
  background-color: transparent;
  transition: 1s ease-in;
}
.cd-header.is-fixed{
  background: #898989;
  transition: 0s;
}
.cd-header.is-fixed.loaded{
  background: #898989;
  transition: 0s;
}*/
.main-cnt {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
.magic{
        -ms-transform: rotate(-90deg) translateX(-50%);
    -webkit-transform: rotate(270deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    color: #000;
    font-weight: 400;
    font-size: 15px;
    position: absolute;
    color: #6030B2;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* left: -10px;
    top: 80px; */
    left: -15px;

}
.san{
  -ms-transform: rotate(-90deg) translateX(-60%); /* IE 9 */
    -webkit-transform: rotate(270deg) translateX(-60%); /* Safari 3-8 */
    transform: rotate(-90deg) translateX(-60%);
    color: #000;
    font-weight: 400;
    /*font-size: 20px;*/
    position: absolute;
    color: #1c1c1c;
    text-transform: uppercase;
    /* width: 250px;
    top: 80px; */
    font-size: 15px;
    letter-spacing: 5px;
    right: 15px;
}
.magic-hr, .san-hr {
  position: relative;
  border-bottom: none;
  width: 72%;
  margin: 0;
  top: 50%;
}
.magic-hr{
    border-top: 2px solid #f51c69;
    left: 50px;
    transform: translateX(30%);
}
.san-hr{
    border-top: 2px solid #1c1c1c;
    right: 50px;
}
h1.mtitle {
    text-shadow: 5px 5px 2px rgba(0,0,0,0.6);
}
@media only screen and (max-width: 1165px) {
  .magic-hr, .san-hr {
    top: calc(50% - -26px);
  }
  h1.mtitle {
    color: #d8d8d8 !important;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
  }
  .san{
          -ms-transform: rotate(-90deg) translateX(-70%);
      -webkit-transform: rotate(270deg) translateX(-70%);
      transform: rotate(-90deg) translateX(-70%);
  }
}
@media only screen and (min-width: 768px) {
  .cd-intro h1 {
        font-size: 136px;
    color: #d8d8d8;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Playfair Display SC', serif;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}
.cd-intro h3{
    font-size: 20px;
    font-weight: 300;
    color: #969696;
    position: relative;
    font-family: 'Playfair Display SC', serif;
    top: 238px;
    text-transform: uppercase;
    letter-spacing: 20px;

}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.sub-sec{
  height: 300px;
}
.circle-ripple {
  background-color: #d3d3d3;
  width: 12em;
  height: 12em;
  border-radius: 50%;
  -webkit-animation: ripple 0.7s linear infinite;
          animation: ripple 0.7s linear infinite;
          margin: 10% auto;
          position: relative;
}
.pause{
      width: 50px !important;
    height: 50px !important;
    border-radius: 0px !important;
    border: 0px !important;
    position: absolute !important;
    top: 36% !important;
    left: 36% !important;
}

.circle-ripple img{
    width: 12em;
    height: 12em;
    border-radius: 50%;
    position: absolute;
    top: 0%;
    border: 2px solid #d3d3d3;
    margin-left: 1px;

}
@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 214, 214, 1), 0 0 0 1em rgba(214, 214, 214, 1), 0 0 0 3em rgba(232, 232, 232, 0.3), 0 0 0 5em rgba(245, 245, 245, 0);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(214, 214, 214, 1), 0 0 0 3em rgba(214, 214, 214, 1), 0 0 0 5em rgba(232, 232, 232, 0.3), 0 0 0 8em rgba(245, 245, 245, 0);
  }
}

@keyframes ripple {
 0% {
    box-shadow: 0 0 0 0 rgba(214, 214, 214, 1), 0 0 0 1em rgba(214, 214, 214, 1), 0 0 0 3em rgba(232, 232, 232, 1), 0 0 0 5em rgba(232, 232, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(214, 214, 214, 1), 0 0 0 3em rgba(214, 214, 214, 1), 0 0 0 5em rgba(232, 232, 232, 1), 0 0 0 8em rgba(232, 232, 232, 0);
  }
}

.about h2{
  font-family: 'Playfair Display SC', serif;
  font-size: 36px;
  color:#969696;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
.about p{
  text-align: center;
  font-size: 16px;
  color: #969696;
  
}

.video-galleries{
  padding:50px 0px;
  background: url("../img/map.jpg") no-repeat center center;
}
.video-h{
  text-align: center;
  font-family: 'Playfair Display SC', serif;
  font-size: 40px;
  letter-spacing: 20px;
  text-transform: uppercase;
  color: #393636;
}
.video-galleries img{
  width: 400px;
  margin: 0% 12% 5%;
}


.modal-card, .modal-content{
  width: auto !important;
}
/*.m-bg1{
  background: url(../img/g-1.jpg);
  background-size: cover;
}*/
.video-galleries h3{
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 23px;
  color: #393636;
  margin-bottom: 5%;
}
.orange-box{
     top: 10%;
    width: 52px;
    height: 120px;
    background: #D57930;
    position: absolute;
    left: 10%;
    z-index: 4;
}
.orange-box1{
     top: 10%;
    width: 52px;
    height: 120px;
    background: #D57930;
    position: absolute;
    right: 12%;
    z-index: 4;
}
.pointer { cursor: pointer; border: none; }
.m1{
  width: 100%;
  overflow: hidden;
}
.modal-button:hover>.bg {
  transform: scale(1.1);
  transition: 0.8s ease-in-out;
}
.modal-button>.bg{
  transition: 0.8s ease-in-out;
}
.modal-button>.play{
  position: absolute;
  top: 15%;
  left: 40%;
  /*transform: translate(-50%,-50%);*/
  width: 100px !important;
  margin: 0px !important;
  transition: 0.5s ease-in;
}
.modal-button:hover>.play{
  filter: blur(2px);
  cursor: pointer;
}
.modal-overflow{
  overflow: hidden;
}
.gallery{
  position: relative;
}
.gallery img{
  width: auto;
    height: auto;
    margin: 10px 0px;
}
.m-bg img{
  width: 500px;
  height: auto;
  max-width: 100%;
}
.gallery h2{
  font-family: 'Playfair Display SC', serif;
  font-size: 40px;
  text-transform: uppercase;
  color: #393636;
  letter-spacing: 20px;
}
.gallery h1{
      font-size: 143px;
    position: absolute;
    text-transform: uppercase;
    color: #efefef;
    top: 27px;
    z-index: -999;
    font-weight: bold;
}
.container.is-fluid{
  margin-top:38px;
}
.line{
  border-top: 2px solid #000;
    width: 82%;
    margin: auto;
}
.client{
  padding:50px 0px;
}
.client .container{
  padding:0px 20px;
}
.client h2{
  font-family: 'Playfair Display SC', serif;
  font-size: 40px;
  text-transform: uppercase;
  color: #393636;
  letter-spacing: 20px;
  text-align: center;
}

.client img{

}
.carousel-indicators .active{
  background-color: red !important;
}
.carousel-indicators li {
    border-radius: 50% !important;
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px !important;
    height: 15px !important;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    top: 50px;
    border:1px solid red;
    background-color: rgba(255,255,255,.5);
}
/*mobile*/

.client-m{
  padding:50px 0px;
  display: none;
}
.client-m .container{
  padding:0px 20px;
}
.client-m h2{
  font-family: 'Playfair Display SC', serif;
  font-size: 40px;
  text-transform: uppercase;
  color: #393636;
  letter-spacing: 20px;
  text-align: center;
}

.client-m img{

}
.carousel-indicators .active{
  background-color: red !important;
}
.carousel-indicators li {
    border-radius: 50% !important;
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px !important;
    height: 15px !important;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    top: 50px;
    border:1px solid red;
    background-color: rgba(255,255,255,.5);
}
footer img{
  width: 116px;
    margin: 0px 24px;

}
.f1{
  border-top: 2px solid #7235BB;
    margin: 62px 0px;
}
.f2{
  border-top: 2px solid #D86B90;
    margin: 62px 0px;
}
footer p{
  text-align: center;
  font-size: 16px !important;
  
}
.footer-nav{
  /*padding:0px 27px;*/
}
.footer-nav ul{
      display: flex;
    width: fit-content;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.footer-nav ul li>a{
  color: #795800;
  font-size: 16px !important;
  /*text-transform: uppercase;*/
}
.footer-nav>ul>:not(:last-child):after {
    content: '|';
    padding: 0 4px;
}
footer{
  padding: 50px 0px;
}


@media only screen and (min-width: 1440px) {
   .cd-secondary-nav{
    right: 20em;
  }
}
