	@import url("../others/fonts.googleapis.com/cssd2d5.css?family=Open+Sans");
    .maind0987{
          font-size: 26px;
    font-weight: 500; color: #fff;margin-top: -3%;
      }
.userProfile, .team {
  display: flex;
}

:root {
  --userthumb: 75px;
  --arrowSize: 15px;
}
 
body {

  height: 100%;

  padding: 0px;
  margin: 0px;
}

.vcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    margin: 0 auto;
  }

}

.section {
  padding: 50px;
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.section:before, .section:after {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: -1;
  content: " ";
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background-color: white;
  opacity: 0.3;
  width: 400px;
  height: 450px;
  display: inline-block;
  transform: rotate(-180deg);
}
.section:before {
  transform: translateX(50%) translateY(30%) rotate(-60deg);
  opacity: 0.2;
}
.section:after {
  opacity: 0.1;
  transform: translateX(30%) translateY(20%) rotate(-45deg);
}
.section-header {
                  padding: 60px 0 60px;

    text-align: center;
}
.section-header * {
  color: white;
  text-align: center;
}
.section-title {
  margin: 0px;
  text-align: center;
  color: white;
  font-size: 35px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  margin: 0 auto;
}
.section-title:after {
  bottom: 0;
  position: absolute;
  content: " ";
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.userProfile {
  flex-wrap: wrap;
  align-items: center;
}
.userProfile__thumbnail {
  width: var(--userthumb, 75px);
  height: var(--userthumb, 75px);
  flex: 0 0 auto;
  background-color: #f1f1f1;
  margin: 0px;
  padding: 0px;
  border-radius: 50%;
}
.userProfile__image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  background-color: #f1f1f1;
}

.team {
  padding: 0px;
  list-style: none;
 /* flex-wrap: wrap; */
}
@media (max-width: 480px) {
  .team {
    justify-content: center;
  }
}
.team__members {
  position: relative;
  padding: 1rem;
  display: none;
  margin-bottom: calc(var(--userthumb) + var(--arrowSize)*2 );
  box-sizing: border-box;
  flex: 0 0 100%;
  filter: grayscale(1);
}
@media (min-width: 480px) {
  .team__members {
    padding: 1rem;
    display: inline-block;
    flex: 0 0 28%;
    margin: 0px;
  }
}
.team__members:nth-child(9n + 4), .team__members:nth-child(9n + 5), .team__members:nth-child(9n + 6), .team__members:nth-child(9n + 7) {
  left: auto;
}
@media (min-width: 480px) {
  .team__members:nth-child(9n + 4), .team__members:nth-child(9n + 5), .team__members:nth-child(9n + 6), .team__members:nth-child(9n + 7) {
    left: 0%;
  }
}
.team__members:nth-child(9n + 7) {
  margin: 0px;
}
@media (min-width: 480px) {
  .team__members:nth-child(9n + 7) {
    margin-right: 10%;
  }
}
.team__members .userProfile {
  justify-content: center;
  position: absolute;
  top: calc(100% + var(--arrowSize));
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media (min-width: 480px) {
  .team__members .userProfile {
    position: static;
  }
}
.team__members .userProfile__thumbnail {
  position: relative;
}
.team__members .userProfile__thumbnail:after {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--userthumb, 50px);
  height: var(--userthumb, 50px);
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(90deg, #fff, #f9bb01);
  background-size: 400% 400%;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s linear;
}
.team__members:hover, .team__members.team__members--show {
  filter: grayscale(0);
  display: inline-block;
}
@media (min-width: 480px) {
  .team__members:hover .team__details, .team__members.team__members--show .team__details {
    transform: translateX(-50%) scale(1, 1);
  }
}
.team__members:hover .userProfile__thumbnail:after, .team__members.team__members--show .userProfile__thumbnail:after {
  transform: translate(-50%, -50%) scale(1.2);
  animation: rainbow-border 1.5s linear infinite;
}
@media (max-width: 480px) {
  .team__members:hover:not(.team__members--show) {
    display: none !important;
  }
}
.team__details {
  margin: 0 auto;
  position: relative;
  transform: translateX(0%) scale(1, 1);
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
      width: 450px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transform-origin: center bottom;
  transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
@media (min-width: 480px) {
  .team__details {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0, 0);
  }
}
.team__details:after {
  width: var(--arrowSize);
  height: var(--arrowSize);
  position: absolute;
  top: calc(100% - var(--arrowSize)/2);
  background-color: #fff;
  content: " ";
  transform: rotate(45deg);
  left: calc(50% - var(--arrowSize)/2);
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.team__details__summery {
      border-top: 1px dashed #ccc;
    padding-top: 15px;
    font-size: 13px;
    color: #525252;
}
.team__meta {
  padding-bottom: 15px;
}
.team__meta__title {
  margin: 0px;
}
.team__meta__designation {
  margin-top: 10px;
}

@keyframes rainbow-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

  	body{
  		background-color: #2E3638 !important;
  	}
/*Navigation*/
/* CSS Document */

body {
  background: #2E3638 ;
  font-size:22px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  word-wrap:break-word !important;
  }

 
.h4, h4 {
    font-size: 18px;
}

#container {
  margin: 0 auto;
  max-width: 890px;
}


.toggle,
[id^=drop] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav { 
    margin: 0;
    height: auto;
    padding: 0;
    width: 100%;
    background-color: #2E3638;
    position: fixed;
    top: 0;
    z-index: 1;
}

#logo {
  display: block;
  padding: 0 30px;
  float: right;
  font-size:20px;
  line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
  content:"";
  display:table;
  clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  float: left;
  padding:0;
  margin:0;
  list-style: none;
  position: relative;
  }
  
/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display:inline-block;
  float: left;

  }

/* Styling the links */
nav a {
  display:block;
padding: 14px 17px;
  color:#FFF;
  font-size:16px;
  font-weight: 400;
  text-decoration:none;
  text-transform: uppercase;
}


nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
nav a:hover { 
  color: rgb(255, 192, 0);
  text-decoration: none;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
  display: none;
  position: absolute; 
  /* has to be the same number as the "line-height" of "nav a" */
  top: 60px; 
}
  
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display:inherit;
}
  
/* Fisrt Tier Dropdown */
nav ul ul li {
  width:170px;
  float:none;
  display:list-item;
  position: relative;
}

/* Second, Third and more Tiers 
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top:-60px;
  /* has to be the same number as the "width" of "nav ul ul li" */ 
  left:170px; 
}

  
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {
    .btn.book-now {
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    padding: 10px 14px !important;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 196px;
    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    z-index: 215;
    top: 8% !important;
}
    .btn.book-now1 {
    font-family: 'Ubuntu', sans-serif !important;
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400 !important;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    right: 0;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 115px;
    z-index: 215;
    padding: 10px 12px !important;
    top: 54% !important;
}
    nav ul li a.asd {
    margin-left: 0 !important;
}
    body{
        overflow-x:hidden !important;
    }
      .team__members {
    position: relative;
    padding: 1rem;
    display: block;
    margin-bottom: calc(var(--userthumb) + var(--arrowSize)*2 );
    box-sizing: border-box;
    flex: 0 0 100%;
    filter: grayscale(1);
}
      .section {
    padding: 50px;
    width: 100%;
    height: 100%;
    height: 100vh;
    overflow: scroll;
    position: relative;
}
      .team__details {
    margin: 0 auto;
    position: relative;
    transform: translateX(0%) scale(1, 1);
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transform-origin: center bottom;
    transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
      nav ul li a.asd {
    font-size: 36px;
    margin-top: -6%;
    /* float: right; */
    /* right: 14px; */
    margin-left: 0;
}
      .maind0987{
          font-size: 12px;
    font-weight: 500; color: #fff;margin-top: -3%;
      }
  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  nav {
    margin: 0;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    background-color: #254441;
    padding:14px 20px;  
    color:#FFF;
    font-size:17px;
    text-decoration:none;
    border:none;
  }

  .toggle:hover {
    background-color: #000000;
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked + ul {
    display: block;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    }

  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: #000000;
  }
  
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a{
    padding:14px 20px;  
    color:#FFF;
    font-size:17px; 
  }
  
  
  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #212121; 
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position:static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }
    
  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }
    
  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */ 

  }

}

@media all and (max-width : 330px) {

  nav ul li {
    display:block;
    width: 94%;
  }

}
a.active {
    color: rgb(255, 192, 0);
}
.asd {
    font-size: 36px;
    top: 0;
    /* float: right; */
    /* right: 14px; */
    position: fixed;
    right: 1%;
}
/*Navigation*/  

.pad{
	margin-top: 6%;
	margin-bottom: 2%;
}

.padalig{
	    text-align: justify;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif !important;
   line-height: 1.8em;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
    color: rgb(255, 192, 0);
    background-color: transparent;
}
h4{
	color: #fff;
}


.sect{
	margin-right: 38px !important;
}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    margin-top: -9%;
    z-index: -1;
}
.wrap {
  /*position: absolute;*/
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1200px;
  min-width: 300px;
  padding: 10px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-wrap {
  width: 100%;
  margin: auto;
}

#svg {
    width: 40%;
    height: auto;
}

.is-loading {
  opacity: 0;
}

#box1,
#box2,
#box3,
#box4,
#arrow2,
#arrow3,
#arrowhead2,
#arrowhead3 {
  opacity: 0;
}
li{
	color: #fff;
	font-family: 'Ubuntu', sans-serif !important;
	font-size: 14px;
}
.padsa{
	       background: #ADA996;
    background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
    background: linear-gradient(to right, #e5e5e5, #b6b6b6, #e1cdce, #666562);
    padding: 30px;
    width: 62%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    line-height: 2.5em;
        animation: FadeIn 1s linear;
    animation-fill-mode: both;
    border-radius: 40px;
}
.padsa1{
	    color: #a94442;
    font-size: 15px;
    font-weight: 500;
}
.padsa2{
	color: #000;
}

/*Navigation*/

header.team__meta {
    color: #bbb;
}

.navbar-inverse .navbar-nav>li>a {
    color: #ffffff;
}
.circus{
	       border-radius: 100%;
    width: 110px;
    height: 110px;
    background-color: #fff;
}



 
.btn.book-now {

    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    padding: 10px 14px !important;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 196px;
    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    z-index: 215;
    top: 39%;
}
.btn.book-now1 {
      font-family: 'Ubuntu', sans-serif !important;
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400 !important;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    right: 0;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 115px;
    z-index: 215;
        padding: 10px 12px !important;
      top: 73%;
}


.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
    color: rgb(255, 192, 0);
    background-color: transparent;
}

@media only screen and (min-width: 1600px) {
.asd {
    font-size: 36px;
    top: 0;
    /* float: right; */
    /* right: 14px; */
    position: fixed;
    right: 1%;
}
     .btn.book-now {
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    padding: 10px 14px !important;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 196px;
    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    z-index: 215;
    top: 49%;
}
}
@media only screen and (min-width: 1280px) {


    .asd {
    font-size: 36px;
    top: 0;
    /* float: right; */
    /* right: 14px; */
    position: fixed;
    right: 1%;
}

    .btn.book-now {
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    padding: 10px 14px !important;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 196px;
    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    z-index: 215;
    top: 39%;
}
}



@media only screen and (min-width: 2160px) {
    .btn.book-now {
    background: rgb(255, 192, 0);
    border-radius: 0;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 15px;
    height: 34px;
    line-height: 14px;
    position: fixed;
    padding: 10px 14px !important;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 196px;
    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    z-index: 215;
    top: 58%;
}
}