@font-face {
    font-family: 'Roboto-Light';
    src: url(../fonts/Roboto/Roboto-Light.eot);
    src: url(../fonts/Roboto/Roboto-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/Roboto/Roboto-Light.woff) format("woff"), url(../fonts/Roboto/Roboto-Light.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'Roboto-Thin';
    src: url(../fonts/Roboto/Roboto-Thin.eot);
    src: url(../fonts/Roboto/Roboto-Thin.eot?#iefix) format("embedded-opentype"), url(../fonts/Roboto/Roboto-Thin.woff) format("woff"), url(../fonts/Roboto/Roboto-Thin.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto/Roboto-Regular.eot);
    src: url(../fonts/Roboto/Roboto-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Roboto/Roboto-Regular.woff) format("woff"), url(../fonts/Roboto/Roboto-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

body {
  font-family: 'Roboto-Light';
  font-weight: 400;
  font-size: 14px;
  background-color: #fafafa;
}

body,
html {
  height: 100%;
}

body, ul {
    margin: 0;
    padding: 0;
}
.main_div {
  /*width: 970px !important;*/
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

/**
 * =============================
 * Home Page styles
 * =============================
*/

#loading-mask {
    background-color: white;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.ph-background {
  /*position: absolute;*/
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* background-image: url("../images/home-banner.jpg"); */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  z-index: 1
}

header {
  /*background-color: rgba(106,106,106, 0.5);*/
  background-color: rgba(49,65,81,0.6) ;
  /*background-color: rgba(0,0,0,0.6);*/
  position: fixed;
  z-index: 2;
  top: 0px;
  width: 100%;
  left: 0px;
  min-height: 52px;
}

.brand {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  top: 30px;
}

ul.nav-bar > li {
  position: relative;
  display: block;
  float: left;
}

ul.nav-bar > li > a {
  color: #fff;
  text-decoration: none;
  display: inline;
  line-height: 40px;
  padding: 10px 16px;
  position: relative;
  font-family: Roboto-Regular;
  font-size: 12px;
}
ul.nav-bar > li.active > a{
  color: #13a8b4;
}
ul.nav-bar > li > a:focus,
ul.nav-bar > li > a:hover{
  color: #13a8b4;
  outline: none;
}
ul.nav-bar > li > a.active{
  color: #13a8b4;
}
ul.nav-bar > li.active > a.btn-round-lg-header,
ul.nav-bar > li > a.btn-round-lg-header:active,
ul.nav-bar > li > a.btn-round-lg-header:focus,
ul.nav-bar > li > a.btn-round-lg-header:hover {
  color: #fff;
  background-color: #13a8b4;
}

.dropdown-menu{
  background-color: rgb(49, 65, 81);
  margin-top: -1px;
  border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.dropdown-menu>li>a, .dropdown-menu h3{
  color: #fff;
  font-family: Roboto-Regular;
  font-size: 12px;
}
.dropdown-menu h3{
  padding: 3px 20px;
  font-weight: 400;
  line-height: 1.42857143;
  margin-top: 0px;
  margin-bottom: 0px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
  color: #13a8b4;
  background-color: transparent;
}

.ph_title_div {
  /*width: 700px;*/
  margin: auto;
  /*font-size: 20px;*/
  position: relative;
  /*top: 65%;*/
  /*top: 30%;*/
  /*z-index: 2;*/
  /*transform: translateY(-50%);*/
  text-align: center;
  color: #fff;
}

.ph-scroll-down {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 50px;
  width: 30px;
  /*background-image: url("../images/Mouse.png");*/
  /*background-position: 1px 1px;*/
  /*background-size: 20px 30px;*/
  z-index: 2;
  background-repeat: no-repeat;
}

/*.ph-scroll-down i {
  background-image: url("../images/Scroll-Down.png");
  position: absolute;
  width: 30px;
  height: 30px;
  color: #fff;
}*/

.hero_scroll {
  display: none;
    position: absolute;
    bottom: 0px;
    left: 50%;
    cursor: pointer;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    height: 50px;
    width: 35px;
}
.chevron {
    display: block;
    animation: mouse-down 1.5s infinite;
    -webkit-animation: mouse-down 1.5s infinite;
    color: #fff;
}
.chevron::before {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 15px;
    width: 15px;
    position: relative;
    vertical-align: top;
    top: 0;
    left: 10px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

@keyframes mouse-down {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
      -webkit-transform: translate(0, 10px);
      transform: translate(0, 10px);
  }
  100% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
  }
}
.mouse-down {
  animation-name: mouse-down;
  -webkit-animation-name: mouse-down;
}

/**
 * =============================
 * New Website styles
 * =============================
*/

#section-3, #section-5, #section-7{
  background-color: #ececec;
}
.brand_logo{
  transition: opacity 1s;
  width: 140px;
  height: 48px;
  float: left;
  background-size: 100% 100%;
  cursor: pointer;
  background-image: url(../images/logo_web.png);
  -webkit-transition: all 0.5s ease ;
  transition: all 0.5s ease ;
}
/*.brand_logo:hover{
  background-image: url(../images/logo_white.png);
  -webkit-transition: all 0.5s ease ;
  transition: all 0.5s ease ;
}*/
.image_title{
  margin: 10px 0px;
  font-size: 20px;
  font-family: 'Roboto-Regular';
}
.btn-round-lg {
    border-radius: 22.5px;
    border: solid 2px #13a8b4;
    font-family: 'Roboto-Regular';
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    font-size:14px;
    width: 220px;  
}
.btn-round-lg-common {
    -webkit-font-smoothing: antialiased;
    font-family: 'Roboto-Regular';
    width: 150px;
    color: #fff;
    border-radius: 22.5px;
    border-color: #13a8b4;
    background-color: #13a8b4;
    font-size:14px;
}
.slide__button{
    overflow:hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transition:all 1s ease 0.6s, background-color .3s ease 0s, border-color .3s ease 0s;
    transition:all 1s ease 0.6s, background-color .3s ease 0s, border-color .3s ease 0s
}
.slide__button[data-animation="button"]{
    width:0px;
    opacity:0
}
.slide__button[data-animation="button"][data-animation-complete]{
    width:200px;
    opacity:1
}
.btn-round-lg-header {
    border-radius: 22.5px;
    border-color: #13a8b4;
    background-color: transparent;
    font-size:12px;
    margin: 10px 8px;
}
.schedule-btn{
    border-color: #13a8b4;
    background-color: #13a8b4;
}
.schedule-btn:hover, .schedule-btn:focus {
    color: #fff;
    background-color: #108892 !important;
    outline: none !important;
}
.btn-round-lg-header > a{
  padding: 5px !important;
  line-height: 10px !important;
}
.btn-round-lg:hover , .btn-round-lg-header:hover, .str-button:hover,
.btn-round-lg:focus , .btn-round-lg-header:focus, .str-button:focus{
  color: #fff;
  background-color: #13a8b4;
  outline: none !important;
}
.btn-round-lg-common:hover ,
.btn-round-lg-common:focus {
  color: #fff;
  background-color: #108892;
  outline: none !important;
}
.btn-round-lg-header > a:hover{
  color: #fff !important;
}
.newContainer{
  /*width:900px;*/
  /*height: 100vh;*/
  margin-left: auto;
  margin-right: auto;
  /*padding: 80px 0px;*/
  padding: 20px 15px;
}
.img_str{
  margin: 0px auto; 
}
.str_carousel  .slick-arrow{
  width: 20px;
  height: 20px;
}
.str_carousel  .slick-prev{
  left:-55px;
  background: url(../images/SideScrollLeft.png) no-repeat;
}
.str_carousel  .slick-next{
  right:-55px;
  background: url(../images/SideScrollRight.png) no-repeat;
}
.str_carousel  .slick-prev:hover, .str_carousel  .slick-prev:focus{
  background: url(../images/SideScrollLeft.png) no-repeat;
}
.str_carousel  .slick-next:hover, .str_carousel  .slick-next:focus{
  background: url(../images/SideScrollRight.png) no-repeat;
}
.str_carousel .slick-prev.slick-disabled, .str_carousel .slick-next.slick-disabled {
    opacity: .25;
    cursor: default;
}
.str_divider{
  margin-top: 104px;
}
.str_divider2{
  margin-top: 104px;
  margin-left: 15px;
}
.slick-prev:before, .slick-next:before {
  color: transparent !important;
}
.str_p{
  font-size: 16px;
}
.str_p_p{
  font-size: 14px;
  margin-bottom: 0px;
}
.str_img{
  padding: 0px; 
}
.how_it_works_panel{
  /*background-color: #f0f6fa;*/
  border: none;
  margin-bottom: 0px;
  box-shadow: none;
}
.how_it_works_panel .panel-body{
  padding: 20px 30px;
}
.milestones_text{
  font-size: 16px;
}
.slice_text{
  font-size: 16px;
}
.milestones_p{
  font-size: 16px;
  text-align: center;
  font-family: 'Roboto-Regular';
}
.milestone_panel{
  color: #fff;
  background-color: #13a8b4;
  text-align: center;
  border-radius: 10px;
  /*border: 1px solid #13a8b4;*/
}
.milestone_panel > h1{
  font-family: 'Roboto-Regular';
}
.milestone_panel > span{
  font-size: 36px;
  font-family: 'Roboto-Regular';
}
.divider-vertical{
  /*height: 54px;*/
  /*width: 23%;*/
  margin:auto;
  font-size: 10px;
  text-align:center;
}
.divider-vertical.active{
  border-bottom: 2px solid #13a8b4; 
  /*font-size: 12px;  */
}
.tab-content.tab-content-home{
  font-size: 16px;
  /*min-height: 330px;*/
  /*display: table;*/
} 
.tab-pane.active{
/*  display: table-cell;
  vertical-align: middle;*/
}
.span_trillion{
  font-size: 40px;
  color: #13a8b4;
  font-family: "Roboto-Regular";
}
.panel-default-noborder{
  border: none;
  box-shadow: none;
}
.nav-tabs{
  border-bottom: none;
  margin-bottom: 40px;
}
.nav-tabs> li > a{
    color: #555;
    /*margin: 10px 0px;*/
    padding: 10px 5px; 
    border-radius: 0px;
    border: none;
    font-family: "Roboto-Regular";
    /*border-right: 1px solid #6a6a6a;*/
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #13a8b4;
    cursor: default;
    font-family: "Roboto-Regular";
    background-color: transparent;
    /*font-weight: bold;*/
    border: none;
    border-radius: 0px;
    /*border-right: 1px solid #6a6a6a;*/
}
.nav-tabs>li>a:hover {
    border-color: #6a6a6a;
    color: #13a8b4;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    outline: none;
}
.col-md-14{
  width: 14%;
  float: left;
  padding: 0px 10px;
  text-align: center;
  font-size: 14px;
}
.col-md-15{
  width: 15%;
  float: left;
  padding: 0px 10px;
  text-align: center;
  font-size: 14px;
}
.col-md-20{
  width: 20%;
  float: left;
  text-align: center;
  padding: 0px 15px 10px 15px;
}
.col-md-60{
  width: 60%;
  margin-left: 40%;
  float: left;
  text-align: center;
  /*padding: 10px 15px;*/
}
.milestones_img{
  width: 90%;
  margin: 0 5%;
}
.homepage_title{
    font-family: Roboto-Regular;
    color: #13a8b4;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}
.homepage_title_line{
    font-family: Roboto-Regular;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
}
.homepage_title_h3{
    font-family: Roboto-Regular;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
} 
.homepage_small_title_line{
    font-family: Roboto-Regular;
    font-size: 20px;
    font-weight: 400;
    color: #13a8b4;
}
.homepage_small_title, .homepage_small_title_edge, .homepage_small_title_line2{
    font-family: Roboto-Regular;
    font-size: 20px;
    font-weight: 400;
    /*margin-top: 0px;*/
}
.homepage_title_line, .homepage_small_title_line2{
  -webkit-transition: all 1s ease .7s;
  transition: all 1s ease .7s;
}
.homepage_title_line:before, .homepage_small_title_line2:before{
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #6a6a6a;
    position: absolute;
    top: 25px;
    left: -45px;
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease ;
    transition: all 0.5s ease ;
}
/*.homepage_title:before{
  left: calc(50% - 50px);
  top: 35px;
}*/
.homepage_title_line:before{
    left: calc(50% - 50px);
    top: 35px;
}
/*.homepage_small_title_line:before{
    left: -15px;
}*/
.homepage_title_line[data-animation="outblur"], 
/*.homepage_small_title_line[data-animation="outblur"],*/
.homepage_small_title_line2[data-animation="outblur"] {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
}
.homepage_title_line[data-animation="outblur"][data-animation-complete], 
/*.homepage_small_title_line[data-animation="outblur"][data-animation-complete],*/
.homepage_small_title_line2[data-animation="outblur"][data-animation-complete] {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
.homepage_title_line[data-animation="outblur"]:before,
/*.homepage_small_title_line[data-animation="outblur"]:before,*/
.homepage_small_title_line2[data-animation="outblur"]:before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 0;
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
}
.homepage_title_line[data-animation="outblur"][data-animation-complete]:before,
/*.homepage_small_title_line[data-animation="outblur"][data-animation-complete]:before,*/
.homepage_small_title_line2[data-animation="outblur"][data-animation-complete]:before {
    width: 100px;
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
.process6 {
  /*d: path('M 480 10 L 480 40 L 80 40 L 80 20 L 70 20 L 80 10 L 90 20 L 80 20');*/
  stroke:#5f7f94; 
  fill:none;
  stroke-width: 1px; 
  stroke-dasharray: 1300px;
  animation-name: dash;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  -webkit-animation-name: dash;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -moz-animation-name: dash;
  -moz-animation-duration: 2s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: 1;
}
@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1300px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@-moz-keyframes dash {
  from {
    stroke-dashoffset: 1300px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 1300px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
.process1:before, .process2:before, .process3:before, .process4:before{
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #6a6a6a;
    position: absolute;
    top: 10px;
    right: 5px;
    opacity: 1;
}
.process1, .process2, .process3, .process4, .process5, .process7{
  -webkit-transition: all 0.8s ease .4s;
  transition: all 0.8s ease .4s;
}
.homepage_p{
    font-size: 16px;
}
.tab-content-featured .homepage_p{
  /*min-height: 60px;*/
  margin: 30px 0px;
}
.slick-arrow {
    display: none!important;
}
.slick-slide, .slick-slide a {
    outline: none !important;
}
.z-smart-content-new {
    line-height: 120px;
    /* cursor: pointer; */
}
.z-smart-content-new img {
    vertical-align: middle;
    display: inline-block;
    height: 80px;
}
.z-smart-content-new.slick-active img {
    height: 110px;
}
.footer {
    background-color: #314151;
    /*padding: 15px 0 20px;*/
    line-height: 18px;
    font-family: Roboto-Regular;
}
.footer .footer-inner {
    /*padding: 0 30px 15px;*/
    border-bottom: 1px solid #888;
    overflow: hidden;
}
.footer .footer-grid {
    float: left;
    margin-right: 18px;
    width: 23%;
}
.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    font-style: normal;
}
.footer-wrapper {
    /*width: 1025px;*/
    /*width: 900px;*/
    margin: 0 auto;
}
.footer ul {
    margin: 0 0 10px;
    padding: 0;
}
.footer ul li {
    list-style-type: none;
    line-height: 20px;
}
.footer ul li a {
    color: #fff;
    text-decoration: none;
}
.footer ul li a:hover {
  color: #13a8b4;
}
.footer-p {
    margin: 10px 0 0 0;
    color: #fff;
    line-height: 16px;
    font-size: 12px;
}
.footer-connect-div{
  padding-bottom: 10px;
}
.footer-social-links{
  margin-top: 0px;
  margin-bottom: 10px;
}
.footer-copyright{
    font-size: 9px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #fff;
}
.footer .fa, .str-contact-us .fa {
  padding: 6px;
  font-size: 14px;
  width: 26px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  color: #fff;
}
.footer .fa:hover, .str-contact-us .fa:hover {
    opacity: 0.7;
}
.fa-facebook {
  background: #3B5998;
}
.fa-youtube {
  background: #bb0000;
}
.fa-linkedin {
  background: #007bb5;
}
.fa-google-plus {
  background: #dd4b39;
}
.str-map{
  color: #13a8b4;
  text-decoration: none;
}
.str-map:hover{
  color: #fff;
  text-decoration: none; 
}


/**
 * =============================
 * New Landing Page styles
 * =============================
*/

.close-button{
  cursor: pointer;
  top: 0%;
  right: 0%;
  font-size: 20px;
  float: right;
  padding-bottom: 5%;
  opacity: 1;
}
body.modal-open{
  padding-right: 0px !important;
  overflow: hidden !important;
}
.modal-dialog{
  top: calc((100% - 575px)/2);
  /*width: 700px;*/
}
.modal-footer button{
  background-color: #13a8b4;
  color: #fff;
}
.modal-footer button:hover{
  color: #000;
}
.modal-content{
  border-radius: 20px;
  padding: 5px;
  /*background-color: #13a8b4;*/
}
.modal-header{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #fff;
  border-bottom: none;
}
.modal-body{
  font-size: 16px;
  background-color: #fff;
}
.modal-footer {
    padding: 7px 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top: none;
    background-color: #fff;
}
.modal-title{
  font-family: Roboto-Regular;
  font-weight: 400;
  font-size: 24px;
  /*color: #13a8b4;*/
}
/*.modal-title-sch{
  font-family: Roboto-Regular;
  font-weight: 400;
  font-size: 20px;
  color: #13a8b4;
}*/

.str-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*display: block;
  position: relative;*/
  background:  url('../images/Banners/Mobile-banner.jpg') center no-repeat;
  /*text-align:center;*/
  background-size: cover;
}
.aif-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*display: block;
  position: relative;*/
  background:  url('../images/Banners/aifMobile-banner.jpg') center no-repeat;
  /*text-align:center;*/
  background-size: cover;
}

.pms-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*display: block;
  position: relative;*/
  background:  url('../images/Banners/pmsMobile-banner.jpg') center no-repeat;
  /*text-align:center;*/
  background-size: cover;
}

.mg2-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*display: block;
  position: relative;*/
  background:  url('../images/Banners/mg2_mobile_banner.jpg') center no-repeat;
  /*text-align:center;*/
  background-size: cover;
}
.nvy-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*background:  url('../images/Jakkur/JakkurMBanner.jpg') center no-repeat; */
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url("../images/Jakkur/JakkurMBanner.jpg") center center no-repeat;
  background-size: cover;
}
.nvy-last-section{
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  background:  url('../images/Jakkur/AboutBannerM.jpg') center no-repeat;
  background-size: cover;
}
.careers-section-1{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:  url('../images/Careers/CareersMBanner.jpg') center no-repeat;
  background-size: cover;
}
.str_title_banner{
  font-family: Roboto-Regular;
  font-size: 40px;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 20px;
  /*color: #13a8b4;*/
  text-shadow: 2px 2px 2px #000000;
}
.pms_title_banner{
  font-family: Roboto-Regular;
  font-size: 40px;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 20px;
  color: rgba(49, 65, 81, 0.6) ;
  /*text-shadow: 2px 2px 2px #000000; */
}
.str_title_big{
  font-size: 80px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 0px;
  color: #13a8b4;
  line-height: 1.1;
}
.str_title, .str_title_h3{
  font-size: 80px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0px;
  color: #13a8b4;
}
.str_title{
  font-size: 60px;
  margin-bottom: 0;
}
.str_title_h3{
  font-family: Roboto-Regular;
  font-size: 30px;
  color: inherit;
  margin-bottom: 30px;
  -webkit-transition: all 1s ease .7s;
  transition: all 1s ease .7s;
}
.str_title_h3[data-animation="outblur"] {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
}
.str_title_h3[data-animation="outblur"][data-animation-complete]{
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
.str_p_span{
  /*font-family: Roboto-Regular;*/
  font-weight: 700;
}
.str-p-pointers{
  font-size: 18px;
  padding: 12px 10px 2px 10px;
}
.str-p-pointers:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 20px;
  left: 5px;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  border: 2px solid #13a8b4;
}
.str-button{
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto-Regular';
  width: 150px;
  border-radius: 22.5px;
  border-color: #13a8b4;
  font-size:14px;
  color: #13a8b4 ;
  background-color: #fff ;
}
.str-panel-img{
  margin:auto;
}
#section-5 .str-left-div{
  margin-bottom: 20px;
}
#section-5 .str-right-div .str_title_h3{
  display: none;
}
#section-3 .str-left-div .req-acc-btn{
  display: none;
}
.hide-content{
  display: none;
}
#modal-content-2{
  /*margin-top: -15px;*/
}

.checkbox input[type=checkbox]{
  margin-left: 0px;
}
.checkbox label{
  text-align: left;
  cursor: default;
}
.checkbox label a{
  color: #13a8b4;
}

/**
 * =============================
 * New Website other page styles 
 * =============================
*/
.str-section-schedule, .str-contact-us, .str-section-padding-top{
  padding: 40px 0px 0px 0px;
}
.str-warning-msg{
  font-size: 14px;
  color: red;
}
.help-block {
    margin-top: 0px;
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 5px;
    text-align: left;
}

.map{
  margin-bottom: 30px;
}
.str-contact-us h5{
  font-family: Roboto-Regular;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
}
.intl-tel-input {
    position: relative;
    display: inline-block;
    width: 100%;
}
.mt0{
  margin-top: 0px;
}

#show_more{
  display: none;
}
.press_carousal img{
  width: 130px;
  margin: auto;
}
.reviews-test-context .reviews-test-context-inner{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0px 30px;
  background-color: rgba(19,168,180,0.04);
}
.reviews-test-context{
  display: table;
  min-height: 250px;
  /*background-color: rgba(19,168,180,0.04);*/
}
.reviews-test-context-left div{
  /*padding-right: 0px;*/
  /*background: url('${contentPath}/static/so_new/images/test-1.jpg') center no-repeat;*/
  /*background-size: cover;*/
  min-height: 250px;
}
.reviews-panel{
  text-align: center;
  background-color: rgba(19,168,180,0.04);
  margin: 30px 20px; 
}
.play-btn{
  position:absolute; 
  top:25%; 
  left:50%;
  transform: translate(-50%, -50%);
}

.error_h3{
  font-family: Roboto-Regular;
  font-size: 24px;
  font-weight: 400;
  color: #13a8b4;
}

.support_ul li{
    font-size: 17px;
    word-break: break-word;
}
.support_ul{
    padding-left: 20px;
    margin-bottom: 20px;
}
.support_h3{
    font-family: Roboto-Regular;
    font-size: 20px;
    font-weight: 400;
    /*margin-bottom: 40px;*/
}
.header-select{
    font-size: 12px;
    background-color: rgba(19,168,180,1);
    color: #fff;
    border: none;
    margin: 0px 5px;
    width: calc(100% - 10px);
}
.header-select option{
    background-color: #fff;
    color: #555;
}

.support_banner{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 500px;
    background: url('../images/Banners/T&CBanner-mobileNew.jpg') center no-repeat ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.support_tab{
    /*padding: 30px;*/
    margin-top: 100px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    /*border: 1px solid #dadada;*/
}
.loadersmall {
  border: 5px solid #f3f3f3;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
main{
  height: 100%;
  position: relative;
}

.p-sub-content a{
  color: #13a8b4;
  text-decoration: underline;
}

/**
 * =============================
 * New Website + Landing page styles - RESPONSIVE
 * =============================
*/
@media (max-width:350px){
  .nav-tabs> li > a{
    padding: 10px 2px;
  }
  .divider-vertical.active {
    /*font-size: 11px;*/
  }
  
}

@media (max-width:767px) and (max-height:400px) {

  header.open-nav ul.nav-bar {
    padding-top: 0px;
  }
  ul.nav-bar > li > a span {
    display: inline;
  }
}

@media (max-width: 450px){
  .support_banner{
    height: 300px;
    background: url('../images/Banners/T&CBanner-mobile450.jpg') center no-repeat ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}

@media (max-width: 767px){
  /*.newContainer{
    padding: 20px 10px;
  }*/
  .dubai-sec{
    padding: 20px 10px;
  }
  ul.nav-bar > li > a.btn-round-lg-header{
    padding: 6px 12px;
  }
  .dropdown-menu{
    padding: 0px;
  }
  .dropdown-menu>li>a{
    padding: 10px 20px;
  }
  .dropdown.open .dropdown-menu{
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    margin-left: 10px;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .no-scroll{
    overflow: hidden !important;
  }
  .mobile_overlay {
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      z-index: 1031;
  }
  .show_overlay{
    display: block;
  }
  .btn-round-lg{
    margin-bottom: 10px;
  }
  .btn-round-lg-common, .str-button{
    float: none !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  #btn-opp, #str_process{
    display: none;
  }
  .ph_title_div {
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
    /*width: 31%;*/
    /*border: 1px solid #13a8b4;*/
    border-bottom: 2px solid #ececec;
  }
  .form_image{
    display: none !important;
  }
  .navbar_header{
    /*background-color: rgba(0, 0, 0, 0.5);*/
    background-color: rgb(49,65,81);
    height: 50px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100vw;
  }
  .navbar-body {
    z-index: 55555 !important;
    position: fixed;
    height: 100%;
    /*width: 50%;*/
    width: 170px;
    overflow: hidden;
    padding-left: 15px;
    margin-top: -1px;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    background-color: rgb(49,65,81);
    transform: translate3d(-28em, 0, 0);
    -webkit-transform: translate3d(-28em, 0, 0);
    transition: transform 300ms ease;
    -webkit-transition: transform 300ms ease;
  }
  .open-nav .navbar-body {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  .ph-call {    
    width: 50px;
    height: 50px;
    float: right;
    padding: 10px 10px;
  }
  .col-md-20{
    width: 100%;
    text-align: -webkit-auto;
  }
  .process8{
    /*text-align: center;*/
    color: #13a8b4;
  }
  .process8 .homepage_small_title:before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: #6a6a6a;
    position: absolute;
    top: 25px;
    left: 15px;
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease ;
    transition: all 0.5s ease ;
  }
  .homepage_p{
    text-align: center;
  }
  .homepage_title_line, .homepage_title_h3{
    text-align: center;
  }
  .tab-content.tab-content-home{
    text-align: center;
  }
  .tab-pane-img{
    width: 60px;
  }
  .milestone_panel > h1{
    margin-top: 0px;
  }
  /*#section-2 .panel-default-noborder{
    margin-bottom: 10px;
  }*/
  .process1:before, .process2:before, .process3:before, .process4:before{
    content: none;
  }
  .col-md-60{
    width: 8.33333333%;
    margin-left: 0px;
  }
  .str-contact-us{
    padding: 80px 0px 0px 0px;
  }
  header{
    /*position: absolute;*/
    position: fixed;
    background-color: transparent;
    
    width: 50%;
  }
  header.open-nav {
    z-index: 1032;
  }
  nav.container {
    padding: 0px;
  }
  .dropdown-backdrop{
    display: none;
  }
  .nav-tabs{
    border-bottom: 1px solid #d1cfcf;
  }
  .ph-title,
  .ph-scroll-down {
    display: none;
  }
  .ph-items-wrap {
    justify-content: center;
  }
  li.ph-call a {
    position: absolute;
    right: 15px;
    top: 0px;
  }
  li.ph-call a span {
    display: none !important;
  }
  .icon {
    display: inline;
    background-color: transparent;
    border: 0;
    height: 40px;
    width: 45px;
    cursor: pointer;
    position: relative;
    top: 5px;
    left: 10px;
  }
  .icon:focus{
    outline: none;
  }
  .icon span {
    display: block;
    height: 4px;
    width: 33px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    /*left: 23px;*/
    -webkit-transition: -webkit-transform 0.5s;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }
  .icon span:first-child {
    top: 7px;
  }
  .icon span:nth-child(2) {
    top: 18px;
  }
  .icon span:last-child {
    top: 29px;
  }
  .icon.on span{
    background-color: #13a8b4;
  } 
  .icon.on span:first-child {
    width: 23px;
    left: 11px;
  }
  .icon.on span:last-child {
    width: 23px;
    left: 11px;
  }
  .web-view {
    display: none !important;
  }
  .footer-navigate{
    padding: 0px;
  }
  .footer-connect-div{
    padding: 0px;
    padding-bottom: 10px;
  }
  .footer ul li{
    line-height: 30px;
  }
  .footer ul li a{
    padding: 7px 0px;
  }
  .how_it_works_panel {
    background-color: transparent;
  }

  .str_title_big, .str_title_h3{
    text-align: center;
  }
  #section-5 .str-right-div{
    padding-left: 30px;
  }
  #section-7 .str_title_h3{
    font-size: 30px;
  }

  
 
  /*.str_title_big:before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #6a6a6a;
    position: absolute;
    left: calc(50% - 50px);
    top: 80px;
  }*/
  .press_carousal .slick-prev{
    left: 0px;
  }
  .press_carousal .slick-next{
    right: 0px;
  }
  .news_table.table-responsive{
    border:none;
  }
  .news_table .homepage_p{
    text-align: left;
  }
  .reviews-carousel-div .slick-prev, .reviews-carousel-div .slick-next{
    top: 25%;
  }
  .reviews-panel-sec{
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .support_ul li{
    font-size: 16px;
  }
  .support_h3{
      font-size: 18px;
  }

}

@media (min-width: 768px) {
  .str-section-1{
    background:  url('../images/Banners/Banner1.jpg') center no-repeat;
    background-size: cover;
  }
  .aif-section-1{
    background:  url('../images/Banners/aifBanner1.jpg') center no-repeat;
    background-size: cover;
  }
  .pms-section-1{
    background:  url('../images/Banners/pmsBanner.jpg') center no-repeat;
    background-size: cover;
  }

  .mg2-section-1{
    background:  url('../images/Banners/mg2_banner.jpg') center no-repeat;
    background-size: cover;
  }
  .nvy-section-1{
    background:  url('../images/Jakkur/JakkurBanner1.jpg') center no-repeat;
    background-size: cover;
  }
  .nvy-last-section{
    background:  url('../images/Jakkur/AboutBanner.jpg') center no-repeat;
    background-size: cover;
  }
  .careers-section-1{
    background:  url('../images/Careers/CareersBanner.jpg') center no-repeat;
    background-size: cover;
  }
  .hero_scroll{
    display: block;
  }
  ul.nav-bar > li > a.btn-round-lg-header{
    padding: 5px 8px;
  }
  .footer-wrapper{
    width: 700px;
  }
  .footer-connect-div{
    text-align: right;
    padding-bottom: 0px;
  }
  .footer-connect{
    display: inline-block;
    text-align: left; 
  }
  .footer-social-links{
    margin-top: 20px;
  }
  .footer-support-div{
    text-align: center;
  }
  .footer-support{
    display: inline-block;
    text-align: left;
  }
  .footer-support-div:before {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0px;
  }
  .footer-support-div:after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0px;
  }
  .icon, .ph-call{
    display: none;
  }
  .ph_title_div {
    width: 700px;
    /*top: 50%;*/
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -o-transform: translateY(30%);
    -ms-transform: translateY(30%);
  }
  nav.container {
    padding: 0px;
    width:750px;
  }
  .main_div {
    width: 750px !important;
  }
  .newContainer {
    width: 700px;
    padding: 40px 0px;
  }
  .nav-tabs> li > a{
    padding:10px 0px; 
  }
  .tab-content.tab-content-home{
    font-size: 18px;
    /*min-height: 330px;*/
  } 

  .homepage_p, .milestones_p{
    /*font-size: 20px;*/
    font-size: 18px;
  }
  .divider-vertical{
    font-size: 18px;
    width: 25%;
    height: 54px;
  }
  .homepage_title_h3{
    font-size: 24px;
  }
  .z-smart-content-new {
    line-height: 200px;
  }
  .z-smart-content-new.slick-active img {
    height: 80px;
  }
  .z-smart-content-new img {
      height: 45px;
  }
  .brand_logo{
    /*width: 100px;*/
    background-image: url(../images/logo_web.png);
  }
  .logo-big{
    width: 500px;
    margin: 0px auto;
  }
  ul.nav-bar {
    display: block;
    width: 100%;
    margin-bottom: 0px;
    /*list-style-type: none;*/
    /*float: left;*/
    /*vertical-align: middle;*/
    /*position: relative;*/
    /*margin-top: 2px;*/
    /*overflow: hidden;*/
    padding: 0px;
    line-height: 1px;
  }
  ul.nav-bar > li {
    float: left;
  }
  ul.nav-bar > li > a {
    line-height: 54px;
    padding: 24px 10px;
  }
  .btn-round-lg-header {
    border-radius: 10px;
    margin: 10px 3px;
    padding: 6px 3px;
  }
  .btn-round-lg-header > a{
    padding: 5px 0px !important;
  }
  .span_trillion{
    font-size: 80px;
  }
  /*.homepage_title:before{
    left: 0px;
  }*/
  .homepage_title_line:before{
      left: 0;
  }
  /*.homepage_small_title_line:before{
      left: -30px;
  }*/
  .image_title{
    font-size: 24px;
  }
  .slice_text{
    font-size: 20px;
  }
  .str_p{
    font-size: 18px;
    min-height: 150px;
  }
  .divider-vertical{
    font-size: 14px;
  }
  .divider-vertical.active{
    border-bottom: 1px solid #13a8b4;  
    font-size: 14px;
  }
  .nav-tabs> li > a{
    padding: 10px 15px; 
    border-right: 1px solid #6a6a6a;
  }
  .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    border-right: 1px solid #6a6a6a;
  }
  .nav-tabs .divider-vertical:last-child >a {
    border-right:none !important;
  }
  .milestones_text{
    margin-bottom: 25px;
    min-height: 56px;
  } 
  .process1[data-s-animation="outblur"], 
  .process2[data-s-animation="outblur"],
  .process3[data-s-animation="outblur"], 
  .process4[data-s-animation="outblur"],
  .process5[data-s-animation="outblur"],
  .process7[data-s-animation="outblur"]{
      opacity: 0;
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
  }
  .process1[data-s-animation="outblur"][data-animation-complete],
  .process2[data-s-animation="outblur"][data-animation-complete],
  .process3[data-s-animation="outblur"][data-animation-complete],
  .process4[data-s-animation="outblur"][data-animation-complete],
  .process5[data-s-animation="outblur"][data-animation-complete],
  .process7[data-s-animation="outblur"][data-animation-complete]{
      opacity: 1;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
  }
  .process1[data-s-animation="outblur"]:before,
  .process2[data-s-animation="outblur"]:before,
  .process3[data-s-animation="outblur"]:before,
  .process4[data-s-animation="outblur"]:before{
      width: 0;
      opacity: 0;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      -webkit-transition: all 0.8s ease 0.4s;
      transition: all 0.8s ease 0.4s;
  }
  .process1[data-s-animation="outblur"][data-animation-complete]:before,
  .process2[data-s-animation="outblur"][data-animation-complete]:before,
  .process3[data-s-animation="outblur"][data-animation-complete]:before,
  .process4[data-s-animation="outblur"][data-animation-complete]:before{
      width: 40px;
      opacity: 1;
      -webkit-transform: translateX(40px);
      transform: translateX(40px);
  }
  .process8{
    display: none;
  }
  ul.nav-bar {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  ul.nav-bar > li {
    display: table-cell;
  }

  .str_title_banner{
    font-size: 80px;
  }
   .pms_title_banner{
    font-size: 80px;
  }
  .str-button-right{
    text-align: left;
  }
  .str-button-left{
    text-align: right;
  }
  .str-left-div{
    text-align: right; 
    padding: 0px 30px 0px 0px;
  }
  .str-right-div{
    padding: 0px 0px 0px 30px;
    border-left: 1px solid #6a6a6a;  
  }
  #section-5 .str-left-div{
    text-align: center; 
    padding: 0px;
  }
  #section-5 .str-right-div{
    border-left: none;  
  } 
  .str_title{
    font-size: 80px;
    margin-bottom: 0;
  }
  .str_title_big{
    font-size: 100px;
  }
  .str_title_h3{
    font-size: 30px;
  }
  .flex-div{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  .modal-dialog{
    width: 700px;
  }
  #section-3 .str-left-div .req-acc-btn{
    display: inline-block;
  }
  #section-3 .str-right-div .req-acc-btn{
    display: none;
  }

  /*.str-section-schedule .newContainer{
    width: 800px;
  }*/
  .str-section-schedule form{
    width: 300px;
    margin-right: 0px;
    margin-left: auto;
  }

  .str-section-schedule .homepage_p{
    font-size: 18px;
  }
  .press_carousal img{
    width: 100px;
  }
  .reviews-test-context-left div{
    min-height: 350px;
  }
  .reviews-test-context{
    min-height: 350px;
  }
  .play-btn{
    top:50%; 
  }
  .reviews-test-context-left{
    padding-right: 0px;
    left: 1px;
    /*background: url('${contentPath}/static/so_new/images/test-1.jpg') center no-repeat;*/
    /*background-size: cover;*/
    /*min-height: 350px;*/
  }
  .reviews-panel{
    margin: 40px 20px; 
  }
  .reviews-panel-sec{
    margin-top: 60px;
  }
  .reviews-test-context{
    background-color: rgba(19,168,180,0.04);
  }
  .reviews-test-context .reviews-test-context-inner{
    background-color: transparent;
  }

  .support_banner{
      background: url('../images/Banners/T&CBannerNew.jpg') center no-repeat ;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
  }
}

@media (min-width: 992px) {
  ul.nav-bar > li > a.btn-round-lg-header{
    padding: 6px 12px;
  }
  .main_div {
    width: 970px !important;
  }
  nav.container {
    width: 970px;
  }
  .newContainer {
    width: 900px;
  }
  .footer-wrapper {
    width: 900px;
  }
  .footer-p {
    line-height: 20px;
    font-size: 14px;
  }
  .z-smart-content-new.slick-active img {
    height: 110px;
  }
  .z-smart-content-new img {
    height: 80px;
  }
  /*.brand_logo{
    width: 140px;
    background-image: url(../images/logo.png);
  }*/
  .ph_title_div {
    width: 800px;
  }
  ul.nav-bar > li > a {
    padding: 24px 24px;
  }
  .btn-round-lg-header {
    border-radius: 22.5px;
    padding: 6px 12px;
    margin: 10px 8px;
  }
  .btn-round-lg-header > a{
    padding: 5px !important;
  }

/*  .milestone_panel{
    color: #13a8b4;
    background-color: #fff;
    border: 1px solid #13a8b4;
  }
  .milestone_panel:hover{
    color: #fff;
    background-color: #13a8b4;
  }*/
  .milestones_text{
    font-size: 20px;
  } 
  .str_p{
    min-height: 100px;
  }
  .divider-vertical, .divider-vertical.active{
    font-size: 20px;
  }
/*  .homepage_title:before{
    left: -30px;
    top: 35px;
  }
  .homepage_title:hover:before{
    left: 0px;
  }*/
  .homepage_title_line:before{
      left: calc(25% - 50px);
      top: 35px;
  }
  .homepage_title_line:hover:before{
      left: calc(30% - 5px);
  }
  /*.homepage_small_title_line:hover:before{
      left: 0px;
  }*/
  .homepage_small_title_line2:before{
      left: -60px;
  }
  .homepage_small_title_line2:hover:before{
      left: 5px;
  }
  .process1:before, .process2:before, .process3:before, .process4:before{
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #6a6a6a;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
  }
  .process1[data-s-animation="outblur"][data-animation-complete]:before,
  .process2[data-s-animation="outblur"][data-animation-complete]:before,
  .process3[data-s-animation="outblur"][data-animation-complete]:before,
  .process4[data-s-animation="outblur"][data-animation-complete]:before{
      width: 60px;
      opacity: 1;
      -webkit-transform: translateX(60px);
      transform: translateX(60px);
  }
  .insight{
    /*height: 340px;*/
    /*height: 350px;*/
    overflow-y: auto;
  }
  .insight::-webkit-scrollbar-track
  {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 10px;
    /*background-color: #F5F5F5;*/
  }
  .insight::-webkit-scrollbar
  {
    width: 4px;
    background-color: #F5F5F5;
  }
  .insight::-webkit-scrollbar-thumb
  {
    border-radius: 10px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: rgba(0,0,0,0.2);
    /*background-color: #314151;*/
  }
  .insight::-webkit-scrollbar-thumb:hover
  {
    background-color: #13a8b4;
  }
  .insight > p{
    padding-right: 5px;
  }


  .str_title{
    font-size: 100px;
    margin-bottom: 0;
  }
  /*.str_title_big{
    font-size: 120px;
  }*/
  #section-5 .str-left-div{
    text-align: right; 
    padding: 0px 30px 0px 0px;
    margin-bottom: 0px;
  }
  #section-5 .str-right-div{
    border-left: 1px solid #6a6a6a;  
  } 
  #section-5 .str-right-div .str_title_h3{
    display: block;
  }
  #section-5 .str-left-div .str_title_h3{
    display: none;
  }
  .flex-div-2{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  .press_carousal img{
    width: 130px;
  }
}

@media (min-width:1400px) {
  
  .main_div {
    width: 1300px !important;
  }
  nav.container {
    width: 1170px;
  }
  .newContainer {
    width: 1170px;
  }
  .footer-wrapper {
    width: 1170px;
  }
  ul.nav-bar > li > a {
    padding: 24px 30px;
  }
  .milestone_panel > div{
    margin-bottom: 0px;
    min-height: 56px;
  }
  .homepage_title_line:before{
      left: calc(50% - 50px);
      top: 35px;
  }
  .homepage_title_line:hover:before{
      left: calc(50% - 5px);
  }


  
  .str_title{
    font-size: 120px;
    margin-bottom: 0;
  }
  .str_title_big{
    font-size: 120px;
  }
  .press_carousal img{
    width: 160px;
  }
}