/********   https://civatree.com   *******/
* {
  box-sizing: border-box;
}

html,
body {
  width: auto !important;
  overflow-x: hidden !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-size: 16px;
  color: #858585;
  line-height: 30px;
  letter-spacing: 0.5px;
  left: 0.25px;
}

section {
  padding-top: 80px;
  padding-bottom: 60px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

h2 {
  margin-bottom: 0px;
  margin-top: 14px;
  font-size: 25px;
  font-weight: 600;
  color: #000b48;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 17px;
  letter-spacing: 2px;
  display: block;
  margin: 0px;
  color: #5eb546;
}

h4 {
  color: #000b48;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: bolder;
}

.green-button a {
  display: inline-block;
  background-color: #5eb546;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border: 2px solid #5eb546;
  transition: all 0.5s;
}

.green-button a:hover {
  background-color: transparent;
  color: #5eb546;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



/* HEADER STYLE */
.cf:before,
.cf:after {
  content: '';
  display: table;
  visibility: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

#header {
  overflow: visible;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .075);
  border: none;
  width: 100%;
  z-index: 2;
}

#primary-nav-button {
  background: transparent;
  display: none;
  position: absolute;
  border: none;
  bottom: 0;
  right: 15px;
  top: 0;
  z-index: 9;
  padding: 0;
  outline: none;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 0;
  cursor: pointer;
}

#primary-nav-button:hover {
  background: rgba(0, 0, 0, 0.05);
}

#primary-nav-button.selected {
  background: rgba(0, 0, 0, 0.1);
}

#primary-nav-button:before {
  /* content: 'â˜°'; */
  content: '\2261';
  display: inline-block;
  background-color: #5eb546;
  font-size: 36px;
  font-style: normal;
  font-weight: normal;
  width: 100px;
  height: 100%;
  line-height: 80px;
  color: inherit;
  speak: none;
  border: none;
}

#header .logo {
  float: left;
}

#header .logo img {
  max-width: 60%;
  overflow: hidden;
  margin-top: 20px;
}

.menu {
  float: right;
}

.menu li {
  float: left;
  margin-left: 30px;
  position: relative;
  line-height: 100px;
  /*was 100px*/
}

.menu li:last-child {
  margin-right: 0;
}

.menu .sub-menu li {
  width: 100%;
  margin-left: 0px;
}

.menu li a {
  display: block;
  text-decoration: none;
}

#primary-nav li a {
  color: #000b48;
  line-height: 100px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s;
}

#primary-nav li>a:hover,
#primary-nav li.selected>a,
#primary-nav li.active>a {
  color: #5eb546;
}

.sub-menu {
  border-top: 3px solid #5eb546;
}

.sub-menu li a {
  line-height: 18px !important;
  font-size: 13px !important;
  margin: 10px 0;
  color: #858585;
}

.downarrow {
  background: none;
  display: inline-block;
  padding: 0;
  text-align: center;
  min-width: 3px;
}

.sub-menu .downarrow {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 18px;
  padding-right: 10px;
}

.downarrow:before {
  content: '\25be';
  color: inherit;
  display: block;
  font-size: 1em;
  line-height: 1.1;
  width: 1em;
  height: 1em;
}

.menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  max-height: 1000px;
}

.menu .sub-menu li {
  line-height: 40px;
}

.menu .sub-menu.hide {
  display: none;
}

#primary-nav .sub-menu {
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  min-width: 160px;
  z-index: 3;
}

#primary-nav .sub-menu li {
  border-bottom: 1px solid #e9e9e9;
}

#primary-nav .sub-menu li:last-child {
  border-bottom: 0;
}

#primary-nav .sub-menu .downarrow:before {
  content: '\25b8';
}

#primary-nav.mobile {
  display: none;
  position: absolute;
  top: 100%;
  background: #fff;
  width: 100%;
  height: 350px;
  /* to make mobile menu scroll*/
  max-height: 1000px;
  overflow-y: scroll;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  right: 15px;
  left: 0;
  z-index: 99;
  -webkit-overflow-scrolling: touch;
  /*mobile safari*/
}

#primary-nav.mobile .menu {
  text-align: center;
  width: 100%;
}

#primary-nav.mobile li {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #e9e9e9;
}

#primary-nav.mobile li a {
  line-height: 70px;
}

#primary-nav.mobile li:first-child {
  width: 100%;
  margin: 0;
  border-top: 1px solid #e9e9e9;
}

#primary-nav.mobile li.selected>a {
  border-bottom: 1px solid #e9e9e9;
}

#primary-nav.mobile li:last-child {
  border-bottom: 1px solid #e9e9e9;
}

#primary-nav.mobile .sub-menu {
  float: left;
  position: relative;
  width: 100%;
}

#primary-nav.mobile .sub-menu .downarrow {
  top: 15px;
  position: absolute;
  right: 15px;
}

.mobile .downarrow,
.mobile .sub-menu .downarrow {
  position: absolute;
  top: 30px;
  right: 25px;
}

#primary-nav.mobile .sub-menu .downarrow:before {
  content: '\25be';
}

#primary-nav-button.mobile {
  display: inline-block;
}

/*** BANNER ***/
.banner {
  width: 100%;
  min-height: 80vh;
}

.banner-caption {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding: 210px 0px 60px 0px;
}

.caption-width {
  max-width: 75%;
}

.banner-caption .line-dec {
  width: 80px;
  height: 3px;
  background-color: #5eb546;
}

.banner-caption h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 2px;
  color: #f15a22;
  text-shadow: 1px 1px #000b48;
}

.banner-caption h1.migration {
  max-width: 60%;
}

.banner-caption h2 {
  font-size: 22px;
  color: #000b48;
  letter-spacing: 1.5px;
}

.banner-caption .green-button {
  margin-top: 30px;
}

/***  SERVICES OF WHAT WE OFFER ***/
.our-services {
  padding-bottom: 80px;
  border-top: 1px solid #e9e9e9;
}

.our-services-container {
  padding: 20px 0 0px 0;
  max-width: 100%;
}

.our-services-col {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

/***** Sadie Effect*****/
.grid figure {
  position: relative;
  float: right;
  overflow: hidden;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
}

.grid figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
  /*1.1em*/
  backface-visibility: hidden;
}

figure.effect-sadie figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(21, 21, 70, 0) 0%, rgba(21, 21, 70, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(21, 21, 70, 0) 0%, rgba(21, 21, 70, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}

figure.effect-sadie h3 {
  font-size: 1.5rem;
  padding-top: 1.2rem;
  bottom: 10%;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 3px #000b48;
  width: 100%;
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.2rem;
  line-height: 21px;
  margin-bottom: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p {
  color: #fff;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*** RECENT NEWS ***/
.recent-news {
  margin-top: 30px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
  border-top: 1px solid #e9e9e9;
}

.recent-news .news-item .thumb {
  position: relative;
  z-index: 1;
}

.recent-news .news-item .thumb img {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.recent-news .news-item .thumb .overlay-content {
  position: absolute;
  z-index: 9;
  top: 30px;
  left: 30px;
  color: #fff;
}

.recent-news .news-item .thumb .overlay-content li {
  display: inline;
  margin-right: 3px;
}

.recent-news .news-item .thumb .date-content {
  position: absolute;
  z-index: 9;
  top: 30px;
  right: 30px;
  color: #fff;
  text-align: center;
  width: 90px;
  height: 90px;
  display: inline-block;
  vertical-align: middle;
  background-color: #5eb546;
  border-radius: 50%;
}

.recent-news .news-item .thumb .date-content h5 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.recent-news .news-item .thumb .date-content h6 {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.5px;
}

.recent-news .news-item .down-content {
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 0px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.recent-news .news-item .down-content h4 {
  margin-top: 0px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000b48;
  margin-bottom: 5px;
}

.recent-news .news-item .down-content h5 {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #5eb546;
  margin-bottom: 15px;
}

.recent-news .news-item .down-content p {
  margin-bottom: 20px;
}

.recent-news .news-item .down-content .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.recent-news .news-item .down-content a {
  font-size: 12px;
  text-transform: uppercase;
  color: #5eb546;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.recent-news .news-item .down-content .text-button {
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #e9e9e9;
  margin: 0px -5px;
}

.recent-news .news-item .down-content .text-button a {
  font-size: 12px;
  text-transform: uppercase;
  color: #858585;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.5s;
}

.recent-news .news-item .down-content .text-button a:hover {
  color: #5eb546;
}

/*****recent news overlay*******/
#blog1,
#blog2,
#blog3,
#blog4,
#blog5,
#blog6,
#blog7 {
  position: fixed;
  overflow: scroll;
  display: none;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(249, 249, 249, 0.7);
  z-index: 3;
  cursor: default;
}

#blog1 .pop-up,
#blog2 .pop-up,
#blog3 .pop-up,
#blog4 .pop-up,
#blog5 .pop-up,
#blog6 .pop-up,
#blog7 .pop-up {
  margin: 0 auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 5px;
  width: 95%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 5s ease-in-out;
}

#blog1 .pop-up h2,
#blog2 .pop-up h2,
#blog3 .pop-up h2,
#blog4 .pop-up h2,
#blog5 .pop-up h2,
#blog6 .pop-up h2,
#blog7 .pop-up h2 {
  margin-top: 0;
  padding-bottom: 20px;
  color: #000b48;
}

#blog1 .pop-up h3,
#blog2 .pop-up h3,
#blog3 .pop-up h3,
#blog4 .pop-up h3,
#blog5 .pop-up h3,
#blog6 .pop-up h3,
#blog7 .pop-up h3 {
  padding-top: 20px;
  padding-bottom: 10px;
}

#blog1 .pop-up ul,
#blog2 .pop-up ul,
#blog3 .pop-up ul,
#blog4 .pop-up ul,
#blog5 .pop-up ul,
#blog6 .pop-up ul,
#blog7 .pop-up ul {
  list-style: none;
  /* Remove default bullets */
  margin-left: 30px;
  margin-bottom: 20px;
}

#blog1 .pop-up ul li::before,
#blog2 .pop-up ul li::before,
#blog3 .pop-up ul li::before,
#blog4 .pop-up ul li::before,
#blog5 .pop-up ul li::before,
#blog6 .pop-up ul li::before,
#blog7 .pop-up ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #5eb546;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

#blog1 .pop-up li,
#blog2 .pop-up li,
#blog3 .pop-up li,
#blog4 .pop-up li,
#blog5 .pop-up li,
#blog6 .pop-up li,
#blog7 .pop-up li {
  color: #878787;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.2px;
}

#blog1 .pop-up a,
#blog2 .pop-up a,
#blog3 .pop-up a,
#blog4 .pop-up a,
#blog5 .pop-up a,
#blog6 .pop-up a,
#blog7 .pop-up a {
  color: #f15a22;
}

#blog1 .pop-up .close,
#blog2 .pop-up .close,
#blog3 .pop-up .close,
#blog4 .pop-up .close,
#blog5 .pop-up .close,
#blog6 .pop-up .close,
#blog7 .pop-up .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

#blog1 .pop-up .close:hover,
#blog2 .pop-up .close:hover,
#blog3 .pop-up .close:hover,
#blog4 .pop-up .close:hover,
#blog5 .pop-up .close:hover,
#blog6 .pop-up .close:hover,
#blog7 .pop-up .close:hover {
  color: #5db446;
}

#blog1 .pop-up .content-blog,
#blog2 .pop-up .content-blog,
#blog3 .pop-up .content-blog,
#blog4 .pop-up .content-blog,
#blog5 .pop-up .content-blog,
#blog6 .pop-up .content-blog,
#blog7 .pop-up .content-blog {
  font-size: 12px;
}


/***** Video ******/

section.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000b48;
  padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video-art {
  background-color: #fff;
  padding: 120px 0px 0px 0px;
}

section.video-art .left-content {
  color: #000b48;
  padding-bottom: 80px;
}

section.video .left-content span,
section.video-art .left-content span {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fdb716;
}

section.video .left-content h4 {
  color: #fff;
}

section.video .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}

section.video-art .left-content h2 {
  line-height: 40px;
  margin-bottom: 20px;
}

section.video .left-content h4 em {
  font-style: normal;
  color: #fdb716;
}

section.video .left-content p {
  color: #fff;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 0;
}

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

  section.video .left-content {
    margin-bottom: 45px;
  }
}

.video-item figure {
  position: relative;
  width: 100%;
  font-size: 0;
}

.video-item figure img {
  width: 100%;
}

.video-item figure a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 60px;
  height: 60px;
  margin-top: -32.5px;
  margin-left: -32.5px;
  border-radius: 50%;
  background-color: #fdb716;
  z-index: 1;
}

.video-item figure a:after {
  content: '';
  position: absolute;
  bottom: 27.5px;
  right: 20px;
  margin-top: -12.5px;
  margin-left: -7px;
  border: solid 13px transparent;
  border-left: solid 20px;
  border-left-color: #fff;
  z-index: 1;
}

.video-item figure a:hover:before {
  background-color: #f5a425;
}

.video-item .video-caption {
  position: absolute;
  z-index: 1;
  background-color: rgba(250, 250, 250, 0.75);
  height: 80px;
  width: 100%;
  padding: 27px 30px;
  bottom: 0;
}

.video-item .video-caption h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.video-item .video-caption h4 span {
  color: #f5a425;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .video-item .video-caption h4 span {
    font-size: 12px;
  }
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*****end of video popup*****/




/**RECENT VIDEOS***/
#recent-videos {
  background-color: #f9f9f9;
}

.mb-90 {
  margin-bottom: 90px;
}

p,
.text-gray {
  color: #999;
}

.text-gray-light {
  color: #CCC;
}

.text-gray-dark {
  color: #666;
}

.video-part {
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.video-part img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.video-part figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-part figcaption::before,
.video-part figcaption::after {
  pointer-events: none;
}

.video-part figcaption,
.video-part figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-part figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.video-part h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  color: #fff;
}

.video-part h2,
.video-part p {
  margin: 0;
}

.video-part p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

.gallery div.d-block {
  animation: show .5s ease;
}

@keyframes show {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*---------------*/
/***** Ming *****/
/*---------------*/
figure.effect-ming {
  background: #030c17;
}

figure.effect-ming img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming h2 {
  font-size: 1.3em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover h2 {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-ming:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

figure.effect-ming:hover img {
  opacity: 0.4;
}

@media (max-width: 991px) {
  .container-content {
    max-width: 870px;
  }
}

@media (max-width: 575px) {
  .container-content {
    max-width: 420px;
  }
}

/**end of video styles**/



/* Modal button */
.modal-btn {
  display: inline-block;
  background-color: #5eb546;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border: 2px solid #4883ff;
  transition: all 0.5s;
}

.modal-btn:hover {
  background-color: transparent;
  color: #5eb546;
}

/* Modal */
.modal {
  background-color: rgba(0, 0, 0, .65);
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 1000;
  padding-top: 10%;
  padding-bottom: 10%;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.modal-content .section-heading {
  text-align: left;
  margin-top: 0px !important;
}

.modal-content .section-heading h2 {
  margin-top: 10px;
}

.modal-content .left-content {
  padding: 30px;
}

.modal-content .left-content input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 13px;
  color: #aaa;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  outline: none;
  box-shadow: none;
  line-height: 40px;
  height: 44px;
  width: 100%;
  margin-bottom: 10px;
}

.modal-content .left-content textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  outline: none;
  box-shadow: none;
  min-height: 140px;
  height: 160px;
  max-height: 180px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}

.modal-content .left-content button {
  display: inline-block;
  background-color: #5eb546;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 0px;
  border: 2px solid #5eb546;
  transition: all 0.5s;
}

.modal-content .left-content button:hover {
  background-color: transparent;
  color: #5eb546;
}

.modal-content .right-content {
  background-color: #5eb546;
  padding: 30px 30px 65px 30px;
  color: #fff;
  height: 100%;
}

.modal-content .right-content .section-heading h2 {
  color: #fff;
}

.modal-content .right-content .section-heading span {
  color: #fff;
}

.modal-content .right-content p {
  margin-bottom: 50px;
  color: #fff;
}

.modal-content .right-content ul li span {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 80px;
  display: inline-block;
}

.modal-content .right-content ul li a {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.modal-content .right-content ul li {
  margin: 10px 0px;
}

/* Modal Content */
.modal-content {
  position: relative;
  top: 0px;
  width: 60%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-animated-in {
  animation: totop-in .3s ease;
}

.modal-animated-out {
  animation: totop-out .3s ease forwards;
}

.modal-content .close {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  background-color: #fff;
  color: #5eb546;
  font-size: 22px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

.modal-content .close:hover {
  background-color: #fff;
  color: #5eb546;
}

/* Keyframes */
@keyframes totop-in {
  0% {
    top: 600px;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes totop-out {
  0% {
    top: 0px;
    opacity: 1;
  }

  100% {
    top: -100%;
    opacity: 0;
  }
}

@media (max-width:992px) {
  .modal-content {
    width: 90%;
  }

  .modal-content .close {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
}

.form-control {
  height: 44px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:focus,
.form-control:active {
  border-color: #000b48 !important;
}

select.form-control:not([size]):not([multiple]) {
  height: 44px !important;
}

select.form-control,
select.form-control:active,
select.form-control:checked,
select.form-control:visited,
select.form-control:focus,
select.form-control::after {
  color: #aaa;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  outline: none;
  box-shadow: none;
  line-height: 40px;
  height: 44px !important;
  width: 100%;
  margin-bottom: 10px;
}

select.form-control option {
  background-color: #f9f9f9 !important;
}

select.form-control option:hover {
  background-color: #f9f9f9 !important;
}

textarea.form-control {
  height: inherit !important;
}

.contactForm .label {
  color: #000b48;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-top: 15px;
}

.contactForm .form-control {
  border: none;
}

#contactForm .error {
  color: red;
  font-size: 12px;
}

#contactForm .form-control {
  font-size: 16px;
}

#message {
  resize: vertical;
}

#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: red;
}

#form-message-success {
  color: #5eb546;
  font-size: 18px;
  font-weight: 400;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: #000b48;
}


/*** OVERVIEW ***/
section.overview {
  background-color: #f9f9f9;
  border-top: 1px solid #e9e9e9;
}

.overview-services .left-content .green-button {
  padding-top: 40px;
}

/*** WHAT WE DO ***/
.parallax-window {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
}

.what-we-do-content {
  padding-top: 1vh;
  align-items: flex-end;
}

.bg-white {
  padding: 50px 30px 50px 30px;
  background-color: white;
  opacity: 0.85;
  width: 100%;
}

/*open side fullscreen*/
.service-overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  padding: 100px 0;
  background-color: rgba(249, 249, 249, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.service-overlay-content {
  background: #ffffff;
  border-radius: 5px;
  padding: 80px 40px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.service-overlay-content h2 {
  color: #5eb546;
}

.service-overlay-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.5px;
  color: #000b48;
  margin: 30px 0 5px 0;
}

.service-overlay-content .indentation {
  margin-top: 100px;
}

.service-overlay-content ul {
  list-style: none;
  /* Remove default bullets */
  margin-left: 30px;
  margin-bottom: 20px;
}

.service-overlay-content ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #5eb546;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

.service-overlay-content li {
  color: #878787;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.2px;
}

.service-overlay-content li b {
  font-weight: 600;
}

.service-overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: #f15a22;
  z-index: 20;
}

.service-overlay .closebtn:hover {
  text-decoration: none;
}

@media screen and (max-height: 450px) {
  .service-overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/*** MANAGEMENT TEAM ***/
.team .team-item .thumb {
  overflow: hidden;
  position: relative;
  margin-top: 34px;
}

.team .team-item .thumb img {
  width: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.team .team-item .thumb:hover img {
  transform: scale(1.1);
}

.team-item .thumb .overlay {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.team-item .thumb .overlay .social-icon {
  position: relative;
  top: 45%;
  padding: 0;
  margin: 0;
  text-align: center;
}

.team-item .thumb .overlay .social-icon li {
  display: inline-block;
  list-style: none;
}

.team-item .thumb .overlay .social-icon li a {
  background: #ffffff;
  color: #191919;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: relative;
  margin: 4px 8px 0 8px;
}

.team-item .thumb .overlay .social-icon li a:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.team-item .thumb:hover .overlay {
  opacity: 1;
}

/*** Team down-content****/
.team .team-item .down-content {
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 0px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.team .team-item .down-content h4 {
  font-size: 17px;
  font-weight: 200;
  color: #000b48;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.team .team-item .down-content h4 b {
  font-weight: 700;
}

.team .team-item .down-content h5 {
  font-size: 13px;
  font-weight: 300;
  color: #5eb546;
  letter-spacing: 1px;
  display: block;
}

.team .team-item .down-content p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 28px;
}

.team .team-item .down-content .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.team .team-item .down-content .text-button {
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #e9e9e9;
  margin: 0px -5px;
  padding-left: 0px;
  padding-right: 0px;
}

.team .team-item .down-content .text-button a {
  font-size: 12px;
  text-transform: uppercase;
  color: #858585;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
}

.team .team-item .down-content .text-button a:hover {
  color: #5eb546;
}

/***overlay team description ---Popup box BEGIN *******/
.hover_bkgr,
.hover_bkgr2 {
  background: rgba(0, 0, 0, .4);
  box-shadow: -1px 1px 6px #000;
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 88%;
  z-index: 10000;
}

.hover_bkgr .helper,
.hover_bkgr2 .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr>div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 80%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
  font-size: 12px;
  line-height: 18px;
}

.hover_bkgr2>div {
  background-color: #fff;
  box-shadow: 5px 5px 30px #555;
  display: inline-block;
  height: 80vh;
  margin: 20px 0;
  max-width: 551px;
  max-height: 400px;
  vertical-align: middle;
  width: 80%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
  padding-bottom: 40px;
  font-size: 12px;
  line-height: 18px;
}

.popupCloseButton {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 28px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton:hover {
  background-color: #ccc;
}

.trigger_popup_fricc {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.hover_bkgr2 .content {
  max-height: 100%;
  height: 100vh;
  overflow-y: scroll;
}

/************CAREERS*************/

.careers {
  margin-top: 30px;
  padding-bottom: 80px;
  background-color: #ffffff;
  border-top: 1px solid #e9e9e9;
}

.career-img {
  background-image: url("../images/it-professional-600x400.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}

.service-overlay a,
.service-overlay a:hover {
  color: #f15a22;
}

a.job {
  color: #fff !important;
}

a:hover.job {
  color: #000b48 !important;
}

/*** WHITE PAPERS and HYBRID CASES***/
#hybrid {
  background-color: #f2f2f2;
}

.bg-white {
  background-color: #FFFFFF;
}

.hybrid-img {
  background-image: url("../images/hybrid-cloud-solution-600x400.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}

.whitepapers-big {
  margin-bottom: 60px;
}

.whitepapers-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px;
}

.bg-gray {
  background-color: #F2F2F2;
}

.whitepapers-img {
  background-image: url("../images/white-papers-cloud-600x400.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}

.whitepapers-img2 {
  background-image: url("../images/white-papers-sap-practices-600x400.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}

.whitepapers-img3 {
  background-image: url("../images/white-papers-sap-landscape-600x400.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}

.mb-30 {
  margin-bottom: 20px;
}

/*** CASE STUDIES ***/
.media-boxes {
  max-width: 930px;
  margin: 0 auto;
}

.media {
  margin-bottom: 35px;
}

.media-body {
  display: flex;
  flex-direction: row;
  background-color: #FFF;
}

.description-box {
  padding: 30px 50px;
}

.description-box h3 {
  padding-bottom: 20px;
}

.media-body .green-button {
  align-self: center;
  position: absolute;
  right: 50px;
}

/*** PARTNERS ***/
.partners {
  padding-bottom: 80px;
  background-color: #f9f9f9;
  border-top: 1px solid #e9e9e9;
}

.color {
  background-color: #fff;
}

.partners .partner-content {
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 0px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 20px;
}

.partners .partner-content img {
  padding-bottom: 20px;
}

.partners .partner-content h4 {
  margin-top: 0px;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000b48;
  text-align: center;
  margin-bottom: 5px;
}

.partners .partner-content a {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #5eb546;
  text-align: center;
  margin-bottom: 15px;
}

.partners .partner-content .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.partners .partner-content .text-button {
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #e9e9e9;
  margin: 0px -5px;
}

.partners .partner-content .text-button a {
  font-size: 12px;
  text-transform: uppercase;
  color: #858585;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.5s;
}

.partners .partner-content .text-button a:hover {
  color: #5eb546;
}


/*** CONTACT FOOTER ***/
.contact-us {
  /*display: table;*/
  width: 100%;
  padding: 80px 0px 70px 0px;
  border-top: 1px solid #e9e9e9;
}

.contact-us .contact-item {
  text-align: center;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 50px 30px;
  margin-bottom: 20px;
}

.contact-us .contact-item .icon img {
  max-width: 100%;
}

.contact-us .contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000b48;
  margin-top: 30px;
  margin-bottom: 15px;
}

.contact-us ul li {
  color: #858585;
  font-weight: 600;
  font-size: 13px;
  margin: 10px 0px;
  text-align: left;
  letter-spacing: 0.3px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact-us ul li a {
  color: #5eb546;
  font-weight: 300;
  font-size: 13px;
  /*text-align:left;*/
  letter-spacing: 0.5px;
  text-decoration: none;
}

.contact-us ul li a span {
  font-size: 11px;
}

.contact-us .social-icons {
  padding-top: 8px;
  text-align: center !important;
}

.contact-us .social-icons a {
  width: 32px;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  background-color: #e9e9e9;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  margin-right: 3px;
  transition: all 0.5s;
}

.contact-us .social-icons a:hover {
  background-color: #5eb546;
}


/*** FOOTER ***/
footer {
  border-top: 1px solid #e9e9e9;
  background-color: #fff;
}

footer p {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 0px;
  padding: 30px 0px;
  font-size: 12px;
  color: #757575;
}

footer a {
  text-decoration: none;
  color: #5eb546;
}

footer a:hover {
  text-decoration: underline;
  color: #5eb546;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {}

@media (max-width:1200px) {
  .contact-banner {
    height: 100vh;
  }
}

@media (max-width:992px) {
  .banner {
    min-height: 100vh;
  }

  .banner-caption {
    padding: 200px 30px;
  }

  .banner-caption h1 {
    font-size: 34px;
  }

  .caption-width {
    max-width: 100%;
  }

  .banner-caption h2 {
    font-size: 20px;
  }

  .featured-places .featured-item {
    margin-bottom: 30px;
  }

  .featured-places .featured-item .down-content .first-button {
    border-right: none;
  }

  section.our-services .service-item {
    margin-bottom: 30px;
  }

  .down-services .left-content {
    margin-bottom: 60px;
  }

  #video-container .video-content {
    padding: 0 30px;
    text-align: center;
  }

  .whitepapers-img {
    padding-right: 0;
  }

  .whitepapers-big {
    margin-bottom: 80px;
  }

  .whitepapers-row {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 767px) {
  #header .logo img {
    width: 80%;
  }

  .contact-banner {
    background-attachment: scroll;
    overflow: scroll;
  }

  .banner-caption {
    padding: 150px 30px 40px 30px;
  }

  .banner-caption h1 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 36px;
    text-shadow: 1px 1px #000b48;
  }

  .banner-caption h2 {
    font-size: 18px;
  }

  .team .team-item .down-content h4 {
    font-size: 16px;
  }

  #video-container .video-content .inner {
    align-content: center;
    align-items: center;
  }

  .media-body {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .media-body .green-button {
    align-self: center;
    position: inherit;
  }

  .media img {
    padding-right: 10px;
  }
}



@media (min-width: 576px) {
  .our-services-container {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .our-services-container {
    max-width: none;
  }
}

@media (min-width: 992px) {
  .our-services-container {
    max-width: none;
  }

  figure.effect-sadie h2 {
    font-size: 1.2rem;
  }

  figure.effect-sadie p {
    font-size: 13px;
    line-height: 17px;
  }
}

@media (min-width: 1200px) {
  figure.effect-sadie h2 {
    font-size: 1.5rem;
  }

  figure.effect-sadie p {
    font-size: 16px;
    line-height: 21px;
  }
}



@media only screen and (max-width: 1400px) {
  .banner.bann-commom {
    display: none;
  }

  .banner.bann-middle {
    display: block;
  }

  .banner.bann-small {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .banner.bann-commom {
    display: none;
  }

  .banner.bann-middle {
    display: block;
  }

  .banner.bann-small {
    display: none;
  }

}

@media only screen and (max-width: 999px) {
  .banner.bann-commom {
    display: none;
  }

  .banner.bann-middle {
    display: none;
  }

  .banner.bann-small {
    display: block;
  }

}

@media only screen and (max-width: 770px) {}



.banner-area {
  background: url(../images/cc-bnr.jpg );
  width: 100%;
  height: 75vh;
  margin-top: 100px;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.banner-text-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.banner-text-area {
  color: #FFFFFF;
  padding-left: 40px;
}

.banner-text-1 {
  font-weight: bold;
  font-size: 95px;
  line-height: 95px;
  width: 90%;
}

.banner-text-2 {
  font-size: 30px;
  margin-top: 30px;
  width: 80%;
}

.tl-1 img {
  max-width: 200px;
  max-height: 80px;
}

.tl-1 {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 15%;
  padding-bottom: 20%;
}


@media only screen and (max-width: 1800px) {
  .tl-1 {
    padding-bottom: 5%;
  }

  .banner-text-1 {
    font-weight: bold;
    font-size: 70px;
    line-height: 70px;
  }

  .banner-text-2 {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1350px) {
  .tl-1 {
    padding-bottom: 0%;
    padding-left: 5%;
  }

  .banner-text-1 {
    font-size: 60px;
    line-height: 60px;
  }

}

@media only screen and (max-width: 1200px) {
  #header .logo img {
    width: 200px;
}
header#header{
  height: 80px;
}
header#header #primary-nav-button {
  height: 80px;
}
  .banner-area {
    background: #010a48;
    margin-top: 80px;
  }

  .banner-text-area {
    width: 100%;
    padding-left: 0px;
  }

  .banner-text-1,
  .banner-text-2 {
    text-align: center;
    width: 100%;
    padding: 0 30px;
  }
.banner-text-2{
  font-size: 18px;
}
  .tl-1 {
    background: url(../images/cc-bnr-mob.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 15%;
  }

  .tl-1 img {
    max-width: 180px;
    max-height: 48px;
    margin-right: 30px;
  }

  .tl-1 div {
    display: flex;
  }
}

@media only screen and (max-width: 560px) {
  .tl-1 div {
    display: block;
  }
  .banner-text-1 {
    font-size: 38px;
    line-height: 45px;
}
.mrr {
  margin-bottom: -10px;
}
}

.mrr {
  margin-bottom: 40px;
}