/*Designer css*/


* {
  padding: 0;
  margin: 0;
}

img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;

  /* Safari seems to support, but seems deprecated and does the same thing as the others. */
  image-rendering: -webkit-optimize-contrast;
}


/*
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position:absolute;
  display: ;
  top: 0;
  left: 0;
}
*/


body  {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.wrapper {
    overflow: hidden;
}


#banner-fluid {
    position: relative;
}

#banner-fluid .Bannertxtholder {
    position: absolute;
    top: 330px;
    width: 100%;
    text-align: center;
}

#banner-fluid .Bannertxtholder h1 {
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 48px;
    font-family: 'Crimson Text', serif;
    text-transform: capitalize;
}


#banner-fluid img {
    width: 100%!important;
    height: auto;
}

/*
.navbar .container-fluid {
    padding-right: 0;
}


.topnav {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    padding-right: 0;
}


.navbar-collapse.show {
    height: 100vh!important;
    transition-delay: 2s!important;
}

.topnav li.nav-item {
    margin-right: 27px;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.topnav li.nav-item a {
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.topnav li.nav-item a:hover {  
    text-decoration: underline;
  transition-delay: 0.1s!important;
} 

.topnav li.nav-item a.active {
    color: #5CC57C;
    text-decoration: underline;
}
*/



/*Navigation with responsive css*/


nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

nav ul {
  float: right;
    margin: 0;
    padding: 0;
}
nav ul li {
  display: inline-block;
  float: left;
}
nav ul li:not(:first-child) {
  margin-left: 45px;
}
nav ul li a {
    display: inline-block;
    outline: none;
    color: #FFFFFF;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.04em;
    font-weight: 400;
}

nav ul li a:hover {
  color: #5CC57C!important;
  text-decoration: underline;
}


nav ul li a.active {
    text-decoration: underline;
    color: #5CC57C;
}

  .topnav {
    padding-top: 5px;
}


@media screen and (max-width: 560px) {
  nav {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
}
    
    .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -100!important;
    background: #203B5A;
    opacity: 0;
        display: none;
    transition: all 0.2s ease;
  }
  .nav-container ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-container ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .nav-container ul li:nth-child(1) a {
/*    transition-delay: 0.2s;*/
  }
  .nav-container ul li:nth-child(2) a {
/*    transition-delay: 0.3s;*/
  }
  .nav-container ul li:nth-child(3) a {
/*    transition-delay: 0.4s;*/
  }
  .nav-container ul li:nth-child(4) a {
/*    transition-delay: 0.5s!important;*/
  }

    .nav-container ul li:nth-child(5) a {
/*    transition-delay: 0.6s!important;*/
  }
    
    .nav-container ul li:nth-child(6) a {
/*    transition-delay: 0.7s!important;*/
  }
    
    
  .nav-container ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-container ul li a {
    padding: 10px 25px;
    opacity: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }
  .nav-open {
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-open i {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-open i:nth-child(1) {
    margin-top: 16px;
  }
  .nav-open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-open i:nth-child(3) {
    margin-top: 4px;
  }
    .nav-open i:nth-child(4) {
    margin-top: 4px;
  }
    .nav-open i:nth-child(5) {
    margin-top: 4px;
  }
    
    .nav-open i:nth-child(6) {
    margin-top: 4px;
  }
    
}
#nav:checked + .nav-open {
  transform: rotate(45deg);
}
#nav:checked + .nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
  opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-container {
  z-index: 9990;
  opacity: 1;
    display: block;
}
#nav:checked ~ .nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  display: none;
}

/*Navigation with responsive css END*/


.dark-bg {
    padding: 5px 0px;
    position: absolute;
    top: 0;
    z-index: 999;
    background: #203B5AB2;
    border-top: 1px solid #5CC57C;
    border-bottom: 1px solid #5CC57C;
}

.mainlogo {
    width: 160px;
    margin-top: 0px;
}


.flxgroupParent {display: flex;flex-wrap: wrap; padding: 30px 0;}


.flxgroupParent .nm {
    flex-grow: 1;
    flex-basis: 20%;
    margin: 0 0 0 0;
    padding: 15px 10px;
    text-align: center;
}
.nm h4 {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 29px;
    font-weight: 700;
}

.nm h5 {
    font-size: 13px;
    color: #666666;
    margin: 8px 0;
    font-weight: 700;
}






/*who we are css*/

.whoWeare {
   background: #203B5A;
    padding: 90px 0;
    color: #fff;
}

.homegap {
    height:500px;
}

.homegap2 {
    height: 140px;
}




.greentitle {
    color:#108890;
}


.CrimsonTitle {
    font-family: 'Crimson Text', serif;
    font-size: 40px;
}


.expading {
    padding-top: 170px;
}

p.homeWraptxt {
    padding-right: 0px;
    line-height: 25px;
}





.lineartsm:before {
    content: "";
    position: absolute;
    right: 109px;
    height: 265px;
    border-left: 2px solid;
    top: -90px;
}


.lineartsm:before {
    content: "";
    position: absolute;
    right: 109px;
    height: 265px;
    border-left: 2px solid #5CC57C;
    top: -90px;
}

.lineartsm {
    position: relative;
}

.lineartsm:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 102px;
    bottom: -135px;
}


.lineartsm2:before {
    content: "";
    position: absolute;
    right: 109px;
    height: 475px;
    border-left: 3px solid #5CC57C;
    bottom: -90px;
}



.lineartsm2 {
    position: relative;
}

.lineartsm2:after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 90px;
    top: -250px;
}

a.darkbtnstyle {
    color: #203B5A;
    text-decoration: none;
    background: #5CC57C;
    margin: 15px 0;
    display: inline-block;
    padding: 10px 30px;
}




.tabs {
  margin: 0px 20px;
  position: relative;

  width: 100%;
}

.tabs nav {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: column;
}


.tabs nav a {
    padding: 20px 0px;
    font-family: 'Crimson Text', serif;
    text-align: left;
    font-size: 40px;
    color: #fff;
    text-decoration: none;
     transition: 0.3s;
    width: max-content;
    cursor: pointer;
}


.tabs nav a:hover,
.tabs nav a.selected {
 color: #5CC57C!important;
    text-decoration: none;
}

.tabs .content {
  padding: 20px 0px;
  position: absolute;
  top: 0px;
/*  left: 150px;*/
  color: #F5F5F5;
  width: 0px;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.1s linear 0s;
}

.tabs .content.visible {
/*    padding: 20px;*/
    padding: 0;
    width: calc(100% - 0px);
    overflow:visible;
    opacity: 1;
}

.tabs .content p { padding-bottom: 2px; }

.tabs .content p:last-of-type { padding-bottom: 0px; }






/*ourReach section css*/

.Click-here {
  cursor: pointer;
}
.Click-here:hover{
  
}

.ourReach p {
    padding-right: 45px;
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 800px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
	overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px){
	.custom-model-main:before {
	  content: "";
	  display: inline-block;
	  height: auto;
	  vertical-align: middle;
	  margin-right: -0px;
	  height: 100%;
	}
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}



#chartdiv {
	width	: 100%;
	height	: 300px;
}

.ourReach {
    padding: 80px 0;
    position: relative;
}

.ourReach:before {
    content: "";
    position: absolute;
    background: url("../images/leftart.png");
    background-repeat: no-repeat;
    width: 350px;
    height: 400px;
    z-index: 1;
    left: 0;
    background-size: cover;
    top: -100px;
}

.ourReach:after {
    content: "";
    position: absolute;
    background: url(../images/right-art.png);
    background-repeat: no-repeat;
    width: 250px;
    height: 460px;
    z-index: 1;
    right: 0;
    background-size: cover;
    bottom: -95px;
}



.ourreachGap {
    height: 235px;
}

.ourReachTitle {
    color: #203B5A;
    font-size: 40px;
    font-family: 'Crimson Text', serif;

}

iframe#mapHolder {
    overflow-x: hidden!important;
}

.mapHolder {
          position: relative;
      }
    
.l1 {
    position: absolute;
    left: 188px;
    z-index: 100;
    top: 95px;
}

 .l2 {
    position: absolute;
    left: 160px;
    z-index: 100;
    top: 175px;
}

.l2-1 {
    position: absolute;
    left: 200px;
    top: 133px;
}

 .l3 {
    position: absolute;
    left: 274px;
    z-index: 100;
    top: 160px;
}


 .l4 {
    position: absolute;
    left: 255px;
    z-index: 100;
    top: 235px;
}


/*Company Milestones Start*/


.companyMilstones {
    padding: 50px 0;
}




/*Our Infrastructure*/

.ourInfra {
    padding: 60px 0 30px 0;
}

.infrapoints {
    padding: 0 20px;
}

.infrapoints h3 {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 36px;
}

.infraimg {
    padding: 0;
    margin: 0;
}

.infrapoints p {
    padding: 0 58px 0 0;
}




/*Our Infrastructure end*/








/* -------------------------------- 

Year Timeline - Company Milestones

-------------------------------- */

.cd-horizontal-timeline {
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 50%;
  margin: 0 auto;
}
.events ol {
    list-style: none;
}
.cd-timeline-navigation li {
    list-style: none;
}


.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}
.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
/*
  background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
*/
}
.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
/*
  background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
*/
}
.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
    width: 100%!important;
  left: 0;
  top: 49px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
ul.cd-timeline-navigation {
    display: none;
    
}

.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
/*
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #5CC57C;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
*/
}


.cd-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1.1rem;
    padding-bottom: 25px;
    color: #203B5A;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    text-decoration: none;
}


.cd-horizontal-timeline .events a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -10px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.events-content li.selected p {
    color: #666666;
    font-size: 15px;
    text-align: center;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #7b9d6f;
  border-color: #7b9d6f;
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #5CC57C;
  border-color: #5CC57C;
}

.events li:nth-child(2) {
    left: 210px;
    position: relative;
}

.events li:nth-child(3) {
    left: 240px;
    position: relative;
}





.cd-horizontal-timeline .events a.older-event::after {
    border-color: #5CC57C;
    background: #5CC57C;
}

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline {
    margin: 6em auto;
  }
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}


.cd-timeline-navigation a::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 60%;
    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%);
    background: url(../images/next.svg) no-repeat 0 0;
    background-size: contain;
}

.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a.next {
  right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}
.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
/*  overflow: hidden;*/
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  list-style: none;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
/*
  background: #fff;
  box-shadow: 0 0 10px #e6e3e3;
*/
  width: 80%;
  margin: 0 auto;
  padding: 30px 40px;
  margin-top: 10px;
  border-radius: 20px;
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
/*  max-width: 800px;
  margin: 0 auto;*/
}
.cd-horizontal-timeline .events-content h2 {
    font-size: 1.6rem;
    font-family: 'Crimson Text', serif;
/*    background: #5CC57C;*/
    display: inline-block;
    padding: 10px 0px;
    color: #203B5A;
    font-weight: 600;
    margin-bottom: 10px;
}

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}
.cd-horizontal-timeline .events-content em::before {
  content: '- ';
}
.cd-horizontal-timeline .events-content p {
/*  font-size: 1.4rem;*/
  color: #959595;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}

@media only screen and (min-width: 768px) {
 .cd-horizontal-timeline .events-content h2 {
    font-size: 1.6rem;
    margin: 0 auto;
    text-align: center;
    display: block;
}
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem;
  }
/*
  .cd-horizontal-timeline .events-content p {
    font-size: 1.8rem;
  }
*/
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.bordernd:after {
    content: "";
    position: absolute;
    border-right: 1px solid #5CC57C;
    right: 12px;
    height: 180px;
    width: 1px;
    top: 0;
}

.bordernd {
    position: relative;
    padding-right: 40px;
}




/*Our Services section css*/

.ourservices figure.effect-sadie a {
    color: #fff;
}

.ourservices figure.effect-sadie p,
.ourservices figure.effect-sadie li
{
    text-transform: initial;
    list-style: none;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
}

.ourservices figure.effect-sadie {
    width: 100%!important;
}

.ourservices .owl-controls.clickable {
    display: none!important;
}

.ourservices .owl-item figure.effect-sadie h2 {
    text-transform: capitalize;
    width: 80%;
}


.ourservices figure.effect-sadie ul {
    bottom: 135px;
}

.ourservices .specialcase1.effect-sadie ul {
    bottom: 70px!important;
}

.ourservices .specialcase2.effect-sadie ul {
      bottom: 90px;
}



.OurServices {
    padding: 50px 0;
    background: #E7E7E7;
    color: #203B5A;
}

.ourSercicesTItle {
    font-family: 'Crimson Text', serif;
    color: #203B5A;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 400;
}

.OurServices p {
    padding: 0 150px;
    font-size: 18px;
    text-align: center;
    margin: 20px 0;
    color: #203B5A;
}

.OurServices a {
    color: #203B5A;
    font-weight: 600;
}


.grid {
	position: relative;
	margin: 0 auto;
/*	padding: 1em 0 4em;*/
    padding: 0;
	width: 100%;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    /* margin: 10px 1%; */
    max-height: 550px;
    width: 33.33%;
    /* background: #3085a3; */
    text-align: center;
    cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
    word-spacing: 0;
    font-weight: 300;
    font-family: 'Crimson Text', serif;
    font-size: 30px;
}

/*
.grid figure h2 span {
	font-weight: 800;
}
*/

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
/*	opacity: 0.7;*/
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	text-align: left;
}

figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-lily p {
    color: rgba(255,255,255,1);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
    text-transform: initial;
    line-height: 21px;
    margin-top: 10px;
}


figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
/*
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
*/
}

figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}



/*---------------*/
/***** Sadie *****/
/*---------------*/
.effect-sadie img {
    width: 100%;
}

figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(60,81,84);
background: -moz-linear-gradient(90deg, rgba(60,81,84,0.7) 0%, rgb(0 0 0 / 29%) 35%, rgba(60,81,84,0.3) 100%);
background: -webkit-linear-gradient(90deg, rgba(60,81,84,0.7) 0%, rgb(0 0 0 / 29%) 35%, rgba(60,81,84,0.3) 100%);
background: linear-gradient(90deg, rgba(60,81,84,0.7) 0%, rgb(0 0 0 / 29%) 35%, rgba(60,81,84,0.3) 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c5154",endColorstr="#3c5154",GradientType=1);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
}

figure.effect-sadie h2 {
    position: absolute;
    top: 70%;
    left: 25px;
    width: 100%;
    color: #F2F3E9;
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
    text-align: left;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    padding-right: 15px;
}

img.arrowBtn {
    width: 20%;
    margin-top: 15px;
}

figure.effect-sadie figcaption::before,
figure.effect-sadie ul  {
	-webkit-transition: opacity 0.55s, -webkit-transform 0s;
	transition: opacity 0.55s, transform 0s;
}

figure.effect-sadie ul {
    position: absolute;
    left: 0;
    text-align: left;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
    margin: 0;
    padding-left: 25px;
    bottom: 75px;
}


figure.effect-sadie:hover h2 {
    color: #F2F3E9;
    -webkit-transform: translate3d(0,-50%,0) translate3d(0,-165px,0);
    transform: translate3d(0,-50%,0) translate3d(0,-165px,0);
    border-bottom: 2px solid;
    width: 90%;
}



figure.effect-sadie:hover .arrowBtn {
    opacity: 0;
    transition: 0.5s;
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover ul {
	opacity: 1;
    
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}




/*our Services section css end*/




.gapElement {
    height: 30px;
}



/*Testimonial section*/

.testimonialsHolder {
    clear: both;
}


.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #ff4242;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #e41212;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ff4242;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #5CC57C;
}

.testimonialsSection span.lineArt {
    display: inline-block;
    height: 2px;
    background: #5CC57C;
    width: 115px;
    margin: 20px 0;
}

.testimonialsSection .owl-item div {
    border-top: 1px solid #5CC57C;
    padding-top: 20px;
    border-right: 1px solid #5CC57C;
    text-align: center;
/*    min-height: 430px;*/
    min-height: 565px;
    padding: 30px 40px;
}

.testimonialsSection .owl-item div p {
    color: #666;
}

.testimonialsSection h4.name {
    font-size: 24px;
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.testimonialsSection p.designation {
    font-size: 14px;
    text-transform: uppercase;
    color: #203B5A!important;
    padding: 0 40px;
    font-weight: 400;
    line-height: 24px;
}

.testimonialsSection .owl-controls.clickable {
    margin-top: -53px;
    padding-bottom: 20px;
}


/*CSR section css start*/

.aboutwelcometxt.csrwelcometxt {
    padding: 50px 50px 10px 50px;
    color: #666666;
}

.csrHolder {
    padding: 50px 0px 120px 0px ;
    background: #203B5A;
    color: #fff;
    margin-top: 3px;
}

h2.csrHeading {
    color: #5CC57C;
    font-family: 'Crimson Text', serif;
    font-size: 40px;
    font-weight: 400;
    text-transform: capitalize;
}

.csrTxtW {
    color: #F5F5F5;
    font-size: 18px;
    margin: 20px 0;
    padding: 0 200px;
    text-align: center;
    font-weight: 400;
}

.csrbtnw a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}

.csrcarasoulholder {
    margin-top: -100px;
}

section.csrcarasoulholder .owl-carousel {
    text-align: center;
}

.csrcarasoulholder .owl-prev {
    position: absolute;
    left: -35px;
    background-image: url(../images/back.svg) !important;
    top: 190px;
    height: 38px;
    background-size: cover!important;
    opacity: 1!important;
    background-color: #fff!important;
}

.csrcarasoulholder .owl-next {
    position: absolute;
    right: -35px;
    top: 170px;
    background-image: url(../images/nxt.svg) !important;
    top: 190px;
    height: 38px;
    background-size: cover!important;
    opacity: 1!important;
    background-color: #fff!important;
    background-position: -7px center!important;
}

.csrcarasoulholder .item a, .csrcarasoulholder .item p {
    font-size: 22px;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
    top: -55px;
    text-align: left;
    color: #fff;
    display: block;
    left: 45px;
    font-family: 'Crimson Text', serif;
}



.footerHolder {
    background: #203B5A;
    padding: 50px 0;
    color: #fff;
    text-align: left;
    list-style: none;
    margin-top: 20px;
}


.addressholer a {
    color: #fff;
    text-decoration: none;
}
.addressholer a:hover {
    text-decoration: underline;
}



.footerlinks h4 {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: #5CC57C;
}

.footerlinks ul {
   list-style: none;
    margin: 0;
    padding: 0;
}

.footerlinks ul li {
    margin-bottom: 5px;
}


.footerlinks ul li a {
    color: #fff;
    text-decoration: none;
}

.footerlinks ul li a:hover {
    border-bottom: 1px solid #fff;
}









/*About us page css start*/

.about .lb-nav {
    display: none!important;
}

.about .lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
}


.about .lb-data .lb-close {
    display: block;
    float: right;
    background:  url(../images/closeic.svg) center center no-repeat!important;
    text-align: center;
    outline: 0;
    filter: alpha(Opacity=70);
    opacity: 1;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    position: relative;
    bottom: 6px;
    right: 0px;
    background-size: 25px!important;
}



.Ourteam .swiper-container a.btn {
    text-decoration: underline!important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/nxticab.svg)!important;
    right: 10px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/backArrow-ab.svg)!important;
    left: 10px;
    right: auto;
}


ul.aboutbtsholder {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.aboutbtsholder img {
    margin-right: 15px;
}


.aboutwelcometxt {
    padding: 50px;
    color: #666666;
}


.aboutwelcometxt h2 {
    color: #203B5A;
  font-family: 'Crimson Text', serif;  
    font-size: 40px;
    font-weight: 400;
}

span.ablead {
    text-transform: uppercase;
    color: #000;
    display: block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 18px;
}


/*awards & Certificates*/


.awardHolder {
    padding: 50px 0 0 0;
}

.awardHolder h2 {
    color: #203B5A;
  font-family: 'Crimson Text', serif;  
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.Ourteam h2 {
    margin-bottom: 15px;
    font-weight: 400;
}

.linetopbottom {
    border-bottom: 1px solid #5CC57C;
    border-top:1px solid #5CC57C;
    width: 100%;
}

.awardGrid {
    border-right: 1px solid #5CC57C;
    padding: 40px 20px;
    min-height: 450px;
}

h4.awardTitles {
    font-family: 'Crimson Text', serif;
    margin: 30px 0;
    font-size: 24px;
    color: #203B5A;
    font-weight: 800;
}

p.awardTxtcaption {
    color: #666666;
    text-transform: uppercase;
}

span.catagory,
a.catagory 
{
    color: #5CC57C;
    font-size: 14px;
    text-transform: uppercase;
}


.awardHolder .owl-theme .owl-controls {
    margin-top: -30px;
    text-align: center;
}


/*END*/



/*Our Team section css Start*/

.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

.popup-inner {
/*  max-width: 700px;*/
  width: 75%;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
  border-radius: 3px;
  background: #fff;
}

.popup-close {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 40px;
    transition: ease 0.25s all;
   
    -webkit-transform: translate(50%, -50%);
    transform: translate(70%, -49%);
    font-family: Arial, sans-serif;
    font-size: 40px;
    text-align: center;
    line-height: 100%;
    color: #5CC57C;
    text-decoration: none;
    font-weight: 100;
}
/*
.popup-close:hover {
  background: rgba(0,0,0,1);
  text-decoration: none;
  color: #fff;
}
*/


.swiper-container {
    position:relative;
    width: 90vw;
    height: 380px;
    z-index: 0!important;
}
.swiper-container > .swiper-slide__content {
  position:absolute;
  top:0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    transform: scale(0.7);
}

.swiper-slide {
  display:flex;
/*  background: #eee;*/
/*  align-items: center;*/
  justify-content:flex-start;
  transition:all 200ms linear;
/*  transform: scale(0.7);*/
  
  &.swiper-slide-active{
    transform: scale(0.9);
  }
}

.swiper-slide__content {
  height: 380px;
}

.swiper-slide span {
    border: 1px solid #000!important;
    text-align: center;
    font-family: 'Crimson Text', serif;
}

.swiper-slide span h4  {
    padding: 15px 10px 0 20px!important;
    font-size: 22px;
    color: #203B5A;
    font-weight: 400;
    font-family: 'Crimson Text', serif;

}

.swiper-slide span h5 {
    color: #666666;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
.swiper-slide a {
    color: #5CC57C;
    font-weight: 600;
    font-family: 'Open Sans';
}



.modal {
  display: none;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.modal-close-btn {
    position: absolute;
    right: 15px;
    color: #5CC57C;
    top: 10px;
    font-size: 20px;
    background: transparent;
    border: none;
    font-size: 18px;
    transform: scale3d(2, 1.4,1.5);
}


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}






.modal.js-modal.team {
    height: auto;
    max-width: 70%;
}

.teamPopImg img {
    margin-bottom: 20px;
}

.teamPopImg h4 {
    font-family: 'Crimson Text', serif;
    color: #203B5A;
    text-align: center;
    font-size: 28px;
}

.teamPopImg h5 {
    color: #666666;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
}

.popcontant p {
    color: #666666;
    font-size: 15px;
}

.popcontant h4 {
    font-family: 'Crimson Text', serif;
    font-size: 30px;
    color: #203B5A;
}

.popcontant h5 {
    color: #5CC57C;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 20px;
}



.contentF {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  padding: 0px;
}

.wrapperF {
    height: 100%;
    padding: 10px 0;
}

/*
.name {
  position: relative;
  font-size: 16px;
  display: inline-block;
}
*/

.name:after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: 1px;
  background-color: #5CC57C;
  bottom: -4px;
  left: 0;
}

.box {
  position: relative;
  max-height: 240px;
/*  border-radius: 4px;*/
  overflow: hidden;
/*  box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.017), 0 3.3px 4px rgba(0, 0, 0, 0.024), 0 6.3px 7.5px rgba(0, 0, 0, 0.03), 0 11.2px 13.4px rgba(0, 0, 0, 0.036), 0 20.9px 25.1px rgba(0, 0, 0, 0.043), 0 50px 60px rgba(0, 0, 0, 0.06);*/
}
.box .hide {
  opacity: 0;
}
.box .frame {
  position: absolute;
  border: 1px solid #fff;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box h2, .box p {
  position: absolute;
  color: #fff;
  z-index: 2;
  width: 100%;
  transition: opacity 0.2s, transform 0.3s;
}
.box h2 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.box h2:after {
    background: url(../images/arrow-T.svg);
    content: "";
    width: 100%;
    height: 28px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: -35px;
    left: 22px;
}

.box:hover.box h2:after {
    display: none!important;
}


.box p {
  bottom: 0;
  font-size: 14px;
  letter-spacing: 1px;
}
.box:hover {
  transition: all 0.3s ease-in-out;
}
.box:hover:before {
  transition: all 0.3s ease-in-out;
}
.box img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.box img:hover {
  transition: all 0.3s ease-in-out;
}
.box img:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.box img:hover {
  transition: all 0.3s ease-in-out;
}

.vintage h2 {
    top: 35%;
    transform: translate3d(0, 60px, 0);
    text-align: left;
    padding: 0px 20px;
    font-size: 21px;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    /* text-shadow: 1px 1px 1px #4e4e4e; */
    letter-spacing: 0;
}

.vintage p {
  opacity: 0;
  bottom: 0;
  transform: translate3d(0, -10px, 0);
  font-size: 13px;
    line-height: 20px;
       padding: 0px 20px;
  letter-spacing: 0px;
  text-align: left;
}
.vintage:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(72, 76, 97, 0.5) 0%, rgba(72, 76, 97, 0.5) 75%);
    z-index: 2;
    bottom: -100%;
    left: 0;
}
.vintage:hover:before {
  bottom: 0;
}
.vintage:hover h2 {
    top: 5px;
    transform: translate3d(0, 20px, 0);
}


.vintage:hover h2:before {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 85%;
    border-bottom: 2px solid #fff;
}

.vintage:hover p {
    opacity: 1;
    transform: translate3d(0, -30px, 0);
    top: 135px;
}

.box:hover.vintage span {
    padding: 0 20px;
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 2;
}

.wrapperF a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}


.lb-data .lb-number {
    display: none!important;
}

/*Future Growth*/






/*CSR page css Start*/

section.aboutwelcometxt.csrwelcometxt.csrt {
    padding-top: 0;
}

.lineartsm2 .tabs {
    margin-left: 3px;
}

p.csrp {
    padding: 10px 200px;
    text-align: center;
}

.csr10imges .swiper-slide.cardItem {
    width: 33.2%;
    margin: 0!important;
    padding: 0!important;
    transform: scale(0.95);
    margin-bottom: -20px!important;
}

.csr10imges  figure.effect-sadie {width: 100%;}


.csr10imges .swiper-wrapper {
    flex-wrap: wrap;
}

.csr10imges .swiper-pagination {
    position: relative;
    margin-top: 24px;
    margin-bottom: -10px;
}

.csr10imges figure.effect-sadie h2 {
    top: 405px;
    font-size: 35px;
    width: 90%;
    color: #fff;
    text-transform: initial;
    font-weight: 400;
}

.csr10imges figure.effect-sadie ul,
.csr10imges figure.effect-sadie :hover ul {
    bottom: 75px;
    font-size: 14px;
    text-transform: initial;
    vertical-align: sub;
    line-height: 22px;
}

a.csrhbtn {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.csr10imges img.arrowBtn {
    width: 16%;
}


.csr10imges .swiper-slide.cardItem.lastsing {
    margin: 0 auto!important;
    display: block!important;
}

.csr .tabs nav a {
    font-size: 21px;
    padding: 14px 0;
    color: #F5F5F5;
}

.csrtabholder {
    padding: 40px 0;
}

.csrtabholder .csr img {
    margin-bottom: 30px;
}

span.csrdarkgraytxt {
    display: block;
    padding-right: 50px;
    color: #F5F5F5;
    opacity: 0.5;
    line-height: 21px;
    margin-top: 25px;
    width: 75%;
    text-transform: uppercase;
    font-size: 14px;
}


img.grouplogo {
    width: 85%;
}


.csrtabdata h2.CrimsonTitle {
    font-size: 36px;
    color: #F5F5F5;
    min-height: 100px;
    font-weight: 400;
}

.csrspacer {
    height:90px;
}


.csrtabholder .lineartsm:before {
    content: "";
    position: absolute;
    right: 109px;
    height: 260px;
    border-left: 2px solid #5CC57C;
    top: -40px;
}

.csrtabholder .lineartsm2:before {
    content: "";
    position: absolute;
    right: 109px;
    height: 570px;
    border-left: 3px solid #5CC57C;
    bottom: -121px;
}

.csrtabholder .lineartsm2:after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 90px;
    top: 245px;
}


p.csrwaptxt {
    padding-right: 80px;
}

.tabs.csrtabdata {
    max-height: 890px;
    height: 890px;
    position: relative;
}

.tabs.csrtabdata1 {
    max-height: 290px;
    height: 290px;
    position: relative;
}


/*CSR page css END*/





/*services page css start */


.Sectionpaddings {
    padding: 60px 0;
}

.h2fonts {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}


.contentPaddingEx {
    padding-top: 5px;
}

.margineb {
    margin-bottom: 50px;
}

.toppaddingser {
    padding-top: 30px;
}

#owl-exampleServices .owl-item img {
    width: 100%;
}


#owl-exampleServices span.imgcapservice {
    position: relative;
    top: -75px;
    display: inline-block;
    left: 0;
    font-family: 'Crimson Text', serif;
    width: 100%!important;
    text-align: left;
    padding-left: 40px;
    color: #F5F5F5;
    font-size: 30px;
}





/*services page css end */





/*contact us page css start */

p#thank_you_msg {
    border: 2px solid #5CC57C;
    text-align: center;
    color: #5CC57C;
    padding: 5px 0px;
    width: 90%;
    margin: 20px auto;
    display: inherit;
}

.contactUs h2 {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 40px;
    font-weight: 400;
    text-transform: capitalize;
}


.contactpagepadding {
    
    padding:30px 0;
}


#contactForm input.form-control, #contactForm textarea.form-control {
    padding: 17px!important;
    font-size: 14px;
    resize: none;
    border-radius: 0px;
    border-color: #666666;
}

#contactForm .validation div {
    margin: 10px 0 10px 0;
}

#contactForm {
    margin-top: 20px;
    padding: 0 60px;
}

#contactForm .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #666666;
    outline: 0;
    box-shadow: 0 0 0 0.15rem #203B5AB2;
}


#contactForm input.blueBtn {
    background: #5CC57C;
    color: #203B5A;
    border: none;
    padding: 10px 45px;
    font-weight: 400;
    font-size: 18px;
}

.mapaddresholder a.blueBtn
{
    background: #5CC57C;
    color: #203B5A;
    border: none;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 400;
    margin: 15px 0;
    display: inline-block;
    font-size: 16px;
}


.mapaddresholder {
    padding: 50px 0 0 60px;
}


.qrholder {
    margin-top: 30px;
    
}

.addh {
    color: #203B5A;
}

.addh strong a, .addh strong {
    color: #203B5A;
    font-weight: 600;
}


#contactForm input.form-control::placeholder, 
#contactForm textarea.form-control::placeholder {
    font-weight: 300!important;
    font-family: 'Crimson Text', serif;
    color: rgba(60, 81, 84, 0.50)!important;
}


/*contact us page css end */






/*Resources page css start*/


.saphireResourcescards {
    padding: 50px 0px 30px 0px;
}


.saphireResourcescards .swiper-wrapper {
    flex-wrap: wrap;
}

.saphireResourcescards .swiper-slide.cardItem {
    margin: 0!important;
    padding: 0!important;
    transform: scale(0.95);
}

.saphireResourcescards figure.effect-sadie {
    width: 100%;
}



.saphireResourcescards .swiper-slide.cardItem {
    margin: 0!important;
    padding: 0!important;
    transform: scale(0.95);
    width: 33.2%;
}




.saphireResourcescards figure.effect-sadie ul {
    top: 290px;
    font-size: 15px;
    text-transform: initial;
}

.saphireResourcescards figure.effect-sadie img.arrowBtn {
    width: 15%;
}

.saphireResourcescards figure.effect-sadie h2 {
    font-size: 32px;
   
    width: 90%;
    text-transform: initial;
    padding: 0;
    transform: none;
}

.swiper-slide.cardItem.mp h2 {
    top: 77%;
}

.saphireResourcescards figure.effect-sadie:hover h2 {
    border: none;
}

.saphireResourcescards figure.effect-sadie:hover figcaption::before {
    opacity: 0;
}

.saphireResourcescards figure.effect-sadie:hover .arrowBtn {
    opacity: 1;
    transition: 0.5s;
}



h5.Rcertificatesmall {
    font-size: 14px!important;
}


.SM figure.effect-sadie:hover figcaption::before {
    opacity: 0!important;
}


.SM .owl-item figure.effect-sadie h2 {
    border: none!important;
/*    top: 282px!important;*/
    transform: none!important;
    -webkit-transform: none!important;
}

.SM .owl-item figure.effect-sadie:hover .arrowBtn {
    opacity: 1;
}

.SM .lowtitle figure.effect-sadie h2 {
    top: 78.3%;
}




.gallery {
    padding: 50px 0 0 0;
}



.button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 0;
    background: #ffffff;
    font-family: 'Open Sans';
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #203B5A;
    margin: 10px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    color: #203B5A;
    text-transform: uppercase;
    font-weight: 400;
    flex: 1;
    letter-spacing: 0.36px;
}

.button:hover {
  background-color: #5CC57C;
     border-color: #5CC57C;
}

.button:active,
.button.is-checked {
  background-color:#5CC57C;;
  outline: none;
    border-color: #5CC57C;
}

.button-group {
    margin: 20px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.button-group:after {
  content: '';
  display: block;
  clear: both;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.grid2 article {
  background-color: #FFFFFF;
  display: block;
  float: left;
  margin: 1%;
  width: 23%;
}

@media (max-width: 1024px) {
  .grid2 article {
    width: 31.3%;
  }
}

@media (max-width: 767px) {
  .grid2 article {
    width: 48%;
  }
}

@media (max-width: 479px) {
  .grid2 article {
    margin: 2% 0;
    width: 100%;
  }
}

.SM .lowtitle figure.effect-sadie h2 {
    border: none!important;
/*    top: 323px!important;*/
    transform: none!important;
    -webkit-transform: none!important;
    font-weight: 400;
}

.SM .owl-carousel figure.effect-sadie img.arrowBtn {
    width: 16%!important;
}

.gallery h2 {
    margin-bottom: 30px;
    font-weight: 400;
}


.spto img {
    margin: 5px 0 35px 0;
}














/* NJ Mobile Media RULES */

@media (min-width: 0px) and (max-width: 690px) {
  
    .mainlogo {
    width: 160px;
    position: relative;
    top: 6px;
}
    
        .l2-1 img,
         .l1 img,
     .l2 img,
     .l3 img,
     .l4 img
    {
    width: 15px;
}
  
    .spto img {
    margin: 5px 0 15px 0;
}
    
    
 .l1 {
    position: absolute;
    left: 83px;
    z-index: 100;
    top: 158px;
}
    
 .l2 {
    position: absolute;
    left: 60px;
    z-index: 100;
    top: 210px;
}
   
  .l2-1 {
    position: absolute;
    left: 84px;
    top: 180px;
}
  
    
    
.l3 {
    position: absolute;
    left: 138px;
    z-index: 100;
    top: 210px;
}
    
    
    
    
.l4 {
    position: absolute;
    left: 115px;
    z-index: 100;
    top: 250px;
}  
    
    
    
    
/*   home page  */
    
    .flxgroupParent {
    display: block;
    padding: 20px 0;
}
    
   #banner-fluid .Bannertxtholder {
    position: absolute;
    top: 170px;
    text-align: center;
}

#banner-fluid .Bannertxtholder h1 {
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    font-family: 'Crimson Text', serif;
}
    

  .topnav {
    display: flex;
    text-align: center;
    flex-direction: column;
}
    
  
    
    .bordernd:after {
        border: none;
    }
    
    
    .cd-horizontal-timeline .events-content li.selected {
    position: relative;
    z-index: 2;
    list-style: none;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
     width: 100%;
    margin: 0 auto;
    padding: 0px;
    margin-top: 10px;
    border-radius: 20px;
}
    
    .ourReach {
    padding: 80px 25px;
    position: relative;
}
    
    
.topnav button.navbar-toggler {
    position: absolute;
    right: 0;
    background: url(../images/burger-menu.svg);
    top: -45px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}
    
    .navbar-toggler {
    padding: 5px;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}
   
    .OurServices p {
    padding: 0 10px;
    text-align: center;
}
   
    .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
    
    .dark-bg {
    padding: 0px!important;
    }
    
    
    .whoWeare {
        padding: 30px 0;
    }
    
    .lineartsm:before,.lineartsm:after,
    .lineartsm2:after, .lineartsm2:before {
        display: none;
    }
    
    .homegap {
    height: 15px;
}
    
    .tabs nav a {
    padding: 10px 0px;
    font-family: 'Crimson Text', serif;
    text-align: left;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    width: max-content;
    cursor: pointer;
}
  
    
.tabs .visible {
    visibility: visible!important;
    position: relative!important;
}
    
    .CrimsonTitle {
    font-family: 'Crimson Text', serif;
    font-size: 30px;
}
    
    .tabs {
    margin: 0px 5px;
    position: relative;
    width: 100%;
}
    
    .tabs h2.CrimsonTitle {
    font-size: 28px;
}
    
    .tabs p.homeWraptxt {
    padding-right: 0;
    line-height: 25px;
}
    
    .ourReach:before {
    content: "";
    position: absolute;
    background: url(../images/leftart.png);
    background-repeat: no-repeat;
    width: 215px;
    height: 195px;
    z-index: 1;
    left: -45px;
    background-size: cover;
    top: 740px;
}
    
    .reversedivmobile .ourreachGap {
    height: 0;
    margin-top: -155px;
}
  .ourReach:after {
    content: "";
    position: absolute;
    background: url(../images/right-art.png);
    background-repeat: no-repeat;
    width: 150px;
    height: 230px;
    z-index: 1;
    right: 0;
    background-size: cover;
    top: -15px;
}
    
    .grid figure {
   
    width: 100%;
        margin-bottom: 0;
    }
    
    figure.effect-lily figcaption > div {
    position: absolute;
    bottom: 130px;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 50%;
}
    
    .grid figure h2 {
    word-spacing: 0;
    font-weight: 300;
    font-family: 'Crimson Text', serif;
    font-size: 30px;
}
    
    .ourReachTitle, .ourSercicesTItle, h2.csrHeading,.nm h4 {
    font-size: 30px;
    }
    
    .csrTxtW {
        padding: 0;
    }
    
    .footerlinks h4 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin: 25px 0 15px 0;
}
    
    .homegap2 {
    height: 20px;
}
    
   .cd-horizontal-timeline .events-content h2 {
    font-size: 1.9rem;
    margin: 0 auto;
    display: table;
}
    
    
    .wrapper {
    height: auto;
    overflow: hidden;
}
    .tabs nav {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 30px;
}
    
    
.csrcarasoulholder .owl-prev {
    position: absolute;
    left: 0;
    background-image: url(../images/back-arrow.svg) !important;
    top: 190px;
    height: 45px;
    background-size: 35px!important;
    opacity: 1!important;
    background-color: #fff!important;
    width: 45px;
    background-repeat: no-repeat!important;
    background-position: 2px 5px!important;
}
    
    
  .csrcarasoulholder .owl-next {
    position: absolute;
    right: 0;
    background-image: url(../images/next.svg) !important;
    top: 190px;
    height: 45px;
    background-size: 15px!important;
    opacity: 1!important;
    background-color: #fff!important;
    width: 45px;
    background-repeat: no-repeat!important;
    background-position: 15px 9px!important;
} 
    
    .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 390px!important;
    list-style: none;
    padding: 0;
    z-index: 1;
    margin-bottom: 10px!important;
}
    
    .modal.js-modal.team {
    height: auto;
    max-width: 100%;
}
    .aboutwelcometxt {
    padding: 50px 10px;
    color: #666666;
}
  
    
    .name:after {
        background: #fff;
    } 
    
    
    .infrapoints {
    padding: 45px 30px;
}
    
    .infrapoints p {
        padding: 0;
    }
    
    .reversediv {
    display: flex;
    flex-direction: column-reverse;
}
    
   .ourReach {
    padding: 80px 25px 0px 25px;
    position: relative;
    text-align: center;
}
    
    .ourInfra {
    padding: 0px 0 30px 0;
}
    
    
    
    .tabs .content.visible {
    padding: 20px 5px;
    width: calc(100% - 0px);
    overflow: visible;
    opacity: 1;
}
    
    .ourReach p {
    padding-right: 0px;
}
    
    
    
    .testimonialsSection p.designation {
    font-size: 14px;
    text-transform: uppercase;
    color: #203B5A!important;
    padding: 0px;
    font-weight: 400;
    line-height: 24px;
}
    
    
    .flxgroupParent .nm {
    margin: 0;
    padding: 15px 0;
    text-align: center;
    display: inline-table;
    width: 49%;
        min-height: 105px;
}
    
    
    
    
.reversedivmobile {
    display: flex;
    flex-direction: column-reverse;
}
    
    .reversedivmobile .mapHolder {
    top: -90px;
    left: -15px;
}
   
    
    
.ourReach p {
    padding-right: 0px;
    padding-bottom: 140px;
}
    
    
    .about .Bannertxtholder h1
    {
    padding: 0 60px;
    font-size: 35px!important;
}
    
     .csr .Bannertxtholder h1,
    .servicespage .Bannertxtholder h1,
    .contactpage .Bannertxtholder h1
    {
    padding: 0 30px;
    font-size: 35px!important;
}
    
    .csr #banner-fluid .Bannertxtholder{
        top: 100px;
    }
    
       
    .home .Bannertxtholder h1
    {
    padding: 0 60px;
    font-size: 35px!important;
}
    
    .home #banner-fluid .Bannertxtholder {
    position: absolute;
    top: 32vh;
    text-align: center;
}
    
    
    .aboutwelcometxt h2 {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
	padding-top:30px;
}
    
    .awardHolder h2 {
        font-size: 30px;
    }
    
    
    ul.aboutbtsholder {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
    
    
    .awardGrid,.linetopbottom {
    border: none;;
   
}
    
    
  .topnav li.nav-item {
    margin-right: 0;
    font-size: 18px;
    letter-spacing: 0;
    margin-top: 3vh;
}  
   
   .prsmobile figcaption ul,
    .ffc figcaption ul
    {
    bottom: 100px!important;
    }
    
 
    .testimonialsSection .owl-item div {
        padding: 0 25px;
        border: none;
    }
    
    
    .csrHolder {
    padding: 50px 15px 120px 15px;
        
    }
    
    
    
  .infrapoints h3 {
    text-align: center;
    font-size: 30px;
}
    
  figure.effect-sadie h2 {
   
    top: 65%;
    }
    
    
    
    
   .csrcarasoulholder .item a {
    top: -75px;
    display: block!important;
    width: 90%;
    left: 15px;
}
    
    .footerHolder {
    padding: 15px 13px 35px 13px;
}  
    
    .FGSector h2 {
    font-size: 20px;
}
   
    .fs-5 {
    font-size: 1.25rem!important;
    padding: 0 20px;
}
    
    
    .awardHolder {
    padding: 35px 0;
    border-top: 1px solid #5CC57C;
    border-bottom: 1px solid #5CC57C;
}
    
    
    section.awardHolder.Ourteam {
    border: none;
}
    
    section.awardHolder.FGSectorholder {
    border: none;
    padding: 0;
}
    
    
    
    .popup-inner {
    
    width: 96%;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -49%);
    transform: translate(-50%, -49%);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
    border-radius: 3px;
    background: #fff;
    overflow: scroll;
    scroll-behavior: smooth;
    height: 650px;
}
    
    
    
    
    
    
/*    CSR page css*/
    
    
    
.csr10imges .swiper-wrapper {
    flex-wrap: nowrap;
}
    
  p.csrp {
    padding: 0;
    text-align: justify;
}
    
    
   .csr10imges figure.effect-sadie h2 {
    top: 254px;
    font-size: 22px;
    width: 85%;
    color: #fff;
       text-transform: capitalize;
}
    
    
/*
    .csr10imges figure.effect-sadie ul, .csr10imges figure.effect-sadie :hover ul {
    bottom: 20px;
    font-size: 14px;
    text-transform: initial;
    vertical-align: sub;
    line-height: 22px;
        text-transform: initial;
}
    
*/
    
    .csr10imges figure.effect-sadie ul, .csr10imges figure.effect-sadie :hover ul {
    bottom: -4px;
    font-size: 14px;
    text-transform: initial;
    vertical-align: sub;
    line-height: 18px;
    text-transform: initial;
}
    
  p.csrwaptxt {
    padding: 0;
}  
    
    
.csrtabholder .csr img {
    margin: 25px auto!important;
    text-align: center;
    display: flex;
}
    
    .csr .tabs nav a {
    font-size: 18px;
    padding: 5px 0;
}
    
    span.csrdarkgraytxt {
        width: 100%;
    }
    
    .tabs.csrtabdata {
    max-height: max-content;
    height: auto;
    position: relative;
}
    @media (min-width: 0px) and (max-width: 690px) {
    .tabs.csrtabdata1 {
    max-height: 590px!important;
    height: 590px!important;
    position: relative;
}
}
    
    
    .dark-bg {
    padding: 5px 0px;
    position: absolute;
    top: 0;
    z-index: 999;
    background: #203b5ac9;
    border-top: 1px solid #5CC57C;
    border-bottom: 1px solid #5CC57C;
    z-index: 999!important;
}
    
    ul.navbar-nav.me-auto.mb-2.mb-sm-0 {
    margin-top: 15vh;
}
    
    .topnav li.nav-item a {
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
}
    
    
    
    .Sectionpaddings {
    padding: 20px 10px;
}
    .margineb {
        margin-bottom: 0;
    }
    
    
    .contentPaddingEx {
    padding-top: 30px;
}
    
    .mtopm {
    padding-top: 0;
}
    
    
    
    #contactForm input.blueBtn {
    margin: 0 auto;
    display: block;
    border-radius: 0;
}
    
    
    
    .qrholder {
        text-align: center;
    }
    
    .mapaddresholder a.blueBtn {
        text-align: center;
        display: block;
    }
    
   .addh {
    text-align: center;
    padding: 40px 20px;
}
    
    
    .mapaddresholder {
    padding: 60px 0 0 0;
}
    
    .contactUs h2 {
        font-size: 30px;
    }
    
    
    .aboutbtsholder img {
    margin-right: 3px;
}
    
    
    .aboutwelcometxt.csrwelcometxt {
    padding: 50px 10px 10px 10px;
    color: #666666;
}
    
    
    .tabs .content p:last-of-type {
    padding-bottom: 0px;
    text-align: justify;
    padding-right: 8px;
}
    
    .home .tabs .content p:last-of-type {
    padding-bottom: 0px;
    text-align: left;
    padding-right: 8px;
}
    
    .csr .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 25px;
}
    
    .swiper-slide a {
    color: #5CC57C;
    font-weight: 600;
    font-family: 'Open Sans';
    display: inherit;
}
    
    .tabs .content.visible img {
    margin: 15px 0!important;
}

  .csr10imges figure.effect-sadie:hover h2 {
    top: 215px;
    height: 65px;
    width: 87%;
      font-size: 21px;
}
    
    .h2fonts {
    font-size: 22px;
    text-align: center;
}
    
    #contactForm {
    margin-top: 20px;
    padding: 0 10px;
}
    
    
    .servicespage .contentPaddingEx {
    text-align: justify;
}
    
    .events li:nth-child(1) {
    left: -60px;
    position: relative;
}
    
    .events li:nth-child(2) {
    left: -10px;
    position: relative;
}
    
   .events li:nth-child(3) {
    left: -165px;
    position: relative;
}
    
   .cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 80%;
    margin: 0 auto;
}

    ul.cd-timeline-navigation {
    display: none;
}
    
    
    .events-content ol {
    margin: 0;
    padding: 0;
    text-align: center;
}
    .events-content .bordernd {
    margin-right: 0px;
    padding: 0 30px;
}
    
    .navbar .container-fluid {
    padding-right: 0;
    padding-left: 0;
}
    
    .csr10imges .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .csr10imges .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    color: #5CC57C;
    background: #5CC57C;
    width: 13px;
    height: 13px;
}
   
    .flxgroupParent .nm h4 {
    font-size: 25px;
}
 
    
    .nav-open {
    position: absolute;
    }
    
    
    
    .events-content li.selected p {
    color: #666666;
    font-size: 15px;
    text-align: center;
    padding: 0 15px;
}
    
    
    .home .csrcarasoulholder .item a, .csrcarasoulholder .item p {
    font-size: 20px;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
    top: -70px;
    text-align: left;
    color: #fff;
    display: block;
    left: 15px;
    font-family: 'Crimson Text', serif;
    width: 91%;
}
    
    
    
    
    
/*    resource page css*/
   
    
    .saphireResourcescards .swiper-wrapper {
    flex-wrap: nowrap;
}
   
    
    
    
    
   
    
    .certificateResource .swiper-button-prev {
        left: -6px;
    }
    
    .certificateResource .swiper-button-next {
        
        right: -6px;
    }
    
    
    
    .saphireResourcescards .swiper-pagination {
    display: none;
}
    
    
    .button-group {
    margin: 20px 0;
    text-align: center;
    display: block;
}
    
    .saphireResourcescards {
    padding: 50px 0px 50px 0px;
}
    
    
    
    .certificateResource .swiper-slide span h4 {
    padding: 15px 10px 0 20px!important;
    font-size: 18px;
    color: #203B5A;
    font-weight: 400;
    font-family: 'Crimson Text', serif;
}
    
    
    section.awardHolder.gallery {
    border: none;
    padding: 0;
}
  
    
  .resource .swiper-slide span {
    border: none!important;
    text-align: center;
    font-family: 'Crimson Text', serif;
    margin: 20px;
}
    
    .about .swiper-slide span {
        border: none!important;
    }
    
    
    .swiper-slide.cardItem.mp h2 {
    top: 73%;
}
    
  .SM .owl-item .lowtitle figure.effect-sadie h2 {
    top: 77%!important;
}
    
    .saphireResourcescards figure.effect-sadie h2,
    .swiper-slide.cardItem.mp h2
    {
        font-size: 25px;
    }
    
    
    
    
   
    
}













@media only screen and (min-device-width: 768px) 
    and (max-device-width: 1024px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 2) {

        .topnav ul li {
    margin-right: -16px;
}
.topnav ul {
    margin: 0;
    padding: 0;
}
        
        
        .homegap2 {
    height: 100px;
}
        
    .wrapper {
    height: auto;
    overflow: hidden;
        }
     
    .topnav li.nav-item {
    margin-right: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    }
    
     
        .popup-inner  {
            width: 90%;
        }    
        
        
    #banner-fluid .Bannertxtholder {
    position: absolute;
    top: 180px;
    width: 100%;
    text-align: center;
    }        
        
   .flxgroupParent .nm {
    flex-grow: 1;
    flex-basis: 35%;
    margin: 0 0 0 0;
    padding: 15px 10px;
    text-align: center;
}
        
        .nm h4 {
    color: #108890;
    font-family: 'Crimson Text', serif;
    font-size: 23px;
    font-weight: 700;
}
        
        .lineartsm:before,.lineartsm:after,
    .lineartsm2:after, .lineartsm2:before {
        display: none;
    }
    
    .homegap {
    height: 15px;
}
    
    .tabs nav a {
    padding: 10px 0px;
    font-family: 'Crimson Text', serif;
    text-align: left;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    width: max-content;
    cursor: pointer;
}
  
    
    .tabs .visible {
    visibility: visible!important;
    position: relative!important;
    }
    
        
        
        
    .OurServices p {
    padding: 0 20px;
    }
        
        
        
        
    figure.effect-lily figcaption > div {
    padding: 1em; 
    }
        
    .grid figure h2 {
    word-spacing: 0;
    font-weight: 300;
    font-family: 'Crimson Text', serif;
    font-size: 18px;
}    
       
    figure.effect-lily figcaption > div {
    bottom: 70px;
    }
        
        .csrTxtW {
            padding: 0 20px;
        }    
           
        .ourreachGap {
        height: 160px;
}
      
        p.homeWraptxt {
            padding-right: 0;
        }    
        
        
      
.topnav li.nav-item a {
    letter-spacing: 0;
}
        
        
        .l1 {
    position: absolute;
    left: 217px;
    z-index: 100;
    top: 90px;
}
    
        p.csrp {
    padding: 0;
    text-align: center;
}

        
        .csr10imges .swiper-slide.cardItem {
    width: 49.9%!important;
    margin: 0!important;
    padding: 0!important;
    transform: scale(0.95);
    margin-bottom: -20px!important;
}
        
     .csr10imges figure.effect-sadie h2 {
    top: 280px;
    font-size: 35px;
    width: 85%;
    color: #fff;
    text-transform: initial;
}
        
        
/*
        .csr10imges figure.effect-sadie figcaption::before{
            height: 93%;
        }
*/
    
        .csr10imges figure.effect-sadie ul, .csr10imges figure.effect-sadie :hover ul {
    bottom: 25px;
    font-size: 14px;
    text-transform: initial;
    vertical-align: sub;
    line-height: 22px;
}
        
        
    .Sectionpaddings {
    padding: 10px 10px;
}
    .margineb {
        margin-bottom: 0;
    }
    
    
    .contentPaddingEx {
    padding-top: 30px;
}
    
    .mtopm {
    padding-top: 0;
}
    .csr .Bannertxtholder h1, 
    .servicespage .Bannertxtholder h1,
    .contactpage .Bannertxtholder h1   
        {
    padding: 0 60px;
    font-size: 35px!important;
}    
        
      .tabim img {
    width: 100%;
    margin: 15px 0px;
}
        
        .reversedivmobile {
    display: flex;
    flex-direction: column-reverse;
}
        

        span.csrdarkgraytxt {
    margin-bottom: 30px;
}
        
        .tabs.csrtabdata {
    max-height: 890px;
    height: 890px;
    position: relative;
    margin-left: 0;
}
        
        
       #contactForm {
    margin-top: 20px;
    padding: 0 20px;
} 
   
        .mapaddresholder {
    padding: 50px 0 0 20px;
}
        
        .l2-1 {
    position: absolute;
    left: 233px;
    top: 133px;
}
    
        
        .events li:nth-child(2) {
    left: 41px;
    position: relative;
}
        
        
        .events li:nth-child(3) {
    left: -90px;
    position: relative;
}
        
        ul.cd-timeline-navigation {
    display: none;
}
        
        
        .bordernd:after {
    content: "";
    position: absolute;
    border-right: none;
    right: 12px;
    height: 200px;
    width: 1px;
    top: 0;
}
        
        
   .infraimg img {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 25px;
}
        
        
        .home .r1home .tabs {
    margin-left: 0;
}
        
     
        .saphireResourcescards .swiper-wrapper {
    flex-wrap: nowrap;
}
        
    
        
        
        .button {
    display: inline-block;
    padding: 10px 5px;
    border-radius: 0;
    background: #ffffff;
    font-family: 'Open Sans';
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #203B5A;
    margin: 10px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    color: #203B5A;
    text-transform: uppercase;
    font-weight: 400;
    flex: 1;
    letter-spacing: 0.36px;
}
        
        
        
        
        
        
        
        
        
}










/* ----------- iPad Pro ----------- */

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
      
   
   .wrapper {
    height: auto;
    overflow: hidden;
}   
      
       .popup-inner  {
            width: 90%;
        }    
        
      
      
  
      
      
}



@media screen and (max-width: 1280px) and (max-height: 800px) and (min-height: 769px) {
   
    .saphireResourcescards figure.effect-sadie h2 {
        top:315px;
    }
    
    
}






/* ----------- Galaxy Tab S7 Pro ----------- */



@media only screen 
and (min-device-width: 800px) 
and (max-device-height: 1280px) 
and (min-resolution: 192dpi)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation : portrait) 

{
    
    .wrapper {
    height: auto;
    overflow: hidden;
}
    
    
    
    
    
}





/*Large screen display*/



@media screen and (min-width: 1400px) {
  p.homeWraptxt {
    padding-right: 195px;
    line-height: 25px;
}
    
    
}









/*1280 x 800*/
 @media screen and (max-width: 1280px) and (max-height: 800px) and (min-height: 769px) {
    
     .csr10imges figure.effect-sadie h2 {
    top: 338px;
    font-size: 33px;
    width: 90%;
    color: #fff;
    text-transform: initial;
    font-weight: 400;
}
     
     .events li:nth-child(2) {
    left: 105px;
    position: relative;
}
     
     .events li:nth-child(3) {
    left: 40px;
    position: relative;
}
     
   .l1 {
    position: absolute;
    left: 105px;
    z-index: 100;
    top: 105px;
} 
     
     
     
     .l2 {
    position: absolute;
    left: 75px;
    z-index: 100;
    top: 180px;
}
     
     .l2-1 {
    position: absolute;
    left: 120px;
    top: 135px;
}
     
     
     .l3 {
    position: absolute;
    left: 170px;
    z-index: 100;
    top: 170px;
}
     
     .l4 {
    position: absolute;
    left: 150px;
    z-index: 100;
    top: 245px;
}
     
     
     #banner-fluid .Bannertxtholder {
    position: absolute;
    top: 220px;
    width: 100%;
    text-align: center;
}
     
     
     p.csrp {
    padding: 10px 10px;
    text-align: center;
}
     
     .csr10imges figure.effect-sadie h2 {
    top: 300px;
    font-size: 26px;
    width: 90%;
    color: #fff;
    text-transform: initial;
    font-weight: 400;
}
    
     .csrtabholder .lineartsm:before {
    content: "";
    position: absolute;
    right: 10px;
    height: 260px;
    border-left: 2px solid #5CC57C;
    top: -40px;
}
     
     
     .lineartsm:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 3px;
    bottom: -135px;
}
     
    .csrtabholder .lineartsm2:before {
    content: "";
    position: absolute;
    right: 7px;
    height: 575px;
    border-left: 3px solid #5CC57C;
    bottom: -120px;
}
     
     .csrtabholder .lineartsm2:after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: -12px;
    top: 230px;
}
     
     span.csrdarkgraytxt {
         width: 90%;
     }
     
     
     .csr10imges figure.effect-sadie ul, .csr10imges figure.effect-sadie :hover ul {
    bottom: 0px;
    font-size: 14px;
    text-transform: initial;
    vertical-align: sub;
    line-height: 22px;
}
     
     .flxgroupParent .nm {
    flex-grow: 1;
    flex-basis: 20%;
    margin: 0 0 0 0;
    padding: 20px 7px;
    text-align: center;
}
     
     .whoWeare .lineartsm:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 102px;
    bottom: -135px;
}
     
    .cd-horizontal-timeline .events-content li.selected {
    width: 100%;
    padding: 0;
    margin: 0;
}
     
     .OurServices p {
    padding: 0 50px;
    font-size: 18px;
    text-align: center;
    margin: 20px 0;
    color: #203B5A;
}
     
     .bordernd:after {
    content: "";
    position: absolute;
    border-right: 1px solid #5CC57C;
    right: 12px;
    height: 150px;
    width: 1px;
    top: 0;
}
     
     
     .ourservices figure.effect-sadie h2 {
         font-size: 28px;
     }
     
     .ourservices .specialcase2.effect-sadie ul {
    bottom: 65px;
}
     
     .ourservices figure.effect-sadie ul {
    bottom: 100px;
}
     
     
     .testimonialsSection .owl-item div {
    border-top: 1px solid #5CC57C;
    padding-top: 20px;
    border-right: 1px solid #5CC57C;
    text-align: center;
    /* min-height: 430px; */
    min-height: 693px;
    padding: 30px 20px;
}
     
     .nm h4 {
    color: #203B5A;
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    font-weight: 700;
}
     
     
     .vintage h2 {
    top: 25%;
    transform: translate3d(0, 60px, 0);
    text-align: left;
    padding: 0px 20px;
    font-size: 17px;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    /* text-shadow: 1px 1px 1px #4e4e4e; */
    letter-spacing: 0;
}
     
     .vintage:hover h2 {
    top: -6px;
    transform: translate3d(0, 20px, 0);
}
     
     
     .vintage:hover p {
    opacity: 1;
    transform: translate3d(0, -30px, 0);
    top: 110px;
    font-size: 11px;
    line-height: 16px;
}
     
     
     .csrtabholder .lineartsm:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: #5CC57C;
    position: absolute;
    right: 3px;
    bottom: -135px;
}
     
     
     .mapaddresholder {
    padding: 50px 0 0 10px;
}
     
     
     #contactForm {
    margin-top: 20px;
    padding: 0 10px;
}
     
     .csrcarasoulholder .item a, .csrcarasoulholder .item p {
    font-size: 22px;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
    top: -80px;
    text-align: left;
    color: #fff;
    display: block;
    left: 23px;
    font-family: 'Crimson Text', serif;
    width: 90%;
}
     
     .csrcarasoulholder .owl-next {
         height: 42px;
     }
     
     
     
     .swiper-slide span {
         height: 400px;
     }
     
     
     .saphireResourcescards figure.effect-sadie h2 {
    top: 248px;
}
     
     .SM .owl-item figure.effect-sadie h2 {
    border: none!important;
    top: 230px!important;
    transform: none!important;
    -webkit-transform: none!important;
}
     
     .SM .lowtitle figure.effect-sadie h2 {
    border: none!important;
    top: 260px!important;
    transform: none!important;
    -webkit-transform: none!important;
    font-weight: 400;
}
     
     
     
     
     
     
}





/*1280 x 800*/
 @media screen and (max-width: 810px) and (max-height: 1080px) and (min-height: 769px) {
     .SM .owl-item figure.effect-sadie h2 {
      border: none!important;
     top: 70%;
     transform: none!important;
     -webkit-transform: none!important;
     font-size: 22px;
 }
     
     
    .saphireResourcescards figure.effect-sadie h2 {
    font-size: 25px;
    top: 62%;
    width: 90%;
    text-transform: initial;
    padding: 0;
    transform: none;
    border: none;
    font-weight: 400;
}
     
     .saphireResourcescards .mp figure.effect-sadie h2 {
    top: 70%;
}
     
     
}
/*privacy-policy*/
.content {
    padding-top: 120px;
    padding-bottom: 70px;
}
.content h1{
    color: #203B5A;
    font-size: 40px;
    font-family: 'Crimson Text', serif;
}
.sub-data {
    padding: 10px 0;
}
.sub-data h5{
    color: #203B5A;
    font-size: 20px;
}
.content p{
    margin-bottom: 0;
    font-size: 15px;
}
.content li{
    margin-bottom: 0;
    font-size: 15px;
}