*{
  font-family: "Arial";
  letter-spacing: 1px;
}
p{line-height:1.2;}
a:focus, a:hover{color:#ffffff;}
.homeLogo{  width: 100%;}
.btn-size{font-size:25px!important;}
.linkDefine a{text-decoration: none;color:#666666}
.linkDefine a.active,.linkDefine a:hover{ color: rgb(255,0,0);}
.active{color: rgb(255,0,0);}
.hover:hover{background-color: #cecece;}
  .modal.left .modal-dialog,
  .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 220px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
         -o-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }

  .modal.left .modal-content,
  .modal.right .modal-content {height: 100%;overflow-y: auto;}
  
  .modal.left .modal-body,
  .modal.right .modal-body {padding: 15px 15px 80px;}

/*Left*/
  .modal.left.fade .modal-dialog{
    left: -220px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
       -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
         -o-transition: opacity 0.3s linear, left 0.3s ease-out;
            transition: opacity 0.3s linear, left 0.3s ease-out;
  }
  
  .modal.left.fade.in .modal-dialog{
    left: 0;
  }
        
/*Right*/
  .modal.right.fade .modal-dialog {
    right: -220px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
       -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
         -o-transition: opacity 0.3s linear, right 0.3s ease-out;
            transition: opacity 0.3s linear, right 0.3s ease-out;
  }
  
  .modal.right.fade.in .modal-dialog {
    right: 0;
  }

/* ----- MODAL STYLE ----- */
  .modal-content {
    border-radius: 0;
    border: none;
  }

  .modal-header {
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
  }
  .modal-body ul li a
  {
    text-decoration: none;
	font-size:16px;
  }


.clearfix{height: 50px;}

#answer1, #answer2, #answer3, #answer4{display: none;}
/*Center Logo Style*/
.center-box {
	position: relative;
	margin: auto;
	width: 100%;
	text-align: center;
	height: 100%;
}
  .home-wrap {
	max-width: 400px;
	position: absolute;
	width: 100%;
	left: 50%;
	margin-left: -200px;
	margin-top: 25%;
	height: 100%;
}
@media only screen and (max-width: 1000px) 
{
   .home-wrap {
  margin-top: 35%;
  height: 100%;
  padding: 50px;
  }
  #home-sec
  {
    height: 500px;
  }
}

/*Navigation Styles*/
a {color: #000;text-decoration: none;}

.cd-stretchy-nav {
  position: fixed;
  z-index: 2;
  top: 40px;
  right: 5%;
  pointer-events: none;
}
.cd-stretchy-nav .stretchy-nav-bg {
  /* this is the stretching navigation background */
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  color: #333;
  -webkit-transition: height 0.2s, box-shadow 0.2s;
  -moz-transition: height 0.2s, box-shadow 0.2s;
  transition: height 0.2s, box-shadow 0.2s;
}
.cd-stretchy-nav.nav-is-visible {
  pointer-events: auto;
}
.cd-stretchy-nav.nav-is-visible .stretchy-nav-bg {
  height: 100%;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.cd-nav-trigger {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  height: 30px;
  width: 60px;
  /* replace text with image */
  overflow: hidden;
  white-space: nowrap;
  color: #000;
  pointer-events: auto;
}
.cd-nav-trigger span, .cd-nav-trigger span::after, .cd-nav-trigger span::before {
  /* this is the hamburger icon */
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #000;
}
.cd-nav-trigger span {
  /* middle line of the hamburger icon */
  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%);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-nav-trigger span::after, .cd-nav-trigger span::before {
  /* top and bottom lines of the hamburger icon */
  content: '';
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-nav-trigger span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.no-touch .cd-nav-trigger:hover ~ .stretchy-nav-bg {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.nav-is-visible .cd-nav-trigger span {
  background-color: transparent;
}
.nav-is-visible .cd-nav-trigger span::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-is-visible .cd-nav-trigger span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-stretchy-nav ul {
  position: relative;
  z-index: 2;
  padding: 60px 0 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s;
  -moz-transition: visibility 0.3s;
  transition: visibility 0.3s;
  text-align: right;
}
.cd-stretchy-nav ul a {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
  color:#333;
  padding: 0 calc(1em + 60px) 0 1em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.cd-stretchy-nav ul a::after {
  /* navigation item icons */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
   color:#333;
  right: 22px;
  top: 50%;
}
.cd-stretchy-nav ul a::before {
  /* line visible next to the active navigation item */
  content: '';
  position: absolute;
  width: 3px;
  height: 16px;
   color:#333;
  top: 50%;
  right: 60px;
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(0);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(0);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(0);
  -o-transform: translateX(3px) translateY(-50%) scaleY(0);
  transform: translateX(3px) translateY(-50%) scaleY(0);
  background-color: #0a9581;
}
.cd-stretchy-nav ul li:first-of-type a::after {
  /* change custom icon using image sprites */
   background: url(../img/home.svg) no-repeat 0 0;

}
.cd-stretchy-nav ul li:nth-of-type(2) a::after {
 background: url(../img/user.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(3) a::after {
  background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(4) a::after {
  background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(5) a::after {
 background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(6) a::after {
 background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(7) a::after {
 background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(8) a::after {
 background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(9) a::after {
 background: url(../img/home.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul span {
  /* navigation item labels */
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-25px);
  -moz-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
  -o-transform: translateX(-25px);
  transform: translateX(-25px);
}

.cd-stretchy-nav.nav-is-visible ul {
  visibility: visible;
}
.cd-stretchy-nav.nav-is-visible ul a::after {
  /* navigation item icons */
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-animation: scaleIn 0.15s backwards;
  -moz-animation: scaleIn 0.15s backwards;
  animation: scaleIn 0.15s backwards;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul a.active {
  color: #333;
}
.cd-stretchy-nav.nav-is-visible ul a.active::after {
  opacity: 1;
   color:#333;
}
.cd-stretchy-nav.nav-is-visible ul a.active::before {
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(1);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(1);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(1);
  -o-transform: translateX(3px) translateY(-50%) scaleY(1);
  transform: translateX(3px) translateY(-50%) scaleY(1);
  -webkit-transition: -webkit-transform 0.15s 0.3s;
  -moz-transition: -moz-transform 0.15s 0.3s;
  transition: transform 0.15s 0.3s;
}
.cd-stretchy-nav.nav-is-visible ul span {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: slideIn 0.15s backwards;
  -moz-animation: slideIn 0.15s backwards;
  animation: slideIn 0.15s backwards;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover {
  color: #ffffff;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover::after {
  opacity: 1;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover span {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  transform: translateX(-5px);
}
.cd-stretchy-nav.nav-is-visible ul li:first-of-type a::after,
.cd-stretchy-nav.nav-is-visible ul li:first-of-type span {
  -webkit-animation-delay: 0.05s;
  -moz-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) span {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  color: #333;
  animation-delay: 0.1s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) span {
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  color: #333;
  animation-delay: 0.15s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) span {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  color: #333;
  animation-delay: 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  color: #333;
  animation-delay: 0.25s;
}

.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(6) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(6) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  color: #333;
  animation-delay: 0.25s;
}

.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(7) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(7) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  color: #333;
  animation-delay: 0.25s;
}

.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(8) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(8) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  color: #333;
  animation-delay: 0.25s;
}

.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(9) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(9) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  color: #333;
  animation-delay: 0.25s;
}






  /*Starting of card*/


      #card {
        height: auto;
        width: auto;
        perspective: 600px;
      }
      #card #front, #card #back {
        border-radius: 20px;
        height: 100%;
        width: 100%;
        left: 0;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      }
      #card #front {
        transform: rotateY(0deg);
      }
      #card #front #avatar {
        width: 114px;
        height: 114px;
        top: 0%;
        left: 50%;
        margin: -77px 0 0 -57px;
        border-radius: 100%;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 4px 5px rgba(107, 5, 0, 0.6), 0 0 10px 10px rgba(0, 0, 0, 0.1);
        background-image: url('../img/raj.png');
        background-size: contain;
        position: absolute;
        z-index: 1;
      }
      #card #front #info-box {
        height: 50%;
        width: 100%;
        position: relative;
        display: table;
        left: 0;
        color: #fff;
        bottom: 0;
        background: rgba(255, 2, 2, 0.6);
        padding: 53px 48px;
      }
      #card .info {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
        text-align: center;
      }


      @keyframes arrowWiggle {
        0% {
          right: 50px;
        }
        50% {
          right: 35px;
        }
        100% {
          right: 50px;
        }
      }
  /*End of card*/
    .nav-pills>li >a{font-weight: 700;font-size: 18px;}
    .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {color: red;background-color: transparent;font-weight: 700;font-size: 18px;}
    td {padding-bottom: 2em;text-align: center;}
     .table tr td{border: none !important;}
      .tdImage{max-width: 100px;}
      .footer{position: fixed;width: 100%; bottom: 0; padding: 5px;}
.mediaNav {background-color: red;}
	.mediaNav li a:after{width:20px;height:20px}
	.mediaNav li:first-child a:after{background-image:url(../img/home.png)!important;}
	.mediaNav li:nth-child(2) a:after{background-image:url(../img/about-icon.png)!important;}
	.mediaNav li:nth-child(3) a:after{background-image:url(../img/philosphy-icon.png)!important;}
	.mediaNav li:nth-child(4) a:after{background-image:url(../img/expertise-icon.png)!important;}
	.mediaNav li:nth-child(5) a:after{background-image:url(../img/clients.png)!important;}
	.mediaNav li:nth-child(6) a:after{background-image:url(../img/work.png)!important;}
	.mediaNav li:nth-child(7) a:after{background-image:url(../img/blog-icon.png)!important;}
	.mediaNav li:nth-child(8) a:after{background-image:url(../img/offices-icon.png)!important;}
	.mediaNav li:nth-child(9) a:after{background-image:url(../img/contact-icon.png)!important;}
	
	.mediaNav li a:before{background:#000!important;}
	.mediaNav li a{color:#333 !important;}
.mediaNav span{text-decoration: none;}
    .mediaNav a{text-decoration: none;text-align: left;}
    
    .mediaNav span:hover{color: red !important;text-decoration: none;}
    .privacy
    {display: block;position: absolute;bottom: 0px;width: 100%;}
	.homesidebar{background-color:transparent;height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .aboutsideimg{background-image: url('../img/aboutbanner.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .philosophyimg{background-image: url('../img/strategy.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .expertiseimg{background-image: url('../img/partner.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.leadershipimg{background-image: url('../img/leader.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .victorpage{background-image: url('../img/vic.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.kinjalpage{background-image: url('../img/kin.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.ashishpage{background-image: url('../img/ash.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.amitpage{background-image: url('../img/amit.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .sideNavColor4{background-image: url('../img/leader.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .sharonpage{background-image: url('../img/raj.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .sideNavColor6{background-image: url('../img/mainline.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .activationsideimg{background-image: url('../img/activation.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
    .sideNavColor8{background-image: url('../img/retail1.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.clientsideimg{background-image: url('../img/client1.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.itcsideimg{background-image: url('../img/ITC.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.yepieesideimg{background-image: url('../img/yipee.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.chillrsideimg{background-image: url('../img/chillar.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.vokabeesideimg{background-image: url('../img/vokabee.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.onebeesideimg{background-image: url('../img/Iot.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.ilovebikesideimg{background-image: url('../img/lovebike.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.sesamesideimg{background-image: url('../img/sesame.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.hydsideimg{background-image: url('../img/HYD.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.ldsideimg{background-image: url('../img/DATA.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.motosideimg{background-image: url('../img/MOTOVALLEY.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.careersideimg{background-image: url('../img/career.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
	.contactsideimg{background-image: url('../img/contact.png');height:100%;background-size: calc(100%);position: fixed;top: 0px;right: 0px;}
@media only screen and (max-width: 1000px) {
  #side
  {
    position: fixed;
  }

 /* .mobileView{display: flex; flex-direction: row-reverse;}*/
  .leaderImage{width: 50%;}
   .privacy{position: fixed;width: 100%;bottom: 0;padding: 5px;background-color: #333;border: none;color: #fff;}
   .square{display: none;}
   .privacyDiv{border-right: 1px solid red;}
   .aboutsideimg{background:none !important;height:100%;position: relative;}
   .philosophyimg{background:none !important;height:100%;position: relative;}
   .expertiseimg{background:none !important;height:100%;position: relative;}
   .victorpage{background:none !important;height:100%;position: relative;}
   .kinjalpage{background:none !important;height:100%;position: relative;}
   .ashishpage{background:none !important;height:100%;position: relative;}
   .amitpage{background:none !important;height:100%;position: relative;}
   .sideNavColor7{background:none !important;height:100%;position: relative;}
   .sideNavColor8{background:none !important;height:100%;position: relative;}
  .hydsideimg{background:none !important;height:100%;position: relative;}
   .career-links{display: none};
    .homeLogo{width: 100%;}
    #card{margin-top: 30px;}
    .mediaNav a{text-decoration: none;}
    .mediaNav span:hover{color: #c6c6c6 !important;text-decoration: none;}
    .cd-stretchy-nav{width: 90%;}
    .mediaNav {border-radius: 30px;opacity: 0.8;}
    .mediaNav a{text-decoration: none;}
    .mediaNav span{color: #fff !important;text-decoration: none;}
    .mediaNav span:hover{color: #c6c6c6 !important;text-decoration: none;}
    .cd-stretchy-nav{width: 90%;}
    
}
  
  

@media only screen and (max-width: 1000px) {
	 .mediaNav {background:red;opacity:0.8 !important;border-radius: 30px;}
	
}

blink {-webkit-animation: 1s linear infinite condemned_blink_effect; // for android   animation: 4s linear infinite condemned_blink_effect;}
            @-webkit-keyframes condemned_blink_effect { // for android
                0% {visibility: hidden;}
                50% {visibility: hidden;}
                100% {visibility: visible;}
            }
            @keyframes condemned_blink_effect {
                0% { visibility: hidden;}
                50% {visibility: hidden;}
                100% {visibility: visible;}
            }
/*.activee
	{
		color: #fff !important;
	}*/
/***Navigation menu***/
.navigation-menu {
  float: left;
  width: 100%;
}
.navigation-menu li {
  font-weight: bold;
  padding: 15px 10px;
}
.navigation-menu li:hover{color:#fff!important;}
/******/


.leaders-list{width:100%;float:left;text-align:center;}
.leaders-list span{margin-bottom:}
.leaders-list span, .leaders-list abbr{display:block;}
.leader-tabs{width:100%;float:left}
.leader-tabs .ltabs{float:left;width:50%;padding:1% 5%;}
.leader-tabs .ltabs b{display:inline-block;}
.alignr{text-align:right;}
.alignl{text-align:left;}
.right-border{border-right:1px solid #333;}
.ltabs a, .ltabs abbr{width:100%;float:left;}

.leader-data .leaderimg-name,.leader-bio{width:100%;float:left;}
.leaderimg-name{z-index:0;position:relative;}
.leader-bio{background:#efefef;padding:50px 20px 20px 20px;margin-top:-40px;z-index:-1;min-height:600px;}
.name-desg{float:left;margin:32px 0 0 0;}
.name-desg h4{font-weight:bold;font-size:16px;margin-bottom:5px;}
.name-desg h5{color:#F00;}

.client-description{background:#E6E6E6;color:#231F20;padding:20px;height:700px;}
.white-btn{color:#fff!important;}
.mb30{margin-bottom:30px!important;}
.topImage { width: 80%;padding: 25px;opacity: 0.5;margin: 15px  0 60px 0;}

.topImage-inner {
  margin-top: 15px;
  opacity: 0.5;
  padding: 25px;
  width: 80%;
}

.pb0{padding-bottom:0!important;}
.pt30{padding-top:30px !important;}
.pb30{padding-bottom:30px !important;}
.pt20{padding-top:20px;}
.mr15{margin-right:15px !important;}
.mb30per{margin-bottom:30%;}	
.container-wrap{float:left;width:100%;}


.wrapper{width:100%;float:left;}
.divider-con{width:100%;float:left;}
.career-con{width:100%;max-width:600px;margin:0 auto;}
.fixed-career-links{position:fixed;}
.career-links,.offices{width:250px;float:left; border-right:3px solid #808080; height:500px;padding:30px 0;}
.career-links ul,.career-links ul li{width:100%;float:left;}
.career-links ul li{padding:16px 0;}
.career-links ul li a:hover{color:inherit !important;text-decoration:none;}
.career-content-box {background: #e6e6e6;padding: 30px;text-align: center;float:left;width:100%;position:relative;margin-bottom:30%}
.career-content-box h5{font-size:16px;margin-bottom:20px;}
.career-content-box a{color:#ff0000;font-size:19px;float:left;width:100%;padding:50px 0 70px 0;}
.career-content-box a:hover{text-decoration:none;}
.career-content-box:before {content: '<';position: absolute;left: -15px;	font-size: 40px;top: 50%;color: #4d4d4d;	font-weight: 100;}
.career-content-box:after {content: '>';position: absolute;right: -15px;	font-size: 40px;top: 50%;color: #4d4d4d;	font-weight: 100;}
.active-career-link{font-weight:bold;color:#231F20}
.career-internal-link{width:100%;float:left;}
.career-note{text-align:left;font-size:12px;font-style:normal;position:absolute;bottom:6px;left:0;width:100%;float:left;}

.career-detail { background: #E6E6E6;  padding: 20px 80px 50px 20px;  margin: 0 0 0 30px;width:100%;float:left;}
.career-detail-content {  padding: 0 0 0 30%;}
.career-detail-heading{margin:10px 0 20px 0;}
.career-detail-heading h4{color:#ff0000;display:block;}
.career-detail-heading p{display:block;}
.career-detail-content > p,.career-detail-content > div{width:100%;float:left;margin:10px 0}
.cdc-list,.cdc-list p,.cdc-list ul, .cdc-list ul li,.career-detail-content > span{width:100%;float:left;}
.cdc-list p,.cdc-list li{padding:0 0 8px 0;}
.cdc-list li{list-style:disc;margin-left:20px;}
.apply-btn{background:#fff;padding:15px 20px;border-radius:8px;color:#000;font-weight:bold;display:inline-block}
.apply-btn:hover{color:#000 !important;text-decoration:none !important;}

.aac-manager-form form ul li label{font-weight:normal;}
.aac-manager-form > form > ul ,.aac-manager-form > form > ul > li{width:100%;float:left;}
.aac-manager-form > form > ul > li{margin:4% 0;}
.aac-manager-form > form > ul > li > label{float:left;width:35%;}
.aac-manager-form ul li > ul {float:left;width:65%;}
ul.two-col > li { width: 42%; float: left;}
ul.two-col > li:nth-child(1),ul.two-col > li:nth-child(3){margin:0 8% 2% 0}
ul.two-col > li:nth-child(2),ul.two-col > li:nth-child(4){margin:0 0 2% 8%;}
.aac-manager-form ul li input[type="text"],.aac-manager-form ul li input[type="tel"],.aac-manager-form ul li input[type="email"]{width:100%; border-bottom:1px solid #333;background:transparent;box-shadow:none;border-left:none;border-right:none;border-top:none;padding:10px;font-size:12px;}
ul.onebytwo-col li:nth-child(2), ul.onebytwo-col li:nth-child(3) {  width: 42%;  float: left;}
.mr8per{margin-right:8%;}
.ml8per{margin-left:8%;}

.ul.three-col{width:100%;float:left;}
ul.three-col li{width:33%;float:left;}
ul.three-col input,ul.three-col label{float:left;}
ul.three-col label{padding:5px;font-size:12px;}
.blog-page{width:100%;float:left;background-image: url('../img/blog-bg.png');height:100%;background-size: calc(100%);position: relative;top: 0px;right: 0px;}
.blog-head-sec {top: 40%;position: absolute;left: 10%;float:left;width:100%;}
.welcome-heading,.wel-heading2,.wel-heading2 span,.wel-heading2 abbr, .wel-heading2 i,.share-this,.share-this ul,.share-this ul li,.share-this p,.leader-blog-con,.offices,.offices ul, .offices ul li,.contact-pg-form,.contact-pg-form li{width:100%;}
.welcome-heading,.welcome-heading h1,.welcome-heading span,.welcome-heading i,.wel-heading2,.wel-heading2 span,.wel-heading2 abbr, .wel-heading2 i,.share-this ,.share-this p, .share-this ul, .share-this ul li,.leader-blog-con,.offices,.offices ul,.offices ul li,.contact-pg-form, .contact-pg-form li{float:left;}
.welcome-heading h1{font-size:60px;font-weight:bold;color:#333;}
.welcome-heading span{width:100%;max-width:20px;margin:25px 10px 0 10px;color:#333;}
.welcome-heading i {width: 100%;font-size: 18px;font-style: normal;line-height: 15px;}
.wel-heading2 span{color:#231F20;font-weight:bold;font-size:18px;margin:0 0 0 20px;}
.wel-heading2 abbr{color:#fff;font-weight:bold;font-size:18px;margin:5px 0 0 35px;}
.wel-heading2 i{margin:5px 0 0 35px;}
.copy-ad{background:#000; max-width:200px;width:100%;color:#fff;padding:40px 15px;text-align:center}
.copy-ad h3,.copy-ad p{display:block;}
.copy-ad p{margin:15px 0 0 0;color:#B3B3B3}
.share-this{margin:15px 0 0 0}
.share-this ul li:first-child{width:auto !important;margin:15px 10px 0 0;font-weight:bold;}
.share-this ul li{display:inline-block;width:8%;margin:0 10px 0 0;}
.share-this ul li img{width:100%;}
.leader-blog-con{margin:15px 0 0 0;}
.leader-blog-con span{width:20%;float:left}
.leader-blog-con abbr{width:78%;float:left; margin-left:2%}
.offices{color:#333;font-size:13px;}
.offices ul li{padding-bottom:5px}
.offices h5{margin:50px 0;}
.no-side-arrows:before,.no-side-arrows:after{display:none;}
.contact-pg-form{text-align:left;}
.contact-pg-form li{padding:0 0 10px 0;}
.contact-pg-form li input[type="text"],.contact-pg-form li input[type="email"]{border-bottom:1px solid #000;border-left:none;border-right:none;border-top:none;background:none; padding:10px;width:70%;}
.contact-pg-form li textarea{width:100%;margin:15px 0 10px 0;border:none;height:150px;}
.contact-btn{color:#fff;border-radius:10px;padding:15px 20px;box-shadow:none;border:none;background:#333;font-weight:bold;}


