/*
Default Style
============================*/


@font-face{
    font-family:'Nunito ';
    src: url(assets/fonts/Nunito-VariableFont_wght.ttf);
}

a,
body,
div,
h1,
h2,
h3,
h4,
h5,
li,

select,option,
span,
ul {
       font-family: 'Poppins', sans-serif;
}
img, svg {
  
    pointer-events: none;
}
p{font-family: 'Nunito', sans-serif;}
body {
  padding: 0;
  margin: 0;
  font-size: 15px;overflow-x: hidden;
  line-height: 1.7;
 
  color: #212121;
}
/*******************************navbar end***************************************/

a.menu-item.first-item.active:after {
      
     content: "";
    display: block;
    width: 68px;
    position: absolute;
   background-color: #D81733;
    height: 3px;
    top: 46px;

}
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  gap: 40px;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  flex-shrink: 0;
  padding: 10px 0;
}
a.menu-item.first-item.new-buttion {
  background: #DF1736;
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff;
  margin-left: 12px;
}
.navbar .logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #000;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #535663;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #e9ecef;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 80px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}
.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}
.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}
.navbar .menu-item:hover {
  color:#d81733;
}

.menu-item.first-item {
  padding: 1.5rem 13px;color: #fff;    font-weight: 600;
}
.banner-color .menu-item.first-item{color: #002A4D;}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  top: 80px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #E8ECFF;
  padding:2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 23px;
}

.content .col section {
    margin-bottom: 10px;padding-bottom: 10px;
}
.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
    color: #002A4D;
    font-size: 15px;
    line-height: 2rem;
    font-weight: 600;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
    border-bottom: 1px solid #DF1736;padding: 0px;    padding-bottom: 11px;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 0rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* container */




/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  /* background: #132f48; */
  background: white;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: white;
}

/* Responsive style */

@media screen and (max-width: 1024px) {
  
  .navbar {
    height: 70px;
    padding: 10px 30px;
  }
  
  .navbar .logo img {
    width: 150px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed!important;
    height: 100%;
    max-height: initial;
  
    width: 100%;
    top: 1px!important;
    left: 0;
    background: #fcfcfc;
    display:none;
    transform: translateX(-170vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .menu-items.open {
    transform: translateY(0);
    display: block;
  }
  

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col .mega-links li {
    margin: 0;
  }
}


/*******************************navbar end***************************************/
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@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;
}
/*img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}*/

a.typewrite {
    background: transparent!important;    padding: 0px!important;text-transform: uppercase;
}

.type-wrap::first-letter{
  color: #b91627!important;

  
}

section#banner {
    padding:129px 9px 165px;
}
.slider {
  max-width: 100%;
  margin: 0px auto 30px auto;}

.slide-viewer {
    position: relative; /* needed for IE7 */
    overflow: hidden;
    height: 480px;}

.slide-group {
    width: 100%;
    height: 100%;
    position: relative;}

.slide {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;}

.slide:first-child {
    display: block;}


/********** BUTTONS **********/
.slide-buttons {
  text-align: center;}


.slide-btn {
    border: none;
    /* background: none; */
    /* color: #000; */
    position: relative;
    display: inline-block;
    width: 24px;
    height: 11px;
    background-color: #A9A9A9;
    color: #A9A9A9;
    margin-right: 4px;
    margin-top: 58px;
    padding: 4px 2px;
    /* font-size: 200%; */
    line-height: 0.5em;}

.slide-btn.active, .slide-btn:hover {
  background-color: #0172D2;color: #0172D2;
  cursor: pointer;}
.banner-color{

    background: url(../img/bnr-bv.png)no-repeat center center;
    /* background-size: cover; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.banner-color-home {
   background: url(../img/vriba-bnr.webp)no-repeat center center;

    /* background-size: cover; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.banner-text {
    padding: 10px;
    margin-top: 6%;
}


   .banner-text p{color: rgba(33, 33, 33, 1);}
.banner-text p {
    font-size: 20px;
    color: #fff;
    width: 100%;
    line-height: 28px;
    margin-bottom: 27px;
    margin-top: 0px;
}


.banner-text h1.type-wrap a{ background:#DF1736;
   padding: 7px 18px;
    border-radius: 76px;
    color: #ffffff;font-weight: 700;

    text-decoration: none;}
.banner-text  a{    background:#DF1736;
   padding: 7px 18px;
    border-radius: 76px;
    color: #fff;font-weight: 700;

    text-decoration: none; }

.banner-right-image img{width: 85%;}



.banner-text h1{     color: #fff;
    -webkit-background-clip: text;
    font-weight:600;
    font-size: 40px;
    padding-bottom: 2px;}



.banner-text h2{   font-weight: 600;
   font-size: 27px;
    line-height: 1.5; }
  .banner-text h1 div#text-1  {
    color: #0172d2!important;
}
   
}

    .abt-text h2{background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;    font-weight: 700;
    font-size:44px;}

 

    .abt-text h2{background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;    font-weight: 700;
    font-size:41px;}

    section#about-vriba {
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 4%;
    padding-right: 4%;

}
  section#about-vriba img{width: 100%;}
   .abt-text p{width: 87%;    font-size: 16px;
    color: #000;
    font-weight: 500;    margin-bottom: 7px;
}

section#about-vriba ul {
    padding: 0px 18px;
}

#work-our{ 
    padding-bottom: 3%;
    padding-left: 4%;
    padding-right: 4%;    margin-top: 0%;}

    #work-our h2 {
    background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 40px;    padding-top: 16px;
}
  #work-our p{       width: 57%;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 auto;
}

.our-client{background: url(../img/client.png);background-size: cover;padding: 30px 2px}

.our-client img {
    aspect-ratio: 3 / 2;
    width: 11%;
    /* margin: 0 auto; */
    object-fit: contain;
    margin-right: 34px;
}
.logo-client {
    text-align: center;
    padding-top: 25px;padding-left: 10px;
}


#services{ 
    padding-bottom: 3%;
    padding-left: 4%;
    padding-right: 4%;}

    #services h2 {
    background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 40px;    padding-top: 16px;
}


/*********************************service------------------------------*****/


.services-section {
     min-width: 100%;
  display: flex;
  justify-content: space-between;    margin-bottom: 8%;
}
.services-section .card {
     width: 315px;
    text-align: center;
    position: relative;
    background: #fff;
    margin: 0 11px;
    border-radius: 10px;
    z-index: 10;
    padding:21px 21px 44px;
    transition: transform 0.8s;
}
.services-section .card .industry-btnn {
    position: absolute;
    bottom: 18px;
    left: 31%;display: none;
}
.services-section .card:hover .industry-btnn{display: block;}
.services-section .card .icon {
      width: 60%;
    height: 137px;
    /* background: #fff; */
    align-items: center;
    justify-content: center;
    display: flex;
    /* font-size: 80px; */
    border-radius: 50%;
    /* color: #007bff; */
    /* border: 20px solid #007bff; */
    margin: -75px auto 0;
    transition: transform 1s;
}
.services-section .card .icon img{width: 100%;}
.services-section .card h2 {
 
  width: 73%;
  text-align: center;
  font-size: 23px;
     text-transform: capitalize;
  margin: 9px auto;
  position: relative;
  background: #fff;color: #222E6A;
  line-height: 35px;font-weight: 700;
}


.services-section .card p {
  font-size: 16px;text-align:center;

}
.services-section .card  a {
    text-decoration: none;
    color: #000;
}


.new-background{background: #222E6A;
      padding-top: 8%;
    padding-left: 8%;
    padding-right: 8%;
      padding-bottom: 10px;
}

/*******************************************************************/

#why-choose-us{ background: url(../img/why.webp);background-size: cover;
    padding-bottom: 3%;padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;    margin-bottom: 19px;}

    .whyus h2 {
    background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
 -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 40px;    padding-top: 16px;
}
  .whyus p{    width:78%;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 auto;
}
  .why-text hr {
       width: 58%;
    height: -2px;
    border: 2px solid #DF1736;
    opacity: 1;
    margin: 12px auto;
}

 .why-text{background: #fff;border-radius: 10px;}
 .why-text {
  background: #fff;
    border-radius: 10px;
    width:100%;min-height: 240px;
    text-align: center;
    padding: 33px 12px;
    margin: 47px auto;
}
.why-text p {
    margin-bottom: 0px;
}
.why-text span{color: #0172D2;
    font-size: 53px;
    font-weight: 700;}

   .why-text h5{color: #222E6A;font-weight: 600;}






/********************************************************/
.latest-blog-posts {
  position: relative;    margin-bottom: 14px;
}
.latest-blog-posts .container-fluid {
  padding: 0px 60px;
  position: relative;
  max-width: 1230px;
}
.latest-blog-posts .thumbnail {
  margin:10px 4px;
}
.latest-blog-posts .customNavigation {
  transform: translateY(-50%);
  top: calc(50% - 37px);
  position: absolute;
  width: 100%;
  left: 0;
}
.latest-blog-posts .customNavigation > span {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
}
.latest-blog-posts .pager-left {
  left: calc(0% + 15px);
}
.latest-blog-posts .pager-right {
  right: calc(0% + 15px);
}
.latest-blog-posts .next, .latest-blog-posts .prev {
  font-size: 28px;
  color:  #DF1736;
}




.owl-theme .owl-controls .owl-page span {
    display: block;
        width: 24px!important;
    height: 6px!important;
    margin: 5px 4px!important;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 0px!important;
    background: #A9A9A9!important;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1;  background: #0172D2!important;
}
a.blog-thumb-img img{width: 100%;}
.caption h4 a{    color: #002A4D;
    font-size: 20px;
   text-decoration: none;}
    .caption h4{  padding-top: 15px;}

.caption p{color: #000;    margin-bottom: 3px;
}
.caption a{text-decoration: none;}

.caption {    padding: 10px;border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    -webkit-box-shadow:0 8px 13px -8px rgb(0 0 0 / 29%);
}



/***************************************************************/
.testimonial-area {
  background: url(../img/cb.jpg);background-size: cover;
  position: relative;
  z-index: 2;
padding:99px 0px 43px;
}
.testimonial-area .owl-carousel {
  overflow: hidden;
  padding: 0 20px;
/*  margin: 0px -40px;*/
  padding-right: 40px;
}
.testimonial-area .owl-stage-outer {
  padding: 30px 50px;
  margin-left: -34px;
  width: calc(100% + 100px);
}
.single-testimonial {
       background: #fff;
    text-align: center;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-right: 13px;
    width:95%;
    margin: 0 auto;
}
.single-testimonial p {
     color: #000;
    width: 88%;
    font-size: 15px;
    line-height: 23px;
    padding: 8px 0px;
    padding-bottom: 14px;
    position: relative;
    z-index: 3;
}
.single-testimonial::before {
  content: "";
  position: absolute;
  left: -35px;
  top: -35px;
  background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  transform: rotate(180deg);
  background-position: 34px 15px;
}
.single-testimonial::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -34px;
  background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  background-position: 34px 19px;
}
.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.round-1::before {
  content: "";
  position: absolute;
  left: 88px;
  top: -7px;
  width: 50px;
  height: 7px;
  background: #fff;
  border-radius: 30px;
}
.round-1::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 62px;
  width: 7px;
  height: 50px;
  background: #fff;
  border-radius: 30px;
}
.round-2::before {
  content: "";
  position: absolute;
  right: 87px;
  bottom: -7px;
  width: 50px;
  height: 7px;
  background: #fff;
  border-radius: 30px;
  z-index: 1;
}
.round-2::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 62px;
  width: 7px;
  height: 50px;
  background: #fff;
  border-radius: 30px;
  z-index: 1;
}
.client-video {
  padding-right: 15px;
}
.client-info {
  position: relative;
  z-index: 3;
}
.client-info a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  font-size: 22px;
}
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 50px;
}
.client-info h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.client-info span {
  display: inline-block;
  color: #fff;
  font-size: 12px;
}
.sec-title.white-title h2 {
  color: #fff;
}
.owl-dots button {
  background: #fff !important;
  width: 10px;
  height: 10px;
  border-radius: 26px;
  margin: 0 5px;
  transition: 0.3s;
}
.owl-dots {
  text-align: center;
  margin-top: 50px;
}
.owl-dots button.active {
  width: 30px;
}
 .client-test img{   width: 100%;
    margin-top: 30px;}


.ctest h2{color: rgba(0, 42, 77, 1);
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}
.ctest h3 {
    color: rgba(1, 114, 210, 1);
    font-size: 15px;
    font-weight: 500;
    margin-top: 1px;  margin-bottom: 1px;
}

.ctest span {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
}
.ctest {
    text-align: left;
}
.quot {
    position: absolute;
    right: 49%;
    top: 51px;
}
.quot img{    width: 77%;}
.quot1 {
    position: absolute;
    right: 8%;
    top: 51px;
}
.quot1 img{    width: 77%;}



#news{ 
    padding-bottom: 3%;
    padding-left: 4%;
    padding-right: 4%;    padding-top: 2%;}

    #news h2 {
   background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
 -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;margin-bottom: 31px;
    font-size: 40px;    padding-top: 16px;
}

.nt h3 {
    font-size: 16px;
    color: rgba(0, 42, 77, 1);
    padding-top: 10px;
}
.news-text img{width: 100%;}


.icon-news {
    text-align: right;
   
    display: flex;
    justify-content: flex-end;
}
.icon-news a {border: 1px solid #0172D2!important;border-radius: 50px;
width: 22px;
    height: 22px;margin-right: 10px;}
 

 .icon-news a i{ 
    font-size: 12px;
    color: #df1736;
    position: relative;
    right: 4px;
    top: -3px;
}

.nt a{text-decoration: none;}
.nt  {
    padding: 10px;border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;

    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    -webkit-box-shadow: 0 8px 13px -8px rgb(0 0 0 / 56%);
}

/**********************************************************************/

section#contact-us h2 {
  background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 40px;
    padding-top: 38px;
}

section#contact-us p{    width: 95%;
    font-size: 16px;
    color: #000;
    margin-bottom: 35px;
}

   section#contact-us {background:rgba(232, 236, 255, 1);    padding-bottom: 5%;
    padding-top: 2%;}

   section#contact-us label.form-label{color: rgba(0, 42, 77, 1);font-weight: 600;}

   section#contact-us .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;    height: 44px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 13px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;}

    button.btn.btn-primary.customStyle-btn-primary {
       background: #DF1736;
    padding:8px 35px;
    border-radius: 50px;
    color: #fff;font-weight: 700;

    text-decoration: none;
    border: none;
    margin-top: 32px;
}


/***************************************footer*******************************/
.ftr-background-image{background: #002a4d;}

ul.social-media li a {
    border: 1px solid #fff!important;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
footer.footer-top-area.pt-100.pb-70.jarallax {
    padding-top: 3%;
    padding-bottom: 1%;
}
.footer-text p{color: rgba(255, 255, 255, 0.7);
    padding: 16px 16px 1px 1px;    width: 72%;
}

.footer-text h3{    color: #fff;
    font-size: 20px;}
    .footer-text ul{padding: 0px;}
     .footer-text ul li{    list-style: none;
    color: rgba(255, 255, 255, 0.7);margin-bottom: 7px;    display: flex;}

    .footer-text ul li a{color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

 .footer-text ul li  i{font-size: 17px;
    color: #fff;
    margin-right: 7px;}
ul.social-media {
    display: flex;padding: 0px;
}
ul.social-media li{list-style: none;    display: contents;}
ul.social-media li i{color: #fff;    position: relative;
    left: 5px;}
    .copy-right.text-right{text-align: right;}
/***************************************footer end*******************************/

.footer-widget ul {
    width: 50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 10px;
}
footer.footer-bottom-area {
    background: #0172D2;
}
.copy-right p{margin-bottom: 0px;color: #fff;font-size: 12px;    text-align: center;}

section#about-us-inner img{width: 100%;}
section#about-us-inner{position: relative;    padding: 10%;}

.text-about-inner {
    background: #fff;
    text-align: center;
}

.text-about-inner {
    background: #fff;
    text-align: center;
    position: absolute;
    bottom: -149px;
    width: 75%;
    left: 0;
    margin: 0 auto;box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    -webkit-box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    padding: 2rem 6rem;
    right: 0;    border-radius: 10px;
}

.text-about-inner 
 span{    color: #DF1736;
    font-weight: 600;
    margin-bottom: 18px;
}

.text-about-inner  h2 {
      background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 9px;
    font-size: 40px;
    padding-top: 11px;
}
.text-about-inner  p{color: #000;font-size: 16px;}

section#blockqut {
    margin-top: 11%;background: url(../img/a-i.png);background-size: cover;
    padding-top:40px;padding-bottom: 13px;
}
article blockquote {
  width: 100%;
  margin-left: -50px;
  padding: 36px 50px;
  position: relative;
 
  margin-bottom: 28px;
}
article blockquote::before, article blockquote::after {
  top: 0;
  bottom: 0;
  width: 25px;
  content: "";
  position: absolute;

}
article blockquote::before {
  right: 100%;
}
article blockquote::after {
  left: 100%;
}
article blockquote p {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    color: rgba(0, 42, 77, 1);
    font-size: 25px;
}
article blockquote p::before {
      top: -97px;
    left: 29px;

 color: rgba(223, 23, 54, 1);;
    content: "“";
    font-size: 7em;
    position: absolute;
  
}
article blockquote p::after {
     right: -7px;
    color: rgba(223, 23, 54, 1);
    content: "”";
    bottom: -124px;
    font-size: 7em;
    position: absolute;
    /* text-shadow: 19px 0 rgba(223, 23, 54, 1);*/
}


.vriba-team h2 {
  background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 46px;}

 .vriba-team p{color: #000;}



.vriba-team p {
    color: #000;
    width: 58%;
    margin: 0 auto;
    padding-bottom: 3%;
}

  section#vriba-team {    padding-bottom: 2%;
    padding-top: 2%;}


    .txt-tem hr {
    margin:9px 0;
    color: inherit;
    border: 0;
    border-top: 3px solid rgba(1, 114, 210, 1);
    opacity: 1;
    width: 25%;
}
.team-text img{    width: 93%;}

.txt-tem h3 {
        padding-bottom: 0px;
    color: rgba(0, 42, 77, 1);
    font-weight: 700;
    font-size: 21px;
    padding-top: 15px;
    margin-bottom: 0px;
}
.txt-tem p {
    width: 80%;
}

#certified{background: url(../img/certified.png);background-size: cover;padding-bottom: 4%;
    padding-top: 6%;}



.txt-tem span{color:rgba(223, 23, 54, 1);}


#certified h2 {
   background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
 -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 46px;}

#certified p{color: #000;}

#certified img{width: 100%;}



/**************************service***************************/


.ser-txt h2 {
    background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 46px;}

.ser-txt span{color: #002A4D;font-weight: 600;margin-bottom: 10px;}
.ser-txt p {
    color: #000;
    width: 89%;
}

#service-inner img{width: 88%;}

section#service-inner {
    padding-left: 66px;
    padding-right: 58px;padding-bottom: 20px;
}


.ser-txt {
    margin-top: 12%;
    width: 93%;
}
.service-abt{padding: 0px;}
.service-abt li{list-style: none;}

.service-abt li strong {
    color: rgba(1, 114, 210, 1);
    font-size: 19px;
    margin-right: 10px;
    font-weight: 700;}

   .service-abt li{color: rgb(0 0 0);}

  ul.service-abt.disc li{ list-style: disc;}

      ul.service-abt.disc{  padding: 0px 20px;}
.secur{width: 93%!important;}
   .button-service {
    text-align: center;
}

  .button-service a{    background: #DF1736;
    padding: 5px 12px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;}

    .serv-text img{width: 100%;}
    .serv h3 {
     color: rgba(34, 46, 106, 1);
    font-size: 17px;
    font-weight: 700;
}

.serv  {
   

    padding: 12px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    -webkit-box-shadow: 0 8px 13px -8px rgb(0 0 0 / 56%);
}
.serv p{ min-height:101px;
}
.bnr-inr{  background: url(../img/i11.png);
    background-size: cover;
}


section#service-cloud {
    padding-top: 2%;
}

.ser-img img{width: 100%;}
.ser-arrow {
    text-align: center;
    margin-top: 81%;
}
.ser-arrow img{    width: 69%;}


.ser-text {
    padding: 19px 42px;
    box-shadow: 0px 0px 40px -6px rgba(0, 0, 0, 0.16);
    text-align: center;
    width: 79%;background: var(--navi-blue, #002A4D);border-radius: 15px;
    margin-top: 43%;
}
.new-ser-card{background: #fff!important}
.new-ser-card p{color: #000!important;}
.ser-arrow p{  color: #002A4D;
    font-weight: 600;}
.ser-text p{    color: #fff;
    font-weight: 600;}
.serv-btn {text-align: center;}
.serv-btn a{background: rgba(1, 114, 210, 1);
    padding: 8px 15px;
    border-radius: 25px;
    color: #fff;   margin-bottom: 9px;
    text-decoration: none;
    font-weight: 600;}

.ai-text {
 width: 100%;
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    
    align-items: center;
}
.aitext h3 {
    color: #222E6A;
    font-size: 18px;
    font-weight: 600;
}

.aitext p {
    width: 90%;
}
.ai-text img {
    margin-right: 15px;
    width: 14%;
}

.our-ai hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 3px solid #D81733;
    opacity: 1;
    color: brown;
    width: 62%;
}
.our-ai {
    width: 72%;
    margin: 0px 0px 0px 153px;
}


.our-ai h3 {
    color: #222E6A;
    font-size: 18px;
    font-weight: 600;
}

.mac-background {
    background: url(../img/mac-b.png);
    background-size: cover;
    padding: 28px;
}

.mac-background img{width: 100%;}
.ser-txt ul li {
    line-height: 1.7;
    font-weight: 500;
}
.abbtt-vv{  background: url(../img/mac-b.png);
    background-size: cover;
    padding: 28px;}
    .btnserv{text-align: left!important;}



.app-1 {
    padding: 22px;
    border-radius: 20px;
    background: var(--Primary-Blue, #0172D2);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
}
.app-1 p{color: #fff;}
.app-2 p{color: #fff;}
.app-2 {
    padding: 22px;
   
    text-align: center;

border-radius: 20px;
background: var(--Primary-red, #D81733);
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
}
.approach {
    width: 52%;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-top: 22px;
}

.offerings-text {
    text-align: center;    margin-top: 17px;
    margin-bottom: 23px;


}

.offerings-text img {
    width: 40%;
}
.offerings-text p {
    color: #535663;
    width:53%;
    margin: 0 auto;
}
.cloud-inner-text {
      border-radius: 20px;
    padding:7px 8px;
    width:96%;
    min-height:196px;

    background: #FFF;
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.25);
    /* text-align: center; */
    margin: 0 auto;
}

.v-cloud {
    background: url(../img/cloudb.png);
    background-size: cover;
    position: relative;
    padding: 11%;
} 
.v-cloud h3 {
    color: #002A4D;
    font-size: 19px;
    text-align: center;
    font-weight: 600;}

.cloud-inner-text h4 {
    color: #073685;
    text-align: center;
    font-size: 22px;
    font-weight: 600;    min-height: 52px;
}
.cloud-inner-text hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 3px solid #DF1736;
    opacity: 1;
    width: 50%;
    margin: 6px auto;
}

.cloud-inner {
    position: relative;
    top: -41px;
}

.cloud-inner-text ul {
    padding: 0px 17px;    margin-top: 12px;
}

.cloud-inner-text ul li {
    font-size: 11px;
}


.devops-img img {
    width: 90%;
    margin: 0 auto;
}
.devops-img {
    text-align: center;
}

section#devops-benefit {
    padding-top: 3%;
}

.team-text {
    position: relative;
}
.t-b {
    position: absolute;
    bottom: 162px;
}
.t-b1 {
    position: absolute;
    bottom: 188px;
}
.contact-us-why-section {
    text-align: center;
}

.contact-us-why-section a{background: #DF1736;
    padding: 7px 18px;
    border-radius: 76px;
    color: #fff;text-decoration: none;
    position: relative;font-weight: 700;

    left: 12px;}




    .popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;    z-index: 999!important;
    background:rgba(0,0,0,0.75);
}
 
/* Inner */
.pi {
    padding: 23px;
}

.pi h3 {
    color: #101010;
    font-size: 19px;
}
.popup-inner img{width: 100%;}
.popup-inner h2 {
    font-size: 22px;
    padding: 14px;color: #002A4D;
}
/*::-webkit-scrollbar {
    display: none;
}*/

.popup-inner {
       max-width: 700px;
    width: 100%;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    overflow-x: scroll;
    height:685px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
}
 
/* Close Button */
.popup-close {
     width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 21px;
    right: 24px;text-decoration: none;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(0,0,0,0.8);
    font-family: Arial, Sans-Serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}



.popup-scroll{

  max-height: 300px;
  padding:0 1em 0 0;
}
.popup-scroll::-webkit-scrollbar {background-color:#EEE;width:10px;}
.popup-scroll::-webkit-scrollbar-thumb {
  border:1px #EEE solid;border-radius:2px;background:#777;
  -webkit-box-shadow: 0 0 8px #555 inset;box-shadow: 0 0 8px #555 inset;
  -webkit-transition: all .3s ease-out;transition: all .3s ease-out;
  }
.popup-scroll::-webkit-scrollbar-track {-webkit-box-shadow: 0 0 2px #ccc;box-shadow: 0 0 2px #ccc;} 

.services-section.new-serv {
    margin-top: 58px;    min-width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 8%;
}
.services-section.new-serv .card {box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);border: none;
    width: 239px;}
.services-section.new-serv .card .icon {
    width: 38%;}



.services-section.new-serv .card  h3 {
    font-size: 14px;
    font-weight: 400;
}

.ser-textt {
    padding: 19px 15px;
    box-shadow: 0px 0px 40px -6px rgba(0, 0, 0, 0.16);
    text-align: center;
    width: 79%;
    margin-top: 19%;
}

.grc-tools {
    display: flex;
   }

.grc-num h4 {
    color: rgba(1, 114, 210, 1);
    font-size: 33px;
    margin-right: 10px;
    font-weight: 700;
    margin-top: 11px;
}

.grc-text h3 {
    font-size: 17px;
    font-weight: 600;
}

.grc-text p {
    width: 100%;
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.grc-num {
    margin-right: 9px;
}

  .app-support img{  width: 50%;
    margin: 0 auto;
}
.app-int img{width: 90%;}

.business img {
    width: 55%;
}

.img-text-mobility {
    display: flex;
    align-items: center;    margin-bottom: 12px;
}


  .img-text-mobility img{  width: 31%;}


    .img-text-mobility p{ width: 28%;
    margin-left: 26px;
    margin-top: 10px;
    font-weight:700;}


.mobility-solution {
    margin-top: 33px;
    margin-bottom: 11px;
}

.blocktext {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    border-radius: 51px;
    padding: 15px 68px 1px;
    width: 100%;
    margin-bottom:16px;
}
.block-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 73%;
    margin: 0 auto;position: relative;
}
  .blocktext  p{  line-height: 1.1;}
.blocktext  h3 {
    color: #222E6A;
    font-size: 18px;
    font-weight: 600;
}
.block-text img {
    width: 9%;
    position: absolute;
    left: -3%;
    top: 0px;
}
 .revo-img {
    width: 88%;
    margin: 23px auto;
}
    .revo-img img{width: 100%;}

.portfolio-img {
    width: 92%;
    margin: 0 auto;
}


.block-text-1 img {
       width: 14%;
    position: absolute;
    left: -3%;
    top: -2px;
}


.blocktext-1 {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    border-radius: 51px;
    padding:24px 68px 17px;
    width: 100%;
    margin-bottom:16px;
}
.block-text-1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 87%;
    margin: 9px auto;position: relative;
}
  .blocktext-1  p{  line-height: 1;}
.blocktext-1  h3 {
    color: #222E6A;
    font-size: 18px;
    font-weight: 500; line-height: 1;
}

.quality-testing {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    padding: 35px;
    text-align: center;
    border-radius: 7px;
    width: 91%;
    margin: 0 auto;
}

.text-quality {
    width: 97%;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
  background: var(--Blue-Gradient, linear-gradient(135deg, #7D75E0 6.38%, #2FBAF5 100.27%));box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    margin: 15px auto;
}
.three-section{margin-bottom: 20px;}


.saq-service {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    padding: 0px;
    text-align: center;
    border-radius: 15px;
    width: 83%;
    margin:8px auto;
}

.saq-service h2{background: var(--Primary-red, #D81733);    font-size: 18px;
    padding: 22px;color: #fff;border-radius: 20px 20px 0px 0px;    line-height: 1.4;}

.saq-service1 h2{background: var(--Primary-Blue, #0172D2);    font-size: 18px;
    padding: 22px;color: #fff;border-radius: 20px 20px 0px 0px;    line-height: 1.4;}

    .saq-service1 p{    padding: 15px;min-height: 132px;}
       .saq-service p{    padding: 15px;}


.saq-service1 {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    padding: 0px;
    text-align: center;
    border-radius: 15px;
    width: 83%;
    margin: 8px auto;
}

.opti {
    width: 70%;
    margin: 0 auto;
}


.itsm-inner {
  height: 510px;
  border-radius: 20px;
  background: #FFF;
  text-align: center;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
  width: 245px;
  padding: 9px 15px;
  margin-right: 10px;
}
.itsm-inner hr {
    border: 2px solid#0172D2 ;
    opacity: 1;
    width: 47%;
    margin: 0 auto;
}
.itsm-inner  h3{color: var(--navi-blue, #002A4D);
text-align: center;

font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 600;
}
.itsm-inner span{color: var(--Primary-Blue, #0172D2);
text-align: center;
font-family: Nunito;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 115%; /* 73.6px */}

.itsm-inner ul {
  text-align: left;
  margin-top: 14px;
  min-height: 243px;
  padding-left: 20px;
}
.itsm-inner ul li {
    font-size: 13px;
}
.itsm-inner h4{color: var(--navi-blue, #002A4D);
text-align: center;
font-family: Nunito;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 115%; /* 22.467px */}

/********************************************/

.new-itsm span{color: var(--Primary-red, #D81733);
text-align: center;
font-family: Nunito;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 115%; /* 73.6px */}


.new-itsm hr {
    border: 2px solid#D81733 ;
    opacity: 1;
    width: 47%;
    margin: 0 auto;
}


.itsm-section {
    display: flex;
    justify-content: space-evenly;
}
.ser-text.ser-textt.new-ser-card{width:315px;    margin-top: 0%;
 }
.ser-text.ser-textt.new-ser-card p {
    color: #fff;
    font-weight: 600;
    padding: 78px 0px;
}
.cont-flu {
    padding-left: 50px;
    padding-right: 50px;
}

.banner-text p a{font-size: 20px;
    color: #fff;
    width: 100%;
    line-height: 28px;
    margin-bottom: 27px;
    margin-top: 0px;
    background: transparent;
    padding: 0px;
    font-weight: 400;}

      .vteam h2 {
  background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 28px;
    font-size: 46px;
}

.serv-inner-career{padding-bottom: 0px!important;}
   .works-future h3{ color: rgba(34, 46, 106, 1);
    font-size: 18px;
    font-weight: 700;    margin-top: 13px;}

   .works-future{ padding: 12px;    min-height: 234px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 56%);
    -webkit-box-shadow: 0 8px 13px -8px rgb(0 0 0 / 43%);
    margin: 26px 0px 44px;}


    .box {
    border: 1px solid #001371;
border-radius: 4px;
padding: 1em 1em;
margin: 2em 0!important;
text-align: left;border-radius: 5px;
}


 .box h4, .box li {
background: linear-gradient(97.4deg, #001371 0.66%, #005BA8 43.78%, #003D71 94.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 17px;
}

 .box .button {
    background: #DF1736;
    padding:6px 42px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
}

.box ul {
margin: 0;
padding: 0;
list-style-type: none;
}
 
.function
{
  display: block;font-size: 16px;
    color: #000;
    font-weight: 500;
}

.box-col
{
  display: inline-block;
  vertical-align: middle;  
}

.text-right
{
  text-align:right;
}

.box-80
{
  width:61%;
}

.box-20
{
  width: 37%;
}





@media only screen and (max-width: 767px) {
  .navbar {
    height: 65px;
    padding: 10px 20px;
  }
  
  .navbar .logo img {
    width: 130px;
  }
  
  .industry-btnn {
    position: relative;
    bottom: 0px;
    left: 0%;
}
body.home .banner-color-home header.navbar.sticky .menu-btn__lines, body.home .banner-color-home header.navbar.sticky .menu-btn__lines:before, body.home .banner-color-home header.navbar.sticky .menu-btn__lines:after {
  background: #fff;
}
.services-section .card .industry-btnn {
  position: relative;
  bottom: -2px;
  left: 0px;
  display: block;
}
.services-section .card .industry-btnn a {
  font-size: 14px;
  font-weight: normal;
}
.box {
    background: url(../img/bnr-bv.png)no-repeat center center;
    border-radius: 4px;
    padding: 1em 1em;
    margin: 2em 0!important;
    text-align: center;
}
.box-80 {
    width: 79%;
    margin-bottom: 14px;
}
}





  .form-inr{  background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 21px;
    border: 1px solid #f2f5f8;padding: 20px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,.1);}
.container .title {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}

.container .title::before {
  content: "";
  position: absolute;
  height: 3.5px;
  width: 30px;
  background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
  left: 0;
  bottom: 0;
}

.container form .user__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
/* inside the form user details */
form .user__details .input__box {
  width: calc(100% / 2 - 20px);
  margin-bottom: 15px;
}

.user__details .input__box .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: #005BA8;
    font-size: 18px;
}

   .file-upload .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: #005BA8;
    font-size: 18px;
}
.button12 input {
   font-weight: 500;
    margin-bottom: 5px;
    display: block;
    background: #005BA8;
    width: 61%;
    margin: 0 auto;
    font-size: 25px;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}

.user__details .input__box input {
     height: 45px;
    width: 100%;
    outline: none;
    border-radius: 0px;
    border-bottom: 1px solid #ddd !important;
    border: none;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user__details .input__box input:focus,
.user__details .input__box input:valid {
  border-color: var(--main-purple);
}

/* inside the form gender details */

form .gender__details .gender__title {
  font-size: 20px;
  font-weight: 500;
}

form .gender__details .category {
  display: flex;
  width: 80%;
  margin: 15px 0;
  justify-content: space-between;
}

.gender__details .category label {
  display: flex;
  align-items: center;
}

.gender__details .category .dot {
  height: 18px;
  width: 18px;
  background: var(--sub-grey);
  border-radius: 50%;
  margin: 10px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}

#dot-1:checked ~ .category .one,
#dot-2:checked ~ .category .two,
#dot-3:checked ~ .category .three {
  border-color: var(--sub-grey);
  background: var(--main-purple);
}

form input[type="radio"] {
  display: none;
}

/* submit button */
form .button {
  height: 45px;
  margin: 45px 0;
}

form .button input {
  height: 100%;
  width: 100%;
  outline: none;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
  transition: all 0.3s ease;
}

form .button input:hover {
  background: linear-gradient(-135deg, var(--main-blue), var(--main-purple));
}

@media only screen and (max-width: 584px) {
  .container {
    max-width: 100%;
  }

  form .user__details .input__box {
    margin-bottom: 15px;
    width: 100%;
  }

  form .gender__details .category {
    width: 100%;
  }

  .container form .user__details {
    max-height: 100%;
    overflow-y: scroll;
  }
  .button12 {
    margin-top: 20px;
}

  .user__details::-webkit-scrollbar {
    width: 0;
  }
}


.form-inr textarea {
 height: 45px;
    width: 100%;
    resize: none;
    border-bottom: 1px solid #ddd !important;
    border: none;
}





/*******************************************************************************/



.buttons {
  text-align:right;
}
.buttons a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}

.inner-text-popup {
    padding: 36px;
}
.inner-text-popup h2 {
    font-size: 21px;
}
.inner-text-popup h3 {
    font-size: 16px;
}

.inner-text-popup h4 {
    font-size: 18px;
}

.inner-text-popup ul{padding: 0px;}





/*******************************model2***********************************************/




.buttons1 {
  text-align:right;
}
.buttons1 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay1 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay1.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay1.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay1 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close1 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}






/*******************************model2***********************************************/



/*******************************model2***********************************************/




.buttons9 {
  text-align:right;
}
.buttons9 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay9 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay9.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay9.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay9 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close9 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}






/*******************************model2***********************************************/




.buttons2 {
  text-align:right;
}
.buttons2 a {
  background:#DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay2 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay2.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay2.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay2 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close2 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}



/*******************************model2***********************************************/




.buttons3 {
  text-align:right;
}
.buttons3 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay3 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay3.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay3.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay3 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close3 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}






/*******************************model2***********************************************/




.buttons12 {
  text-align:right;
}
.buttons12 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay12 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay12.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay12.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay12 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close12 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}




/*******************************model15***********************************************/




.buttons15 {
  text-align:right;
}
.buttons15 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay15 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay15.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay15.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay15 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close15 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}



/*************************************model7***********************************/


.buttons7 {
  text-align:right;
}
.buttons7 a {
  background: #DF1736;
    padding: 6px 19px;
    border-radius: 50px;
    color: #fff!important;
    text-decoration: none;cursor: pointer;
}

.overlay7 {
  background:#00000080;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.overlay7.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay7.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay7 .content {
     background: #fff;
    position: absolute;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 86%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#close7 {
    position: fixed;
    right: 27%;
    top: 54px;
    font-size: 24px;
    color: #d81733;
    cursor: pointer;
    background: #fff;
}




/*******************************model2***********************************************/

.career-apply-button a{    background: #DF1736;
    padding: 6px 42px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;}


    .img-first1 {
       position: relative;
    top: -590px;
    left: 329px;

}
.image-group {
    margin-top: -158px;    position: absolute;
}
.img-first2 {
    position: relative;
    left: 330px;
    top: -608px;
}

.img-first3 {
    position: relative;
    top: -1366px;
    left: 724px;
}
.img-first4 {
    position: relative;
    top: -1366px;
    left: 728px;
}
.img-first5 {
    position: relative;
    top: -2124px;
    left: 1129px;
}
.img-first6 {
    position: relative;
    left: 1126px;
    top: -2123px;
}



.img-first{
  transition:0.6s;
}

.img-first:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}
.img-first span{      position: absolute;
    right: 184px;
    bottom: 149px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;;display: none;}
    .img-first:hover span{display: block;}

.img-first1{
  transition: 0.6s;
}

.img-first1:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}
.img-first1 span{      position: absolute;
        right: 165px;
    bottom: 121px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;;display: none;}
    .img-first1:hover span{display: block;}
.img-first2{
  transition: 0.6s;
}

.img-first2:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}
.img-first2 span{      position: absolute;
      right: 184px;
    bottom: 105px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;;display: none;}
    .img-first2:hover span{display: block;}
.img-first3{
  transition: 0.6s;
}

.img-first3:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}
.img-first3 span{    position: absolute;
    left: 114px;
    bottom: 130px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;display: none;}
    .img-first3:hover span{display: block;}

.img-first4{
  transition: 0.6s;
}

.img-first4:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}
.img-first4 span{      position: absolute;
    right: 182px;
    bottom: 149px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;;display: none;}
    .img-first4:hover span{display: block;}

.img-first5{
  transition:0.6s;
}

.img-first5:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}

.img-first5 span{      position: absolute;
    right: 154px;
    bottom: 149px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;;display: none;}
    .img-first5:hover span{display: block;}
.img-first6{
  transition: 0.6s;
}

.img-first6:hover {
  transform: scale(1.1);position: relative; z-index: 999;
}

.img-first6 span{    position: absolute;
    left: 114px;
    bottom: 175px;
    background: #fff;
    padding: 7px 17px;
    border-radius: 6px;display: none;}
    .img-first6:hover span{display: block;}

.mobile-banner{display: none;}
.desktop-banner{display: block;}

@media (max-width: 767px) {
  .mobile-banner{display: block;}
.desktop-banner{display: none;}

/*.banner-color-home {
    background: url(../img/bnr-mob.png) !important;
    background-size: cover; min-height: unset;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;        height: 67vh;
}*/
  /*  section#banner {
        padding: 26px 11px;
        background: url(../img/banner-home.jpg) no-repeat center center !important;
    }*/

 }




@media (max-width: 1368px) and (min-width: 1300px){

.image-group {
    margin-top: -170px;    position: absolute;
}
body.home .banner-color-home 
{
  overflow: hidden;
}
h1.video
  
  {
    top: 10%;
    transform: translateY(-10%);
  }
.image-group  img{
    pointer-events: none;
    width: 87%;
}
    .img-first1 {
              position: relative;
        top: -530px;
        left: 303px;
    }
    .img-first2 {
               position: relative;
        left: 303px;
        top: -536px;
    }
    .img-first4 {
    position: relative;
        top: -1205px;
        left: 644px;
}

.img-first3 {
   position: relative;
        top: -1204px;
        left: 640px;}
.img-first6 {
    position: relative;
    left: 980px;
    top: -1873px;
}
.img-first5 {
           position: relative;
        top: -1866px;
        left: 986px;
}

.img-first span {
    position: absolute;
    right: 139px;}

    .img-first1 span {
    position: absolute;
    right: 187px;
    bottom: 106px;}

    .img-first2 span {
    position: absolute;
    right: 198px;
    bottom: 92px;}


    .img-first3 span {
    position: absolute;
    left: 111px;
    bottom: 117px;}

    .img-first4 span {
    position: absolute;
    right: 197px;
    bottom: 146px;}

    .img-first5 span {
    position: absolute;
    right: 178px;}

    .img-first6 span {
    position: absolute;
    left: 84px;
    bottom: 166px;}
.img-first {
    transition: 0.6s;
  
    width: 87%;
}
.img-first img{         max-height:387px;}
}

.industry-btnn a{background: #DF1736;
    padding: 7px 18px;
    border-radius: 76px;
    color: #fff!important;
    font-weight: 700;
    text-decoration: none;}

    .industry-img img{width: 100%;}












    .footer_get_touch_outer {
  padding-top: 3%;padding-bottom: 3%;}
  .footer_get_touch_outer .container {
  width: 95%;
  max-width: 1140px;
  margin: auto;
}
  .footer_get_touch_outer .grid-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
}
  .footer_get_touch_outer .get_form_inner {
  display: block;
  padding:20px 40px;
  background: rgba(232, 236, 255, 1);border-radius: 6px;
  box-shadow: -4px -2px 20px -7px #cfd5df;
}
  .footer_get_touch_outer input[type="text"], input[type="text"], input[type="email"], input[type="tel"] {
/*border-bottom: 1px solid #000 !important;*/
    border: none;
    border-radius: 6px;
    color: #333;
    height: 42px;
    padding: 0 0 0 13px;
    width: 100%;
    outline: 0;
}
  .footer_get_touch_outer .grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
  .footer_get_touch_outer .grid-full {
  margin: 20px 0;
}
  .footer_get_touch_outer textarea {

    border: none;
  border-radius: 6px;
  color: #333;
  padding: 12px 0 0 13px;
  width: 100%;
  outline: 0;    height: 150px;
  margin-bottom: 0px;
}
.get_form_inner_text h3 {
  color: #333;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}
  .footer_get_touch_outer input[type="submit"] {
     background: #DF1736;
    padding: 8px 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: none;
    margin-top: 20px;
}
/*  .footer_get_touch_outer input[type="submit"]:hover {
  background-color: #f85508;
  border-color: #f85508;
  color: #fff;
}*/
  .footer_get_touch_outer .get_say_form {
  display: inline-block;
  padding:25px 0 25px 30px;
  background:#002a4d;
  position: relative;
}
  .footer_get_touch_outer .get_say_form h5 {
  color: #fff;
  font-size: 26px;   
  margin: 0 0 40px;
}
  .footer_get_touch_outer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.get_say_social-icn {
display: flex;
    position: absolute;
    bottom: 40px;
    right: 75px;
    justify-content: center;
}
.get_say_social-icn a {
  font-size: 22px;
  color: #fff;
  padding: 0 20px 0 0;
}
.get_say_info_sec i {
  color: #fff;
  font-size: 20px;
}
.get_say_info_sec > li {
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  margin-bottom: 22px;
}
.get_say_info_sec > li a {
  width: 100%;
  display: block;
  padding: 13px 1px;
  color: #fff;
  font-size: 16px;
  text-decoration: unset;
  font-weight: 500;
/*  background: #222e6a45;*/
  border-radius: 5px 0 0 5px;
  transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.get_say_info_sec > li p{    color: #fff;    margin-bottom: 0px;}


i.fa.fa-map-marker.loc {
    font-size: 22px;
    margin-top: 3px;
    margin-right: 12px;
    margin-left: 3px;
}

/* --- Footer Elliptical Gradient (Global - All Pages) --- */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.15), rgba(216, 112, 185, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}