body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #212529;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

*{
  /*font-family: 'Poppins', sans-serif;*/
}

a, a:active, a:hover, a:focus {
  text-decoration: none;
  outline: 0 none;
}
/*--------------------------header--------------------------*/

ul.dropdown-menu-col-1.large-menu {
  width: 1135px !important;
  left: -390px !important;
}

ul.dropdown-menu-col-1.large-menu .coltwo {
  column-count: 2;
  column-gap: 20px;
}

ul.dropdown-menu-col-1 h5 a {
  font-weight: 600 !important;
  font-size: 16px !important;
      color: #0d2d3e !important;
}

ul.dropdown-menu-col-1 h5 a:hover{
  color:#28a0cf !important;
}

ul.dropdown-menu-col-1 ul li a {
  color: #0d2d3e !important;
  font-weight: 400 !important;
}

ul.dropdown-menu-col-1 ul li a:hover{
  color:#43bded !important;
}


li#cloud-service-menu > a {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #0d2d3e !important;
}

li#cloud-service-menu > a:hover{
  color:#28a0cf !important;
}

li#data-analytic-menu > a {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #0d2d3e !important;
}

nav.template-main-menu > ul hr {
    margin: 15px 0 !important;
}

li#data-analytic-menu > a:hover{
  color:#28a0cf !important;
}

ul.offcanvas-nav li a:hover {
    color: #43bded !important;
}


ul#offcanvas-nav li ul hr {
    margin: 15px 0;
}

/*-----------------button-header------------*/
.sticky .navbar-layout2 button.offcanvas-menu-btn {
    background-color: #5a49f8;}


button.offcanvas-menu-btn {
    margin-top: 8px;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    border-radius: 4px;
}

button.offcanvas-menu-btn .menu-btn-icon {
    padding: 10px;
    display: block;
    width: 50px;
    position: relative;
    height: 50px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

button.offcanvas-menu-btn.menu-status-open .menu-btn-icon span:nth-child(1n) {
    width: 30%;
    -webkit-animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}
button.offcanvas-menu-btn .menu-btn-icon span {
    position: absolute;
    height: 2px;
    right: 13px;
    z-index: 2;
    background-color: #43bded;
    -webkit-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

button.offcanvas-menu-btn.menu-status-open .menu-btn-icon span:nth-child(2n) {
    width: 45%;
    -webkit-animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

button.offcanvas-menu-btn.menu-status-open .menu-btn-icon span:nth-child(3n) {
    width: 45%;
    -webkit-animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes open_first_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



@keyframes open_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
}


@keyframes open_third_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



button.offcanvas-menu-btn.menu-status-close .menu-btn-icon span:nth-child(1n) {
    -webkit-animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

button.offcanvas-menu-btn.menu-status-close .menu-btn-icon span {
    width: 43%;
}

button.offcanvas-menu-btn.menu-status-close .menu-btn-icon span:nth-child(2n) {
    -webkit-animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

button.offcanvas-menu-btn.menu-status-close .menu-btn-icon span:nth-child(3n) {
    -webkit-animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes close_first_bar {
  0% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
}


@keyframes close_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}
}



@keyframes close_third_bar {
  0% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
}

.sticky-on .navbar-wrap {
  position: relative;
  z-index: 2;
}

.sticky-on .navbar-wrap .navbar-layout2 {
 position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
   /*background-color: white;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);*/
}

.sticky-on .navbar-wrap .navbar-layout2.active{
  position: fixed;
  background-color: white;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);

}

/*.sticky .navbar-layout2 {
  background-color: white;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}*/

.navbar-layout2 {
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home .navbar-layout2 {
    background: transparent;
}

.box-layout .box-layout-child {
  max-width: 1340px ;
  width: 100% ;
  margin: 0 auto ;
}

.box-layout .box-layout-child .container-fluid {
  padding-left: 30px ;
  padding-right: 30px ;
}

/*.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}*/

.navbar-layout2 .temp-logo {
  position: relative;
  z-index: 1;
}
.temp-logo {
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

@media(min-width:1400px){div#navbar-wrap .box-layout-child .container {
  max-width: 1320px;
  width: 100%;
}
}

/* @media(min-width: 1200px){
  div#navbar-wrap .box-layout-child .container {
  max-width: 1140px;
  width: 100%;
}
} */



.navbar-layout2 .temp-logo .default-logo {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.temp-logo a {
  display: block;
}

.navbar-layout2 .temp-logo .sticky-logo {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

nav.template-main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}


.navbar-layout2 nav.template-main-menu > ul > li > a {
  color: #0d2d3e;
    padding: 26px 20px;
  text-decoration: none;
}


.navbar-layout2 nav.template-main-menu > ul > li > a:hover {
  color: #43bded;
}

.navbar-layout2 nav.template-main-menu > ul > li > a::after {
  background: #43bded;
  bottom: 0;
  content: '';
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  -webkit-transform: translate3d(0, 4px, 0);
  transform: translate3d(0, 4px, 0);
  -webkit-transition: -webkit-transform .4s cubic-bezier(.4, 1, .4, 1);
  transition: -webkit-transform .4s cubic-bezier(.4, 1, .4, 1);
  transition: transform .4s cubic-bezier(.4, 1, .4, 1);
  transition: transform .4s cubic-bezier(.4, 1, .4, 1), -webkit-transform .4s cubic-bezier(.4, 1, .4, 1);
  width: 100%;
}


.navbar-layout2 nav.template-main-menu > ul > li > a:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  height: 4px;
}

.navbar-layout2 nav.template-main-menu > ul > li {
  position: relative;
}

nav.template-main-menu > ul > li > a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.navbar-layout2 nav.template-main-menu > ul > li ul.dropdown-menu-col-1 {
  border-top: 0;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 {
  padding: 20px 0;
  border-top: 1px solid #43bded;
  background-color: #ffffff;
  width: 265px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 0;
  top: 100%;
  left: 0;
  border-radius: 4px;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


nav.template-main-menu > ul > li > ul > li {
  position: relative;
}

nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
  font-weight: 500;
  /*width: 100%;*/
  /*padding: 0px 10px;*/
  font-size: 15px;
  color: #4c4b4b;
  display: inline-block;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  line-height: 20px;
}

.dropdown-menu-col-1 li ul li {
    padding-bottom: 10px;
    page-break-inside: avoid;
    padding-left: 10px;
    padding-right: 10px;
}


.dropdown-menu-col-1 li ul li > a:hover:after {
    width: 100%;
    background-color: #43bded;
}
.dropdown-menu-col-1 li ul li > a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 3px;
    /* background-color: currentColor; */
    transform: translateX(-50%);
    transition: width 0.35s ease-in-out;
}

.dropdown-menu-col-1 li ul li > a {
    position: relative;
}


nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
    text-decoration: none;
}

nav.template-main-menu > ul > li:hover ul.dropdown-menu-col-1 {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a span {
  position: relative;
  z-index: 1;
}

.header-action-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.header-action-items .single-item {
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.navbar-layout2 .header-search {
  padding: 10px 0;
  transition: all 0.5s;
  margin-left: -40px;
}

.header-action-items .single-item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.header-action-items .single-item {
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.nav-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  height: 2rem;
  left: 22px;
  position: absolute;
      top: -15px;
  width: 1.6rem;
  z-index: 2;
}

.nav-toggle .nav-toggle-bar {
  margin-top: 0;
}

.nav-toggle .nav-toggle-bar, .nav-toggle .nav-toggle-bar::after, .nav-toggle .nav-toggle-bar::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  background: #353636;
  content: '';
  height: .2rem;
  width: 100%;
}

.nav-toggle .nav-toggle-bar::before {
  margin-top: -.5rem;
  display: block !important;
}

.nav-toggle .nav-toggle-bar::after {
  margin-top: .47rem;
}


a.header-search i {
    color: #676767;
}



/*----------------------------main-banner-----------------------------*/
.main-banner-wrap-layout2 {
  padding: 95px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

/*.main-banner-wrap-layout2 .animated-figure-wrap1 {
    display: none;
  }
}*/

.main-banner-wrap-layout2 .animated-figure-wrap1 li:nth-child(n) {
  top: 0;
  -webkit-transform: translateX(0px) translateY(0px);
  -ms-transform: translateX(0px) translateY(0px);
  transform: translateX(0px) translateY(0px);
  left: 0;
  right: inherit;
}

.main-banner-wrap-layout2 .animated-figure-wrap1 li:nth-child(1n) {
  top: 0;
  -webkit-transform: translateX(0px) translateY(0px);
      -ms-transform: translateX(0px) translateY(0px);
          transform: translateX(0px) translateY(0px);
  left: 0;
  right: inherit;
}

.main-banner-wrap-layout2 .animated-figure-wrap1 li:nth-child(2n) {
  top: 92%;
  -webkit-transform: translateX(0px) translateY(-50%);
  -ms-transform: translateX(0px) translateY(-50%);
  transform: translateX(0px) translateY(-50%);
  left: -70px;
  right: inherit;
}

.main-banner-wrap-layout2 .animated-figure-wrap1 li:nth-child(3n) {
  top: 0;
  right: 0;
  left: inherit;
  -webkit-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

.main-banner-wrap-layout2 .animated-figure-wrap1 li {
  position: absolute;
  z-index: -1;
}


/*.main-banner-wrap-layout2 .animated-figure-wrap2 {
    display: none;
  }
}*/

.main-banner-wrap-layout2 .animated-figure-wrap2 li:nth-child(n) {
  top: 0;
  -webkit-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
  left: 0;
}




.main-banner-wrap-layout2 .animated-figure-wrap2 li {
  position: absolute;
  z-index: -1;
}

.main-banner-wrap-layout2 .animated-figure-wrap2 li:nth-child(1n) {
  top: 0;
  -webkit-transform: translateX(0) translateY(0);
      -ms-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
  left: 0;
}

.main-banner-wrap-layout2 .animated-figure-wrap2 li:nth-child(2n) {
  top: 90%;
  -webkit-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  left: 0;
}

.main-banner-wrap-layout2 .animated-figure-wrap2 li:nth-child(3n) {
  top: 90%;
  -webkit-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  left: 0;
}

.main-banner-wrap-layout2 .animated-shape-small li:nth-child(n) {
  top: 20%;
  right: 70%;
  -webkit-animation: shape_one 100s alternate infinite linear;
  animation: shape_one 100s alternate infinite linear;
}


.main-banner-wrap-layout2 .animated-shape-small li:nth-child(1n) {
  top: 20%;
  right: 70%;
  -webkit-animation: shape_one 100s alternate infinite linear;
          animation: shape_one 100s alternate infinite linear;
}
/*.main-banner-wrap-layout2 .animated-shape-small {
    display: none;
  }
}*/

.main-banner-wrap-layout2 .animated-shape-small li {
  position: absolute;
  z-index: 1;
}


.main-banner-wrap-layout2 .animated-shape-small li:nth-child(2n) {
  top: 30%;
  right: 60%;
  -webkit-animation: shape_two 100s alternate infinite linear;
  animation: shape_two 100s alternate infinite linear;
}

.main-banner-wrap-layout2 .animated-shape-small li:nth-child(3n) {
  top: 20%;
  right: 50%;
  -webkit-animation: shape_three 100s alternate infinite linear;
  animation: shape_three 100s alternate infinite linear;
}

.main-banner-wrap-layout2 .animated-shape-small li:nth-child(4n) {
  top: 70%;
  right: 70%;
  -webkit-animation: shape_four 100s alternate infinite linear;
  animation: shape_four 100s alternate infinite linear;
}

.main-banner-wrap-layout2 .animated-shape-small li:nth-child(5n) {
  top: 90%;
  right: 60%;
  -webkit-animation: shape_five 100s alternate infinite linear;
  animation: shape_five 100s alternate infinite linear;
}

.main-banner-wrap-layout2 .animated-shape-small li:nth-child(6n) {
  top: 90%;
  right: 50%;
  -webkit-animation: shape_six 100s alternate infinite linear;
  animation: shape_six 100s alternate infinite linear;
}


.main-banner-box-layout2 {
  margin-top: 46px;
}

.main-banner-box-layout2 img {
    width: 100%;
    height: auto;
}


.main-banner-box-layout2 .item-sub-title {
    color: #fff;
    margin-bottom: 5px;
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 400;
    background: #43bded;
    padding: 5px 10px;
    max-width: 375px;
}

  .main-banner-box-layout2 .item-main-title {
  font-size: 53px;
  color: #000000;
  font-weight: 700;
  line-height: 75px;
  margin-bottom: 5px;
}

.main-banner-box-layout2 p {
  color: #000000;
  width: 80%;
  margin-bottom: 50px;
  font-size: 18px;
}



.btn-fill {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  z-index: 2;
  padding: 10px 27px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #43bded;
  border: 2px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  border-color: #43bded;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}



.btn-fill:hover {
    color: #43bded;
    background-color: transparent;
}



.btn-fill:hover i {
    color: #43bded;
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.btn-fill i {
  margin-top: 2px;
  line-height: 1;
  margin-left: 12px;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.main-banner-box-layout2 .banner-btns .item-btn {
  margin-right: 30px;
}


.btn-ghost {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  z-index: 2;
  padding: 10px 27px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid;
  border-color: #43bded;
  color: #43bded;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.btn-ghost.btn-dark {
    border-color: #1d2124;
    color: #1d2124;
    background-color: transparent;
}

.section-padding-bottom-md {
  padding-bottom: 90px;
}
.about-wrap-layout2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 90px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.pl-0, .px-0 {
  padding-left: 0 !important;
}
.pr-0, .px-0 {
  padding-right: 0 !important;
}

.about-box-layout2 {
  margin-bottom: 30px;
}

.about-box-layout2 .figure-holder {
  position: relative;
  z-index: 1;
}

.about-box-layout2 .figure-holder .animated-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  top: 0;
}



.about-wrap-layout2 .animated-shape-big li {
  position: absolute;
  z-index: 1;
  bottom: 150px;
  right: 30px;
}

.about-wrap-layout2 .animated-shape-big li {
  position: absolute;
  z-index: 1;
  bottom: 150px;
  right: 30px;
}

.about-wrap-layout2 .animated-shape-small li:nth-child(n) {
  top: 10%;
  right: 20%;
  -webkit-animation: shape_one 30s alternate infinite linear;
  animation: shape_one 30s alternate infinite linear;
}
.about-wrap-layout2 .animated-shape-small li {
  position: absolute;
  z-index: 1;
}

.about-wrap-layout2 .animated-shape-small li:nth-child(2n) {
  top: 50%;
  right: 10%;
  -webkit-animation: shape_two 30s alternate infinite linear;
  animation: shape_two 30s alternate infinite linear;
}

.about-wrap-layout2 .animated-shape-small li:nth-child(3n) {
  top: 70%;
  right: 30%;
  -webkit-animation: shape_three 30s alternate infinite linear;
  animation: shape_three 30s alternate infinite linear;
}

.about-box-layout2 .figure-holder .animated-figure .mask-image {
  -webkit-mask-image: url(/newhome/svg2.svg);
  mask-image: url(/newhome/svg2.svg);
  -webkit-mask-size: 451px 554px;
  mask-size: 451px 554px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  position: relative;
  display: block;
}


.about-box-layout2 img {
  max-width: 663px;
    height: 495px;
}

.about-wrap-layout2 .compress-right-side {
   padding-left: 60px;
    padding-right: calc(calc(100% - 1170px)/2);
}

.about-box-layout2 .content-holder .section-title {
  color: #43bded;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}


.about-box-layout2 .content-holder .item-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 50px;
    color: #212529;
}

.about-box-layout2 .content-holder p:last-child {
    margin-bottom: 30px;
}

.about-box-layout2 .content-holder p {
    /* margin-bottom: 50px; */
    line-height: 30px;
}

.row.about-block h2 {
    font-size: 25px;
    font-weight: 600;
}
.row.about-block {
    margin-top: 25px;
    margin-bottom: 20px;
}

.pt-80{
  padding-top: 80px;
}

.section-padding-md {
  /*padding-top: 110px;*/
  padding-bottom: 90px;
}
.bg-color-light {
  background-color: #ffffff;
}
.service-wrap-layout2 {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.position-relative {
  position: relative !important;
}

.service-wrap-layout2 .animated-figure svg {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 20%;
  top: 50%;
  margin: 0 auto;
}

.section-heading {
  position: relative;
  z-index: 0;
  text-align: center;
  margin-bottom: 55px;
}

.section-heading .heading-sub-title {
  text-align: center;
  color: #43bded;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 18px;
}


.section-heading.heading-dark .heading-main-title {
  color: #000000;
  margin-bottom: 15px;
  font-size: 36px;
line-height: 50px;
font-weight: 700;

}

.section-heading .heading-paragraph {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  color: #232323;
}


.service-wrap-layout2 .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}


.col-xl-5th {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}


.main-service-layout2 .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.main-service-layout2 .service-box-layout2 {
    padding-left: 13px;
    padding-right: 13px;
    padding-bottom: 1px;
}

.service-box-layout2 .item-title {
    line-height: 23px;
}


.main-service-layout2 .service-box-layout2 p{
  font-size: 15px;
  padding: 0;
}

.main-service-layout2 .service-box-layout2{
  height: 100%;
}

.service-box-layout2 .item-title a {
    font-size: 18px;
}

.service-box-layout2 {
  -webkit-box-shadow: 0 2px 35px 0 rgba(179, 179, 179, 0.22);
  box-shadow: 0 2px 35px 0 rgba(179, 179, 179, 0.22);
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #ffffff;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-top: 70px;
  padding-bottom: 40px;
  padding-left: 48px;
  padding-right: 48px;
}


@media(min-width: 1200px){

  .main-service-layout2 .container {

    max-width: 1260px;
}
}


@media(min-width: 1400px){

  .main-service-layout2 .container {

    max-width: 1380px;
}
}

@media(min-width: 1400px){
  .footer-top-layout2 .container {
    max-width: 1320px;
    width: 100%;
  }

}


.hserv-100 {
  height: 100%;
}

.hs-100{

height: 100%;
padding-bottom: 10px;

}


.icon-color.icon-color-california img {
  width: 12%;
  margin-bottom: 25px;
}

.service-box-layout2 .item-title a {
  color: #000000;
  font-weight: 600;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  text-decoration: none;
  /*font-size: 23px;*/
}


.service-box-layout2 .item-title{
  margin-bottom: 20px;
  margin-top: 20px;
}


.service-box-layout2 p {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  color: #635c5c;
  padding: 0 21px;
  font-size: 16px;
  line-height: 30px;
}


.btn-text {
  font-weight: 600;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #43bded;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.btn-text:hover {
    color: #43bded;
}

.btn-text i {
  margin-top: 3px;
  margin-left: 10px;
  line-height: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  color: #43bded;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}


.service-box-layout2 .item-btn i {
  color: #43bded;
  -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: color 0.2s ease-in-out, transform 0.3s ease-in-out;
  transition: color 0.2s ease-in-out, transform 0.3s ease-in-out;
  transition: color 0.2s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.btn-text:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    
}

.icon-color.icon-color-california::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  top: -22px;
  left: 50%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #ff930e;
  transform: translateX(-50%);
}
.icon-color.icon-color-california {
  position: relative;
}


.service-box-layout2::before {
  position: absolute;
  content: "";
  top: 99.5%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.service-box-layout2.layout-bg-california::before {
  background-color: #ff930e;
}


.icon-color.icon-color-emerald img {
  width: 12%;
  margin-bottom: 25px;
}


.icon-color.icon-color-emerald::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  top: -22px;
  left: 49%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #18dc59;
  transform: translateX(-50%);
}
.icon-color.icon-color-emerald {
  position: relative;
}

.service-box-layout2.layout-bg-emerald::before {
  background-color: #18dc59;
}


.icon-color.icon-color-royal-blue img {
  width: 12%;
  margin-bottom: 25px;
}


.icon-color.icon-color-royal-blue::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  top: -22px;
  left: 49.8%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #5a49f8;
  transform: translateX(-50%);
}
.icon-color.icon-color-royal-blue {
  position: relative;
}

.service-box-layout2.layout-bg-royal-blue::before {
  background-color: #5a49f8;
}



.icon-color.icon-color-dodger-blue img {
  width: 12%;
  margin-bottom: 25px;
}


.icon-color.icon-color-dodger-blue::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  top: -22px;
  left: 49.8%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #36bafe;
  transform: translateX(-50%);
}
.icon-color.icon-color-dodger-blue {
  position: relative;
}

.service-box-layout2.layout-bg-dodger-blue::before {
  background-color: #36bafe;
}


.icon-color.icon-color-sunset-orange img {
  width: 12%;
  margin-bottom: 25px;
}


.icon-color.icon-color-sunset-orange::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  top: -22px;
  left: 49.8%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #ff3838;
  transform: translateX(-50%);
}
.icon-color.icon-color-sunset-orange {
  position: relative;
}

.service-box-layout2.layout-bg-sunset-orange::before {
  background-color: #ff3838;
}


.icon-color.icon-color-sky-blue img {
  width: 12%;
  margin-bottom: 25px;
}


.icon-color.icon-color-sky-blue::after {
  position: absolute;
  content: "";
  height: 60px;
  width: 60px;
  border-radius: 50%;
  top: -22px;
  left: 49.8%;
  z-index: -1;
  opacity: 0.1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #43bded;
  transform: translateX(-50%);
}
.icon-color.icon-color-sky-blue {
  position: relative;
}

.service-box-layout2.layout-bg-sky-blue::before {
  background-color: #43bded;
}


.service-box-layout2:hover::before {
  border-radius: 4px;
  top: 0;
  bottom: 0;
}

.service-box-layout2:hover .icon-color.icon-color-california::after,
.service-box-layout2:hover .icon-color.icon-color-emerald::after,
.service-box-layout2:hover .icon-color.icon-color-royal-blue::after,
.service-box-layout2:hover .icon-color.icon-color-dodger-blue::after,
.service-box-layout2:hover .icon-color.icon-color-sunset-orange::after,
.service-box-layout2:hover .icon-color.icon-color-sky-blue::after {
  background-color: #fff;
  /*z-index: 99;*/
  opacity: 1;
visibility: visible;
}


.service-box-layout2:hover .icon-color.icon-color-california img,
.service-box-layout2:hover .icon-color.icon-color-emerald img ,
.service-box-layout2:hover .icon-color.icon-color-royal-blue img ,
.service-box-layout2:hover .icon-color.icon-color-dodger-blue img ,
.service-box-layout2:hover .icon-color.icon-color-sunset-orange img ,
.service-box-layout2:hover .icon-color.icon-color-sky-blue img  {
  /*background-color: #fff;*/
  z-index: 99;
  opacity: 1;
visibility: visible;
}


.service-box-layout2:hover .item-title a,
.service-box-layout2:hover p,
.service-box-layout2:hover .btn-text,
.service-box-layout2:hover .btn-text i{
  color: #fff;
}



.flip-card {
  background-color: transparent;
  width:100%;
  height: 300px;
  perspective: 1000px;
}


.bottom-img-heading {
position: absolute;
    top: 64%;
    color: #fff;
    font-size: 21px;
    z-index: 99;
    margin: 0 auto;
    /* display: block; */
    width: 100%;
    /* display: none; */
    background: #000000c4;
    padding: 20px 10px;
    height: 36%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-front img{
  position: relative;
}

.flip-card-front::before {
  content: '';
  position: absolute;
  /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);*/
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 1;
}



.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  /*transform: rotateY(180deg);*/
}

.flip-card:hover .flip-card-front::before {
  /*display: none;*/
}


.flip-card:hover .flip-card-front .bottom-img-heading{
  /*opacity: 0;*/

}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  /*-webkit-backface-visibility: hidden;*/
  /*backface-visibility: hidden;*/
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  /*background-color: #fff;*/
  color: #2251ff;
  /*transform: rotateY(180deg);*/
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}

.flip-card-back h1{
  color: #444;
font-weight: 600;
text-transform: uppercase;
font-size: 15px;
}

.flip-card-back p{
  color: #10285d;
font-size: 16px;
line-height: 30px;
margin-bottom: 15px;
font-weight: 400;
}


.section-padding-md-equal {
    padding-top: 50px;
    padding-bottom: 40px;
}

section.section-padding-md-equal.bg-color-light {
    /*background: #4ac0eea1;*/
}


.blog-box-layout2 {
    background-color: #fff;
    height: 100%;
    transition: all .3s ease-in-out;
    /*border-radius: 15px;*/
    margin: 0 10px;
    /*box-shadow: -2px 5px 15px -4px rgba(0, 0, 0, .3);*/
}

.blog-box-layout2 img {
    width: 100%;
    /*border-top-left-radius: 15px;
    border-top-right-radius: 15px;*/
}

.blog-box-layout2 .item-content {
    padding: 20px 5px;
    min-height: 148px;
    border-radius: 20px;
}

.blog-box-layout2 .item-content ul {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}


.blog-box-layout2 .item-content ul li a {
    color: #9b9b9b;
    text-decoration: none;
    font-size: 14px;
}

.blog-box-layout2 .item-content ul li a:hover {
    color: #43bded;
}

.blog-box-layout2 .entry-title a {
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
}
.blog-box-layout2 .entry-title a:hover {
    text-decoration: underline;
    color: #43bded;
}

.blog-box-layout2 .entry-title {
    line-height: 18px;
    margin-bottom: 20px;
}


.blog-box-layout2 p{
  color: #10285d;
}

.h-100 {
    height: 100%;
}

.blog-box-layout2 .item-figure {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.blog-box-layout2 .item-figure::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.blog-box-layout2:hover .item-figure::before {
  width: 100%;
  height: 100%;
  opacity: 0;
}


.blog-box-layout2 .item-figure::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.blog-box-layout2:hover .item-figure::after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.blog-box-layout2:hover {
  /*transform: translateY(-10px);*/
}

.case-box-layout:hover {
  transform: translateY(-10px);
}


a.blog-explore-link {
    font-weight: 500;
    font-size: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    background: #43bded;
    padding: 10px 18px;
    border-radius: 5px;
    border: 1px solid #43bded;
}

.blog-explore-link:hover {
    color: #43bded;
    background-color: transparent;
}

 a.blog-explore-link i {
    margin-top: 2px;
    line-height: 1;
    margin-left: 12px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-explore-link:hover i {
    color: #43bded;
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.explore-link-main {
    text-align: center;
    padding: 50px 0;
}

section.section-padding-md-equal.bg-color-light.case-study-sec {
    padding-top: 20px;
}

.case-study-sec .container {
    max-width: 1215px;
}

.casestudyimg {
  overflow: hidden;
  height: 290px;
}

.casestudy-content h3 a {
  font-size: 1.1rem !important;
}

.casestudy-content p{
  font-size: 16px !important;
}

.case-box-layout .casestudy-content h3 a:hover {
    color: #000;
}

/*-----------------------------footer-------------------------*/

.has-animation.active-animation.footer-wrap-layout2 {
  background-position: center bottom;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-color-light {
  background-color: #ffffff;
}


.has-animation.footer-wrap-layout2 {
  background-position: center 500px;
  -webkit-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.footer-top-layout2 {
  padding: 30px 0 75px;
}

footer .footer-widgets {
  margin-bottom: 15px;
}

.footer-top-layout2 .footer-logo {
  margin-bottom: 15px;
}

.footer-top-layout2 .footer-logo img {
    max-width: 262px;
}


.about-paragraph {
  margin: 0 0 20px 0;
  color: #646464;
}

.footer-top-layout2 ul.footer-social {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
}

.footer-top-layout2 ul.footer-social li {
  margin-right: 10px;
  margin-bottom: 5px;
}

.footer-top-layout2 ul.footer-social li:first-child a {
  /*padding: 5px 10px 5px 0;*/
}
.footer-top-layout2 ul.footer-social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*color: #b0b0b0;*/
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  padding: 10px 11px 10px 10px;
background: #43bded;
color: #fff;
border-radius: 50%;
width: 35px;
height: 35px;
}

.footer-top-layout2 ul.footer-social li a:hover i{

  color: #000;
}

.footer-top-layout2 ul.footer-social li a i {
  font-size: 14px;
}

.footer-top-layout2 ul.footer-social li a:hover {
  /*color: #43bded;*/
}

footer .footer-widget-heading {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 22px;
line-height: 36px;
}


.footer-menu {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.footer-top-layout2 .footer-menu li {
  margin-bottom: 10px;
}

.footer-top-layout2 .footer-menu li a {
  color: #646464;
  display: block;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}


.footer-top-layout2 .footer-menu li a:hover {
  color: #43bded  ;
}

.footer-widgets p {
  margin: 0 0 20px 0;
  color: #646464;
}


ul.footer-contact li {
    position: relative;
    padding-left: 40px;
    padding-bottom: 15px;
}

ul.footer-contact {
    padding-left: 0;
}
ul.footer-contact li a img {
    width: 25px;
    position: absolute;
    left: 0;
}

ul.footer-contact li a {
  color: #646464 !important;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}


ul.footer-contact li a:hover {
   color: #43bded !important;
  
}

.footer-bottom-layout2 {
  padding: 30px 0 22px;
}

.footer-bottom-layout2 .copy-right-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.footer-bottom-layout2 .copy-right-wrap .copy-right-text {
  margin-bottom: 0;
  color: #646464 !important;
}

.footer-bottom-layout2 .copy-right-wrap .copy-right-text a {
  color: #646464;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.footer-bottom-layout2 .copy-right-wrap .copy-right-text a:hover {
  color:  #43bded;
}


.case-box-layout {
    background-color: #43bded;
    transition: all .3s ease-in-out;
    border-radius: 0px;
    margin: 0 10px;
    box-shadow: -2px 5px 15px -4px rgb(0 0 0 / 30%);
    display: flex;
}

.case-box-layout img {
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    height: 100%;
     object-fit: cover; 
}

.case-box-layout .casestudy-content {
    padding: 40px 30px;
    /* min-height: 161px; */
    border-radius: 0px;
    width: 100%;
}

.case-box-layout .casestudy-content h3 a {
  color: #fff;
}

.case-box-layout .casestudy-content p {
  color: #fff;
}


/*-------------------------animation----------------------------*/
body.loaded .has-animation.active-animation .translate-left-10, body.loaded .has-animation.active-animation .translate-left-20, body.loaded .has-animation.active-animation .translate-left-30, body.loaded .has-animation.active-animation .translate-left-40, body.loaded .has-animation.active-animation .translate-left-50, body.loaded .has-animation.active-animation .translate-left-75, body.loaded .has-animation.active-animation .translate-left-100, body.loaded .has-animation.active-animation .translate-right-10, body.loaded .has-animation.active-animation .translate-right-20, body.loaded .has-animation.active-animation .translate-right-30, body.loaded .has-animation.active-animation .translate-right-40, body.loaded .has-animation.active-animation .translate-right-50, body.loaded .has-animation.active-animation .translate-right-75, body.loaded .has-animation.active-animation .translate-right-100, body.loaded .has-animation.active-animation .translate-top-10, body.loaded .has-animation.active-animation .translate-top-20, body.loaded .has-animation.active-animation .translate-top-30, body.loaded .has-animation.active-animation .translate-top-40, body.loaded .has-animation.active-animation .translate-top-50, body.loaded .has-animation.active-animation .translate-top-75, body.loaded .has-animation.active-animation .translate-top-100, body.loaded .has-animation.active-animation .translate-bottom-10, body.loaded .has-animation.active-animation .translate-bottom-20, body.loaded .has-animation.active-animation .translate-bottom-30, body.loaded .has-animation.active-animation .translate-bottom-40, body.loaded .has-animation.active-animation .translate-bottom-50, body.loaded .has-animation.active-animation .translate-bottom-75, body.loaded .has-animation.active-animation .translate-bottom-100, body.loaded .has-animation.active-animation .translate-top-left-10, body.loaded .has-animation.active-animation .translate-top-left-20, body.loaded .has-animation.active-animation .translate-top-left-30, body.loaded .has-animation.active-animation .translate-top-left-40, body.loaded .has-animation.active-animation .translate-top-left-50, body.loaded .has-animation.active-animation .translate-top-left-75, body.loaded .has-animation.active-animation .translate-top-left-100, body.loaded .has-animation.active-animation .translate-top-right-10, body.loaded .has-animation.active-animation .translate-top-right-20, body.loaded .has-animation.active-animation .translate-top-right-30, body.loaded .has-animation.active-animation .translate-top-right-40, body.loaded .has-animation.active-animation .translate-top-right-50, body.loaded .has-animation.active-animation .translate-top-right-75, body.loaded .has-animation.active-animation .translate-top-right-100, body.loaded .has-animation.active-animation .translate-bottom-left-10, body.loaded .has-animation.active-animation .translate-bottom-left-20, body.loaded .has-animation.active-animation .translate-bottom-left-30, body.loaded .has-animation.active-animation .translate-bottom-left-40, body.loaded .has-animation.active-animation .translate-bottom-left-50, body.loaded .has-animation.active-animation .translate-bottom-left-75, body.loaded .has-animation.active-animation .translate-bottom-left-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-left-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-right-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-left-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-top-right-100, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-10, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-20, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-30, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-40, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-50, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-75, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .translate-bottom-left-100 {
  -webkit-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

body.loaded .has-animation.active-animation .opacity-animation, body.loaded#pagepiling_animation .pp-section.active .has-animation.active-animation .opacity-animation {
  opacity: 1;
  visibility: visible;
}

body.loaded .transition-delay-2000, body.loaded#pagepiling_animation .pp-section.active .transition-delay-2000 {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}

body.loaded .transition-150, body.loaded#pagepiling_animation .pp-section.active .transition-150 {
  -webkit-transition: cubic-bezier(0, 1, 1, 1) 1.5s, opacity 0.3s;
  -o-transition: cubic-bezier(0, 1, 1, 1) 1.5s, opacity 0.3s;
  transition: cubic-bezier(0, 1, 1, 1) 1.5s, opacity 0.3s;
    transition-delay: 0s, 0s;
}

body .has-animation .translate-right-75, body#pagepiling_animation .pp-section .has-animation .translate-right-75 {
  -webkit-transform: translateX(75%);
  -ms-transform: translateX(75%);
  transform: translateX(75%);
}

body .has-animation .opacity-animation, body#pagepiling_animation .pp-section .has-animation .opacity-animation {
  opacity: 0;
  visibility: hidden;
}

body .transition-10, body .transition-20, body .transition-30, body .transition-40, body .transition-50, body .transition-100, body .transition-150, body .transition-200, body .transition-250, body .transition-300, body .transition-350, body .transition-400, body .transition-450, body .transition-500, body .transition-550, body .transition-600, body .transition-650, body .transition-700, body .transition-750, body .transition-800, body .transition-850, body .transition-900, body .transition-950, body .transition-1000, body#pagepiling_animation .pp-section .transition-10, body#pagepiling_animation .pp-section .transition-20, body#pagepiling_animation .pp-section .transition-30, body#pagepiling_animation .pp-section .transition-40, body#pagepiling_animation .pp-section .transition-50, body#pagepiling_animation .pp-section .transition-100, body#pagepiling_animation .pp-section .transition-150, body#pagepiling_animation .pp-section .transition-200, body#pagepiling_animation .pp-section .transition-250, body#pagepiling_animation .pp-section .transition-300, body#pagepiling_animation .pp-section .transition-350, body#pagepiling_animation .pp-section .transition-400, body#pagepiling_animation .pp-section .transition-450, body#pagepiling_animation .pp-section .transition-500, body#pagepiling_animation .pp-section .transition-550, body#pagepiling_animation .pp-section .transition-600, body#pagepiling_animation .pp-section .transition-650, body#pagepiling_animation .pp-section .transition-700, body#pagepiling_animation .pp-section .transition-750, body#pagepiling_animation .pp-section .transition-800, body#pagepiling_animation .pp-section .transition-850, body#pagepiling_animation .pp-section .transition-900, body#pagepiling_animation .pp-section .transition-950, body#pagepiling_animation .pp-section .transition-1000 {
  -webkit-transition: all 0.01s ease-out;
  -o-transition: all 0.01s ease-out;
  transition: all 0.01s ease-out;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}


body .has-animation .translate-top-left-75, body#pagepiling_animation .pp-section .has-animation .translate-top-left-75 {
  -webkit-transform: translateY(-75%) translateX(-75%);
  -ms-transform: translateY(-75%) translateX(-75%);
  transform: translateY(-75%) translateX(-75%);
}


@keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -100px) rotate(36deg);
            transform: translate(73px, -100px) rotate(36deg);
  }
  50% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(144deg);
            transform: translate(40px, -72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}


@keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
            transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
            transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
            transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
            transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
            transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
            transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
            transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
            transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
            transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
            transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
            transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
            transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
            transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
            transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}


@keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
            transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
            transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
            transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
            transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
            transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
            transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
            transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}




/*-------------------------fade-animation------------------------*/

.animate-image-fade {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.image-one {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}

/*==== FADE IN RIGHT ===*/

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;}





  .animate-banner {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


.one-cls {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.two-cls {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}


.three-cls {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.four-cls {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}



.svg-cls-1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.svg-cls-2 {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}




.text-one {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}


.text-two {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}

.text-three {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}

.text-four {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}

.text-five {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}

.text-six {
  -webkit-animation-delay: 7s;
  -moz-animation-delay: 7s;
  animation-delay: 7s;
}



/* make keyframes that tell the start state and the end state of our object */
@keyframes fadeInLeft {
  from {
   opacity: 0;
    -webkit-transform: translateX(-150%, 0, 0);
    transform: translateX(-150%, 0, 0);
  }

  to {
     opacity: 1;
    -webkit-transform: translateX(0, 0, 0);
    transform: translateX(0, 0, 0);
  }
}

.fadeInLeft {
   opacity: 0;/* make things invisible upon start */
  -webkit-animation:fadeInLeft ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeInLeft ease-in 1;
  animation:fadeInLeft ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}


@keyframes fadeInLeft-1 {
  from {
   opacity: 0;
    -webkit-transform: translateX(-250%, 0, 0);
    transform: translateX(-250%, 0, 0);
  }

  to {
     opacity: 1;
    -webkit-transform: translateX(0, 0, 0);
    transform: translateX(0, 0, 0);
  }
}

.fadeInLeft-1 {
   opacity: 0;/* make things invisible upon start */
  -webkit-animation:fadeInLeft-1 ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeInLeft-1 ease-in 1;
  animation:fadeInLeft-1 ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}



.fadeInLeft.one-box {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fadeInLeft-1.two-box {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay:1.5s;
  animation-delay: 1.5s;
}

.fadeInLeft.three-box {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.fadeInLeft.four-box {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.fadeInLeft.five-box {
  -webkit-animation-delay: 4.3s;
  -moz-animation-delay: 4.3s;
  animation-delay: 4.3s;
}

.fadeInLeft.six-box {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}



.fadeInLeft.image-box-1{
-webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;

}

.fadeInLeft.image-box-2{
-webkit-animation-delay: 1.5s;
  -moz-animation-delay:1.5s;
  animation-delay: 1.5s;
}

.fadeInLeft.image-box-3{
-webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.fadeInLeft.image-box-4{
 -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}




.animate-blog-fade {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.blog-one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

nav#menu {
    display: none;
}

.mean-bar {
    display: none;
}


.return-to-top.back-top {
    bottom: 20px;
}
.return-to-top {
    overflow: hidden;
    position: fixed;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 4px;
    bottom: -50px;
    right: 20px;
    text-align: center;
    z-index: 9999;
    background-color: #43bded;
    display: block;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
    transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.return-to-top i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.return-to-top:hover, .return-to-top:focus {
    color: #ffffff;
}


/*--------------------------newsletter----------------------------------*/

input {
    border: 1px solid rgb(220, 219, 235);
    border-radius: 4px;
    font-size: 13px;
    padding: 13px;
    color: #000;
    transition: all .15s ease-in;
}

input[type=email] {
    width: 43%;
}

input[type=submit] {
    background-color: #43bded;
    color: #fff;
    font-weight: 500;
    border: 1px solid transparent;
    padding: 12px 30px;
    font-size: 16px;
        cursor: pointer;
}

span.mc-field-group input {
    padding-left: 35px;
}

span.mc-field-group input:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

span.mc-field-group:before {
    position: absolute;
    left: 8px;
    content: "\f1d8";
    font-family: 'FontAwesome';
    color: #575757;
    top: -3px;
    font-size: 14px;
}
span.mc-field-group {
    position: relative;
}

span.mc-field-group input::placeholder {
    color: #000000b0;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins';
}

input[type=submit]::focus {
    border: 1px solid #fff;
}

input:focus {
    border-color: rgb(53, 114, 210);
    box-shadow: 0px 0px 8px 2px rgba(53, 114, 210, .5);
    outline: none;
}

input::placeholder {
    color: #999;
}

#subscribe-result p {
    margin-top: 35px;
}

.newsletersection-1 {
    /*background-color: #54cbf9;*/
    padding-top: 70px !important;
    text-align: center;
    padding-bottom: 90px !important;
    background-image: url(/newhome/element19.png);
}

.newsletersection-1 .leftcontentarea h5 {
        position: relative;
    /*padding-left: 50px;*/
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletersection-1 .leftcontentarea p {
    color: #635c5c;
    font-size: 15px;
    max-width: 599px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.newsletersection-1 .leftcontentarea h5:before{
  display: none;
}

/*
.newsletersection .leftcontentarea h5:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #000;
}*/


.newsletersection-1 .leftcontentarea h2 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

.error-message {
  display: none;
  color: red;
  text-align: center;
  font-size: .8em;
}

.success-message {
  display: none;
  text-align: center;
}





.casestudy-content .btn-text i {
    color: #fff !important;
}

.casestudy-content .btn-text {
    color: #fff !important;
}

.h-study {
    height: 100%;
}


/*-----------------------------Offcanvas---------------------------*/

.offcanvas-menu-wrap .offcanvas-content {
    height: 100vh;
    width: 25vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 96px 0 88px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    position: relative;
}

.offcanvas-menu-wrap {
    width: 100vw;
    position: fixed;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    top: 0;
    left: 0;
    background-color: #f0f0f0;
    -webkit-box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 20%);
    z-index: 999999999;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .close-btn {
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 25px;
    font-size: 24px;
    font-weight: 500;
    color: #292828;
    padding: 10px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-nav {
    text-align: left;

}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-nav .nav-item {
    margin-bottom: 10px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-nav .nav-item > a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
        display: flex;
    align-items: center;
}

.offcanvas-logo img {
    max-width: 280px;
    margin-bottom: 30px;
}

ul.offcanvas-social li a {
    color: #43bded;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer {
    text-align: center;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .item-title {
    font-size: 15px;
    color: #acacac;
    margin-bottom: 14px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-social li {
    display: inline-block;
    margin-right: 6px;
}



/*---------------------search-----------------------*/


.search-form {
  /*width: 440px;*/
  /*height: 100px;*/
  padding: 0 20px;
  box-sizing: border-box;
}

.search-form .input {
  width: 400px;
  border: 0px;
  background: transparent;
  box-sizing: border-box;
  border: 3px solid #62d474;
  outline: none;
  padding: 0 20px 10px;
  color: #fff;
  font-size: 20px;
  transition: all 0.5s ease;
  transform: scale(0);
  border-radius:50px;
}

#search {
  color: #fff;
  position: relative;
  top: 28px;
  left: 90px;
  display: none;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

#search.active {
  display: block;
}

.input.active {
  transform: scale(1);
}

#search.move {
  top: 60px;
  left: 20px;
  font-size: 12px;
}


/*--------------------search-----------------*/


.template-search {
    position: fixed;
    top: 48px;
    left: 50%;
    width: 53%;
    height: 95px;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

button.searchbtn.collapsed {
    background: transparent;
    border: none;
    color: #43bded;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:not(:disabled):not(.disabled):focus {
    outline: none;
}

.template-search .close {
    position: fixed;
    top: 28px;
    right: 90px;
    color: #43bded;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 3px 15px 5px;
    font-size: 36px;
    font-weight: 300;
    border-radius: 2px;
    cursor: pointer;
    /* -webkit-box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* -webkit-transition: all 0.3s ease-in-out; */
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5;
}

.template-search .search-form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.template-search .search-form input[type="text"] {
    width: 68%;
    color: #000;
    font-size: 16px;
    text-align: left;
    border: none;
    margin: 0 auto;
    padding: 10px 10px 10px 30px;
    outline: none;
    /* background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent); */
    border-radius: 50px;
    background: #fff;
    border: 1px solid #43bded;
}
[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

.template-search .search-form .search-btn {
    padding: 24px 10px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
        position: absolute;
    right: 23%;
    top: -10.5px;
}

.template-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.template-search .search-form .search-btn i {
    color: #43bded;
    font-size: 17px;
}

.template-search .search-form input[type="text"]::placeholder {
    font-size: 15px;
}

img.mobileviewimg {
    display: none;
}

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



   .mean-container .mean-bar {
    background: transparent !important;
    float: none;
    padding: 0 !important;
    position: fixed !important;
    top: 0;
    z-index: 7;
}

.mean-bar {
    display: block;
}


.icon-arrow-custom {
    position: absolute;
    display: block;
    top: 17px;
    right: -18px;
}


.icon-arrow {
 position: absolute;
    display: block;
    font-size: 0.7em;
    color: black;
    top: 11px;
    right: -18px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;  
}
  
.icon-arrow:after {
    content: "\f0d7";
    font-family: "fontAwesome";
    color: #3ebced;
    font-size: 20px;
}
.icon-arrow.open {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg); 
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;     
}

 .mean-container .mean-bar,  .mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

 .mean-container .mean-bar {
    background: #ffffff;
    float: left;
    min-height: 42px;
    padding: 5px 0;
    position: relative;
    width: 100%;
    z-index: 999999;
}


.mean-container .mean-bar .mobile-menu-nav-back {
    padding-left: 15px;
    border-bottom: 1px solid #b2b2b2;
    position: relative;
    text-align: center;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

 .mean-container .mean-bar .mobile-menu-nav-back:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(248, 248, 248, 0.95);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}


a.logo-mobile img {
    width: 165px;
}

a.logo-mobile {
    width: 100%;
    position: relative;
    left: 55px;
}


a.header-search {
    width: 100%;
    position: relative;
    top: 3px;
    text-align: right;
    right: 30px;
}

 .mean-container a.meanmenu-reveal {
    float: none !important;
    position: absolute;
    top: 0;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    padding: 16px 14px 12px;
}
 .mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 7px 18px 11px;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: 700;
    float: right;
}


#toggle {
  width: 28px;
  height: 30px;
  margin: 10px auto;
}

#toggle div {
  width: 100%;
  height: 4px;
  background: #000;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}

#toggle.on .two {
  opacity: 0;
}

#toggle.on .three {
  transform: rotate(-45deg) translate(6px, -7px);
}


#menu {
    color: white;
    border: 1px solid white;
    width: 100%;
    /*height: auto;*/
    height: 100vh;
    padding: 10px;
    border-radius: 3px;
    line-height: 100px;
    text-align: left;
    margin: auto;
    display: none;
    background-color: #F8F8F8 !important;
}


/*.mean-container .mean-nav > ul {
    overflow-y: scroll;
    height: 100vh;
     padding-left: 10px;
}

ul.dropdown-menu-col-1 {
width: 100%;
}
*/

nav#menu ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}


nav#menu ul li a:hover{
  color: #43bded !important;
}

ul.dropdown-menu-col-1.row .col-md-5 {
  padding-top: 20px;
  padding-bottom: 0!important;
}

ul.dropdown-menu-col-1 .col-md-12 {
  padding-top: 20px;
  padding-bottom: 0 !important;
}

ul.dropdown-menu-col-1 .col-md-3{
  padding-bottom: 0!important;
}

nav#menu ul li {
  line-height: 25px;
  cursor: pointer;
  /*padding-bottom: 25px;*/
  padding-left: 10px;
  padding-right: 60px;
}

nav#menu ul li.col-md-4 {
  padding-bottom: 0;
}

nav#menu ul li.col-md-4:first-child {
   padding-bottom: 0; 
  padding-top: 20px;
}

ul.dropdown-menu-col-1 ul li a {
  color: #0d2d3e !important;
  font-weight: 400 !important;
  font-size: 15px;
}

ul.dropdown-menu-col-1 h5 a {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #0d2d3e !important;
}

nav#menu ul li.active ul {
    display: block !important;
}*/

.mean-container .mean-nav {
    float: none !important;
    background: transparent !important;
}

  .main-banner-wrap-layout2 {

        padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    z-index: 0;
     height:auto; 
    /* display: -webkit-box; */
    display: -ms-block;
     display:block !important; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

 .main-banner-box-layout2 .item-sub-title {
    font-size: 15px;
    margin-bottom: 20px;
}

.main-banner-box-layout2 .item-main-title {
    font-size: 23px;
    line-height: 35px;
}

.main-banner-box-layout2 p {
    font-size: 16px;
    width: 100%;
    margin-bottom: 28px;
}

.main-banner-box-layout2 .banner-btns .item-btn {
    margin-right: 10px;
}
.btn-fill {
    padding: 10px 14px;
    font-size: 14px;
}

.btn-ghost{
 padding: 10px 14px;
 font-size: 14px;
}


.about-wrap-layout2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.about-wrap-layout2 .compress-right-side {
    padding-left: 30px;
    padding-right: 20px;
}

.about-box-layout2 .content-holder .item-title {
    font-size: 23px;
    line-height: 35px;
}

.row.about-block h2 {
    font-size: 20px;
}

.section-padding-bottom-md{

  padding-bottom: 40px;
}

.section-heading.heading-dark .heading-main-title {
    font-size: 23px;
}

.section-heading .heading-paragraph {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: #232323;
}

.icon-color.icon-color-california::after{
  width: 80px;
  height: 80px;
}

.icon-color.icon-color-emerald::after{
  height: 80px;
  width: 80px;
}

.icon-color.icon-color-royal-blue::after{
  width: 80px;
  height: 80px;
}

.icon-color.icon-color-dodger-blue::after{
  height: 80px;
  width: 80px;
}

.icon-color.icon-color-sunset-orange::after{
  height: 80px;
  width: 80px;
}

.service-box-layout2 .item-title a {
    font-size: 20px;
}


.service-box-layout2 .item-title{
  margin-top: 10px;
  margin-bottom: 10px;

}

.service-box-layout2 p {
    font-size: 16px;
    padding: 0;
}

.service-box-layout2 {
    padding-top: 45px;
    padding-bottom: 25px;
}

.hs-100{
  height: auto;
}


.service-wrap-layout2 .col-sm-3{text-align: -webkit-center;
  text-align: -moz-center;
    margin-bottom: 20px;

  }

  .blog-box-layout2 {
    margin-bottom: 30px;
    height: auto;
}

.section-padding-md{
  padding-bottom: 40px;
}

.case-box-layout {
    display: block;
}


.footer-top-layout2{
  padding-bottom: 20px;
}

.footer-bottom-layout2 .copy-right-wrap .copy-right-text {
    text-align: center;
    font-size: 15px;
}

footer .footer-widget-heading {
    font-size: 18px;
}

header {
    display: none;
}

.section-padding-md-equal {
    padding-top: 10px;
    padding-bottom: 10px;
}

.explore-link-main {
    text-align: center;
    padding: 15px 0;
}


.about-box-layout2 img {
    max-width: 100%;
    height: auto;
}

.about-box-layout2 .figure-holder .animated-figure .mask-image{
  -webkit-mask-size: contain;
    mask-size: contain;
}

.main-service-layout2 .col-sm-2 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}


.newsletersection .leftcontentarea h2 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
}

div#mc_embed_signup_scroll {
    text-align: center;
}

div#mc_embed_signup_scroll .mc-button {
    margin-top: 20px;
}



/*--------------------search-----------------*/


.template-search {
    position: fixed;
    top: 30px;
    left: -1px;
    width: 100%;
    height: 95px;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

button.searchbtn.collapsed {
    background: transparent;
    border: none;
    color: #43bded;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.template-search .close {
    position: fixed;
    top: 30px;
    right: -3px;
    color: #43bded;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 3px 15px 5px;
    font-size: 36px;
    font-weight: 300;
    border-radius: 2px;
    cursor: pointer;
    /* -webkit-box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* -webkit-transition: all 0.3s ease-in-out; */
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5;
}

.template-search .search-form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.template-search .search-form input[type="text"] {
    width: 90%;
    color: #000;
    font-size: 16px;
    text-align: left;
    border: none;
    margin: 0 auto;
    padding: 10px 10px 10px 30px;
    outline: none;
    /* background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent); */
    border-radius: 50px;
    background: #fff;
    border: 1px solid #43bded;
}
[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

.template-search .search-form input[type="text"]::placeholder {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 85%;
}

.template-search .search-form .search-btn {
    padding: 24px 10px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
        position: absolute;
    right: 12%;
    top: -10.5px;
}

.template-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.template-search .search-form .search-btn i {
    color: #43bded;
    font-size: 17px;
}

.template-search .search-form input[type="text"]::placeholder {
    font-size: 15px;
}

a.header-search:hover i {
    color: #43bded !important;
}

.pt-80 {
    padding-top: 0px;
}


.newsletersection .leftcontentarea h5{
  padding-left: 0;
  font-size: 35px;
}

.newsletersection {
    /* background-color: #54cbf9; */
    padding-top: 50px;
    text-align: center;
    padding-bottom: 50px;
}


.main-banner-wrap-layout2{
      /*background-position: center;*/
          /*height: 100vh;*/
         padding-top: 52px;
         padding-bottom: 50px;
}

.main-banner-box-layout2 img {
    width: 148%;
    height: 445px !important;
    margin-left: -66px;
    margin-top: 40px;
}

.main-banner-box-layout2 {
    margin-top: -45px;
}

img.mobileviewimg {
    display: block;
}

}




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



   .mean-container .mean-bar {
    background: transparent !important;
    float: none;
    padding: 0 !important;
    position: fixed !important;
    top: 0;
    z-index: 7;
}

.mean-bar {
    display: block;
}

.icon-arrow-custom {
    position: absolute;
    display: block;
    top: 17px;
    right: -18px;
}



.icon-arrow {
 position: absolute;
    display: block;
    font-size: 0.7em;
    color: black;
    top: 11px;
    right: -18px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;  
}
  
.icon-arrow:after {
    content: "\f0d7";
    font-family: "fontAwesome";
    color: #3ebced;
    font-size: 20px;
}
.icon-arrow.open {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg); 
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;     
}

 .mean-container .mean-bar,  .mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

 .mean-container .mean-bar {
    background: #ffffff;
    float: left;
    min-height: 42px;
    padding: 5px 0;
    position: relative;
    width: 100%;
    z-index: 999999;
}


.mean-container .mean-bar .mobile-menu-nav-back {
    padding-left: 15px;
    border-bottom: 1px solid #b2b2b2;
    position: relative;
    text-align: center;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

 .mean-container .mean-bar .mobile-menu-nav-back:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(248, 248, 248, 0.95);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}


a.logo-mobile img {
    width: 165px;
}


 .mean-container a.meanmenu-reveal {
    float: none !important;
    position: absolute;
    top: 0;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    padding: 16px 14px 12px;
}
 .mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 7px 18px 11px;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: 700;
    float: right;
}


#toggle {
  width: 28px;
  height: 30px;
  margin: 10px auto;
}

#toggle div {
  width: 100%;
  height: 4px;
  background: #000;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}

#toggle.on .two {
  opacity: 0;
}

#toggle.on .three {
  transform: rotate(-45deg) translate(6px, -7px);
}


#menu {
    color: white;
    border: 1px solid white;
    width: 100%;
    height: 100vh;
    /*height: auto;*/
    padding: 10px;
    border-radius: 3px;
    line-height: 100px;
    text-align: left;
    margin: auto;
    display: none;
    background-color: #F8F8F8 !important;
}


/*.mean-container .mean-nav > ul {
    overflow-y: scroll;
    height: 100vh;
    padding-left: 10px;
}




ul.dropdown-menu-col-1 {
width: 100%;
}*/


nav#menu ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav#menu ul li a:hover{
  color: #43bded !important;
}

ul.dropdown-menu-col-1.row .col-md-5 {
  padding-top: 20px;
  padding-bottom: 0!important;
  max-width: 100%;
}

ul.dropdown-menu-col-1 .col-md-12 {
  padding-top: 20px;
  padding-bottom: 0 !important;
}

ul.dropdown-menu-col-1 .col-md-3{
  padding-bottom: 0!important;
}

nav#menu ul li {
  line-height: 25px;
  cursor: pointer;
  /*padding-bottom: 25px;*/
  padding-left: 10px;
  padding-right: 60px;
}


nav#menu ul li.col-md-4 {
  padding-bottom: 0;
  max-width: 100%;
}

nav#menu ul li.col-md-4:first-child {
  /* padding-bottom: 0; */
  padding-top: 20px;
}

ul.dropdown-menu-col-1 ul li a {
  color: #0d2d3e !important;
  font-weight: 400 !important;
  font-size: 15px;
}

ul.dropdown-menu-col-1 h5 a {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #0d2d3e !important;
}


nav#menu ul li.active ul {
    display: block !important;
}

.mean-container .mean-nav {
    float: none !important;
    background: transparent !important;
}

header {
    display: none;
}


.service-wrap-layout2 .row .col-sm-4 {
    width: 50%;
    margin-bottom: 20px;
}

.service-wrap-layout2 .row {
    flex-wrap: wrap;
}

.service-box-layout2 {
    height: 100%;
}

.service-wrap-layout2 .col-sm-3 {
    width: 50%;
    margin-bottom: 20px;
}

.flip-card-front img {
    width: 315px !important;
}

.flip-card {
    width: 315px;
}

.section-heading .heading-paragraph {
    width: 70%;
}

.section-insight .row .col-lg-4 {
    width: 100%;
    margin-bottom: 20px;
}

.section-insight .row {
    flex-wrap: wrap;
}

.case-box-layout {
    display: block;
}


.main-service-layout2 .col-sm-2 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
}



span.mc-field-group input[type=email] {
    width: 65%;
    margin-bottom: 20px;
}


/*--------------------search-----------------*/


.template-search {
    position: fixed;
    top:30px;
    left: 89px;
    width: 82%;
    height: 95px;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

button.searchbtn.collapsed {
    background: transparent;
    border: none;
    color: #43bded;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.template-search .close {
    position: fixed;
    top: 30px;
    right: -16px;
    color: #43bded;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 3px 15px 5px;
    font-size: 36px;
    font-weight: 300;
    border-radius: 2px;
    cursor: pointer;
    /* -webkit-box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* box-shadow: 0 1px 2px 0px rgb(255 255 255 / 75%); */
    /* -webkit-transition: all 0.3s ease-in-out; */
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5;
}

.template-search .search-form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.template-search .search-form input[type="text"] {
    width: 100%;
    color: #000;
    font-size: 16px;
    text-align: left;
    border: none;
    margin: 0 auto;
    padding: 10px 10px 10px 30px;
    outline: none;
    /* background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent); */
    border-radius: 50px;
    background: #fff;
    border: 1px solid #43bded;
}
[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

.template-search .search-form .search-btn {
    padding: 24px 10px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
        position: absolute;
    right: 12%;
    top: -10.5px;
}

.template-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.template-search .search-form .search-btn i {
    color: #43bded;
    font-size: 17px;
}

.template-search .search-form input[type="text"]::placeholder {
    font-size: 15px;
}

a.header-search:hover i {
    color: #43bded !important;
}

a.logo-mobile {
    width: 100%;
        text-align: left;
        position: relative;
    left: 55px;
}


a.header-search {
    width: 100%;
    position: relative;
    top: 3px;
    text-align: right;
    right: 30px;
}

}



/*-------------------------new-services------------------------*/
@media screen and (min-width: 48em){.up {
    padding-left: 0;
    padding-right: 0;
}
}


.up {
    /*float: left;*/
    display: block;
    margin-right: 3.07692%;
    width: 85.27473%;
    margin-left: 7.36264%;
    clear: both;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 70px;
    padding-bottom: 80px;
}

.-align-center .section-header {
    border-top: 0;
    text-align: center;
}
.section-header {
    margin-top: 0;
    margin-bottom: 30px;
}
.section-header {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: .075em;
    color: #000;
    text-transform: uppercase;
    border-top: 1px solid #000;
    padding-top: 1.5rem;
}


@media screen and (min-width: 73.75rem){ .grid-wall .grid-holder.span-full-width {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
} }

.up>.block-list:last-child {
    padding-bottom: 0;
}
.windows .span-full-width, .windows .is-full-width {
    width: calc(100vw - 17px);
    margin-left: calc(-50vw + 50% + 17px / 2);
}

@media screen and (min-width: 73.75rem){
.grid-wall .grid-holder {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
}
.grid-wall .grid-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.up .block-list {
    position: relative;
}
.block-list {
    margin: 0;
}

.span-full-width, .is-full-width {
    width: 100%;
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(-51vw + 50.6%);
}



  .grid-item {
    width: 33.33%;
}




.grid-item {
    /*width: 100%;*/
    overflow: hidden;
    position: relative;
}

.background-card {
    background: #f0f0f0;
    position: relative;
}

.background-card-bg.background-image-1{
  background-image: url(/newhome/cybersecurity.jpg);
}

.background-card-bg.background-image-2{
  background-image: url(/newhome/riskmanagment.jpg);
}

.background-card-bg.background-image-3{
  background-image: url(/newhome/cloudservices.jpg);
}

.background-card-bg.background-image-4{
  background-image: url(/newhome/it-change-management.jpg);
}

.background-card-bg.background-image-5{
  background-image: url(/newhome/fedramp.jpg);
}

.background-card-bg.background-image-6{
  background-image: url(/newhome/itgoverence.jpg);
}

.background-card .background-card-bg {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1.01, 1.01);
    transform: translateZ(0) scale(1.01, 1.01);
    -webkit-transition: opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out,opacity 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out,opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.background-card.background-image-1 .background-card-overlay,
.background-card.background-image-2 .background-card-overlay,
.background-card.background-image-3 .background-card-overlay,
.background-card.background-image-4 .background-card-overlay  {
    opacity: 0.5;
}

.background-card .background-card-overlay.-color-darkblue{
  background-color: #051c2c;
}

.background-card .background-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    margin-top: -100%;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.background-card .text-render {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12%;
}

.grid-wall.-text-align-center .background-card .text-wrapper {
    text-align: center;
}

.background-card .text-wrapper {
    height: 100%;
    position: relative;
}

.grid-wall.-vertical-centered .background-card .text-wrapper .headline {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.grid-wall.-display-light .background-card .text-wrapper .headline {
    color: #fff;
}
.background-card .text-wrapper .headline {
    display: inline-block;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 20%);
}

.background-card .background-card-arrow {
    margin-top: 10px;
    -webkit-transition: opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out,opacity 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out,opacity 0.4s ease-in-out,-webkit-transform 0.4s ease-in-out;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
    opacity: 0;
}

.mck-link-arrow-icon:before {
    content: '\f061';
    font-family: 'FontAwesome';
    font-weight: 700;
}

.background-card:hover .background-card-bg {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.9;
}

.background-card.background-image-1:hover .background-card-overlay,
.background-card.background-image-2:hover .background-card-overlay,
.background-card.background-image-3:hover .background-card-overlay,
.background-card.background-image-4:hover .background-card-overlay {
    opacity: 0.9;
}

.background-card:hover .background-card-arrow {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}


.navbar-layout2 .header-search:hover i {
    color: #43bded !important;
}

@media(max-width: 767px){
  .grid-item {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.up{
  padding-top: 30px;
  padding-bottom: 40px;
}

.section-insight .col-lg-4.col-sm-6.col-12 {
    padding-left: 0;
}



.case-study-sec .col-lg-6.col-sm-6.col-12 {
    padding-left: 0;
}




}

@media(min-width: 768px) and (max-width:1023px){
  .grid-item {
    width: 50%;
    overflow: hidden;
    position: relative;
}
.up{
  padding-top: 30px;
  padding-bottom: 40px;
}



.section-insight .col-lg-4.col-sm-6.col-12 {
    padding-left: 0;
}

.section-insight .container{
  max-width: 100%;
}

.case-study-sec .col-lg-6.col-sm-6.col-12 {
    padding-left: 0;
}

.case-study-sec .container{
  max-width: 100%;
}
}


@media(max-width: 767px){


.debugger {
  position: absolute;
  left: 50%;
  top: 0;
}

/** {
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", Arial, sans-serif;
}*/

.nav-wrapper {
  position: relative;
  width: 300px;
  height: 100vh;
  transition: transform 0.3s;
  transform: translateX(-100%);
}
.nav-wrapper.show-menu {
  transform: none;
}

.js-nav-toggle {
  position: absolute;
  top: 0;
  right: -60px;
  width: 43px;
  height: 40px;
  margin: 15px 0 0 15px;
  display: block;
  float: left;
  padding: 0;
  color: #345;
  border: 2px solid #345;
  z-index: 2;
}
.js-nav-toggle span {
  position: relative;
  background-color: #345;
  height: 2px;
  display: block;
  width: 22px;
  margin: 17px auto 0;
  transition: all 0.4s;
  transition-delay: 0.3s;
}
.js-nav-toggle span:before, .js-nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 0;
  left: 1px;
  top: 50%;
  margin-top: -7px;
  transition: all 0.3s 0.3s;
}
.js-nav-toggle span:before {
  box-shadow: 0 14px 0 1px #345;
}
.js-nav-toggle span:after {
  box-shadow: 0 0 0 1px #345;
}
.show-menu .js-nav-toggle span {
  background-color: transparent;
}
.show-menu .js-nav-toggle span:before {
  transform: rotate(-45deg);
}
.show-menu .js-nav-toggle span:after {
  transform: rotate(45deg);
}
.show-menu .js-nav-toggle span:before, .show-menu .js-nav-toggle span:after {
  margin-top: 0;
  box-shadow: 0 0 0 1px #345;
}

nav {
  position: absolute;
  left: 0;
 top: 50px;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 0 5px 1px #ddd;
  background-color: #fafafa;
}
nav .nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.45em 0.6em;
  background-color: #43bdede6;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  transition: backgroun-color 0.2s;
  /*display: none;*/
}

nav .nav-toggle.back-visible{
  display: block;
}

nav .nav-toggle:hover {
  background-color:  #43bdede6;
}
nav .nav-toggle.back-visible .nav-back {
  opacity: 1;
}
nav .nav-toggle.back-visible .nav-title {
  transform: translateX(40px);
}
nav .nav-title {
  position: absolute;
  left: 0;
  top: -1.5em;
  padding-left: 0.7em;
  transition: transform 0.3s;
  height: 2em;
}
nav .nav-back {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
      top: -33px;
}
nav .nav-back:before, nav .nav-back:after {
  content: "";
  position: absolute;
  top: 50%;
}
nav .nav-back:before {
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid currentcolor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
nav .nav-back:after {
  left: 28%;
  width: 15px;
  height: 2px;
  background-color: currentcolor;
  margin-top: -1px;
}
nav a {
  display: block;
  position: relative;
  padding: 0.7em;
  border-bottom: 1px solid #eee;
  color: #999;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
nav a:hover {
  color: #333;
  background-color: #efefef;
}
nav ul {
  list-style: none;
  padding: 45px 0 0;
  transition: transform 0.3s;
  background-color: #fafafa;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
 
}


nav ul ul {
  display: none;
  left: 100%;
}
nav li.has-dropdown > a {
  padding-right: 2.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*overflow: hidden;*/
}
/*nav li.has-dropdown > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 9px;
  height: 9px;
  border: 1px solid currentcolor;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translateY(-90%) rotateZ(-45deg);
  transition: transform 0.3s;
  transform-origin: 100%;
}*/
nav li.nav-dropdown-open ul {
  display: block;
}

.nowactive {
  display: block;
}

}


@media(min-width: 768px) and (max-width: 1023px){

.debugger {
  position: absolute;
  left: 50%;
  top: 0;
}

/** {
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", Arial, sans-serif;
}*/

.nav-wrapper {
  position: relative;
  width: 300px;
  height: 100vh;
  transition: transform 0.3s;
  transform: translateX(-100%);
}
.nav-wrapper.show-menu {
  transform: none;
}

.js-nav-toggle {
  position: absolute;
  top: 0;
  right: -60px;
  width: 43px;
  height: 40px;
  margin: 15px 0 0 15px;
  display: block;
  float: left;
  padding: 0;
  color: #345;
  border: 2px solid #345;
  z-index: 2;
}
.js-nav-toggle span {
  position: relative;
  background-color: #345;
  height: 2px;
  display: block;
  width: 22px;
  margin: 17px auto 0;
  transition: all 0.4s;
  transition-delay: 0.3s;
}
.js-nav-toggle span:before, .js-nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 0;
  left: 1px;
  top: 50%;
  margin-top: -7px;
  transition: all 0.3s 0.3s;
}
.js-nav-toggle span:before {
  box-shadow: 0 14px 0 1px #345;
}
.js-nav-toggle span:after {
  box-shadow: 0 0 0 1px #345;
}
.show-menu .js-nav-toggle span {
  background-color: transparent;
}
.show-menu .js-nav-toggle span:before {
  transform: rotate(-45deg);
}
.show-menu .js-nav-toggle span:after {
  transform: rotate(45deg);
}
.show-menu .js-nav-toggle span:before, .show-menu .js-nav-toggle span:after {
  margin-top: 0;
  box-shadow: 0 0 0 1px #345;
}

nav {
  position: absolute;
  left: 0;
 top: 50px;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 0 5px 1px #ddd;
  background-color: #fafafa;
}
nav .nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.45em 0.6em;
  background-color: #43bdede6;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  transition: backgroun-color 0.2s;
}
nav .nav-toggle:hover {
  background-color:  #43bdede6;
}
nav .nav-toggle.back-visible .nav-back {
  opacity: 1;
}
nav .nav-toggle.back-visible .nav-title {
  transform: translateX(40px);
}
nav .nav-title {
  position: absolute;
  left: 0;
  top: -1.5em;
  padding-left: 0.7em;
  transition: transform 0.3s;
  height: 2em;
}
nav .nav-back {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
      top: -33px;
}
nav .nav-back:before, nav .nav-back:after {
  content: "";
  position: absolute;
  top: 50%;
}
nav .nav-back:before {
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid currentcolor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
nav .nav-back:after {
  left: 28%;
  width: 15px;
  height: 2px;
  background-color: currentcolor;
  margin-top: -1px;
}
nav a {
  display: block;
  position: relative;
  padding: 0.7em;
  border-bottom: 1px solid #eee;
  color: #999;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
nav a:hover {
  color: #333;
  background-color: #efefef;
}
nav ul {
  list-style: none;
  padding: 45px 0 0;
  transition: transform 0.3s;
  background-color: #fafafa;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
nav ul ul {
  display: none;
  left: 100%;
}
nav li.has-dropdown > a {
  padding-right: 2.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*overflow: hidden;*/
}
/*nav li.has-dropdown > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 9px;
  height: 9px;
  border: 1px solid currentcolor;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translateY(-90%) rotateZ(-45deg);
  transition: transform 0.3s;
  transform-origin: 100%;
}*/
nav li.nav-dropdown-open ul {
  display: block;
}

.nowactive {
  display: block;
}




}


/*--------------------------offcanvas-new----------------------------*/
#offcanvas-nav ul.offcanvas-menu {
    width: 1130px !important;
    left: 101% !important ;
    position: absolute;
    padding-left: 20px;
    padding-right: 20px;
    top: 15%;
    visibility: hidden;
}

span.icon-arrow-offcanvas.fa-solid.fa-angle-right {
    position: absolute;
    right: 24px;
}

#offcanvas-nav ul.offcanvas-menu.open {
    visibility: visible;
    
}

#offcanvas-nav .dropdown-menu-col-1 li ul li {
  padding-left: 0;
}

/*ul#offcanvas-nav li > a {
    display: flex;
    align-items: center;
}*/



/*-------------------------mobile-new-toggle------------------*/
@media(max-width: 767px){
  .meanmenu-revealnew #toggle .menu-btn-icon {
  padding: 10px;
  display: block;
  width: 23px;
  position: relative;
  height: 28px;
  text-align: center;
  /*background-color: #ffffff;*/
  border-radius: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: -14px;
}



.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(1n) {
    width: 30%;
    -webkit-animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}
.meanmenu-revealnew #toggle .menu-btn-icon span {
    position: absolute;
    height: 2px;
    right: 13px;
    z-index: 2;
    background-color: #43bded;
    -webkit-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(2n) {
    width: 45%;
    -webkit-animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(3n) {
    width: 45%;
    -webkit-animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes open_first_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



@keyframes open_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
}


@keyframes open_third_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(1n) {
    -webkit-animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span {
    width: 43%;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(2n) {
    -webkit-animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(3n) {
    -webkit-animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes close_first_bar {
  0% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
}


@keyframes close_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}
}



@keyframes close_third_bar {
  0% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
}






}




/*-------------------------tablet-new-toggle------------------*/

@media(min-width: 768px) and (max-width: 1023px){
  .meanmenu-revealnew #toggle .menu-btn-icon {
  padding: 10px;
  display: block;
  width: 23px;
  position: relative;
  height: 28px;
  text-align: center;
  /*background-color: #ffffff;*/
  border-radius: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: -14px;
}



.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(1n) {
    width: 30%;
    -webkit-animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}
.meanmenu-revealnew #toggle .menu-btn-icon span {
    position: absolute;
    height: 2px;
    right: 13px;
    z-index: 2;
    background-color: #43bded;
    -webkit-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(2n) {
    width: 45%;
    -webkit-animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle .menu-btn-icon span:nth-child(3n) {
    width: 45%;
    -webkit-animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: open_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes open_first_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



@keyframes open_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
}


@keyframes open_third_bar {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}



.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(1n) {
    -webkit-animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_first_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span {
    width: 43%;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(2n) {
    -webkit-animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_second_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.meanmenu-revealnew #toggle.on .menu-btn-icon span:nth-child(3n) {
    -webkit-animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: close_third_bar 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}



@keyframes close_first_bar {
  0% {
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
}


@keyframes close_second_bar {
  0%, 50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
51%, 100% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}
}



@keyframes close_third_bar {
  0% {
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
50% {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
}


}


/*--------------------other-pages-css---------------*/
.data_journey.contactus {
    padding: 130px 0;
}

.data_journey.thankyou {
    padding: 110px 0;
}

.page-not-found {
    padding: 90px 0;
}

.landingpagecontent {
    padding: 110px 0 !important;
}

/*img.tckrlogo {
    margin-top: 70px;
}*/

.otherindustrielist .slick-next:before, .otherindustrielist .slick-prev:before{
  line-height: 38px;
  cursor: pointer;
}

body.services{
  padding: 0;
}

.services-banner {
    padding-top: 70px;
}

.full-banner-video {
    padding-top: 68px !important;
}

.full-banner-video .banner-inner-text {
    padding-top: 65px !important;
}

.promo-description a.headline:after{
  line-height: 29px !important;
}


.bullet-list li{
  list-style: disc !important;
}


@media(max-width: 767px){
  .services-banner {
    padding-top: 50px;
}

.full-banner-video {
    padding-top: 50px !important;
}

.data_journey.contactus {
    padding: 130px 0;
    padding-bottom: 0px;
}
}


@media(min-width: 768px) and (max-width: 1023px){
  .full-banner-video {
    padding-top: 50px !important;
}

.services-banner {
    padding-top: 50px;
}
.data_journey.contactus {
    padding: 130px 0;
    padding-bottom: 0px;
}
}

.newsletersection {
    background-color: transparent !important;
}

.newsletersection .col-md-8 {
    max-width: 20% !important;
    flex: 0 0 20% !important;
    display: none !important;
}

.newsletersection .col-md-4 {
    max-width: 68% !important;
    flex: 0 0 68% !important;
}

div#newltrid {
    background: transparent !important;
}

div#newltrid iframe{
background: transparent !important;
} 

.newsletersection-1 {
  display: none;
}
.footer-top-layout2 {
  padding: 30px 0 0;
}

.main-banner-wrap-layout2 {
    background-image: url(/newhome/wilsoncgrpbanner-02.png);
    background-repeat: no-repeat;
    background-size: cover;
}
/*-----------------database-content-css-----------------*/
.aboutpagecompanynew {
    display: none;
}