@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/*Pop Up Image On Home Page Start*/

.popup{
    width: 440px;
    padding: 20px 20px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 54%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none; 
    text-align: center;
    z-index: 10;
}
.popup button{
    display: block;
    margin:  0 0 2px auto;
    background-color: transparent;
    font-size: 19px;
    color: #ffffff;
    background: #0E449A;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup img{
  height: 400px;
  width: 400px;
}
.popup a{
    display: block;
    width: 120px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #0E449A;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
}
@media only screen and (max-width:500px){
  .popup img{
    height: 350px;
    width: 350px;
  }
  .popup{
    width: 440px;
    padding: 30px 30px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 40%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none; 
    text-align: center;
    z-index: 10;
}
}
@media only screen and (min-width:768px) and (max-width:800px){
  .popup img{
    height: 450px;
    width: 450px;
  }
}
/*Pop Up Image On Home Page End*/

/*Top Bar Start*/

#top-nav ul li a{
  color: black;
  font-size: 17px;
  font-weight: bold;
}
.dropdown-toggle ul li a:hover{
color: #FDB915;
}
#top-nav ul li a:hover{
  color: #FDB915 !important;
  font-weight: bold;
  margin-left: 5px;
  transition: 0.4s;
  border-radius: 10px;
}
#navbarSupportedContent ul{
  border-radius: 10px;
}
#dropdown1:hover .dropdown-menu{
 display: block;
 color: #fff !important;
}
#dropdown2:hover .dropdown-menu{
  display: block;
}
#dropdown3:hover .dropdown-menu{
  display: block;
}
#dropdown4:hover .dropdown-menu{
  display: block;
}
#dropdown5:hover .dropdown-menu{
  display: block;
}
#dropdown6:hover .dropdown-menu{
  display: block;
}
@media only screen and (max-width:1024px){
  #top-nav ul li a{
    color: black;
    font-size: 15px;
    font-weight: 900px;
  }
  #top-nav ul li a:hover{
    color: #FDB915 !important;
    font-weight: bold;
    margin-left: 2px;
    transition: 0.4s;
    border-radius: 10px;
  }
  .social_icon{
    font-size: 20px;
    padding-left: 10px;
    color: black;
    &:hover{
      color: #FDB915;
    }
  }
}

/*Top Bar End*/

/*Slider - Carousel Start*/

#carousel-inner{
  padding-bottom: 30px;
}
.slider-btn .btn{
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 1.5rem, 2rem;
  font-size: 1rem;
}
.carousel-caption h5{
  font-size: 30px;
  color: #FDB915;
  font-weight: bold;
}
.carousel-caption p{
  font-size: 20px;
}
.slider-btn .btn:hover{
  background-color: #FDB915;
}
.slider-btn .btn a{
  text-decoration: none;
  font-size: 20px;
  color: black;
  &:hover{
    color: white;
  }
}
/*Slider - Carousel End*/

/*Top Brands Start*/
#top_brand{
  padding-top: 10px;
  padding-bottom: 10px;
}
#top_brand h3{
  color: #0E449A;
}
.brand-slider{
  height: 150px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-slider-track{
  display: flex;
  width: calc(250px * 18); 
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100%{
      transform: translateX(calc(-250px * 9));
  }
}
.slides{
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}
.slides img{
  width: 100%;
  transition: tranform 1s;
  &:hover{
    transform: translateZ(20px);
  }
}
.brand-slider::before,
.brand-slider::after{
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}
.brand-slider::before{
   left: 0;
   top: 0;
}
.brand-slider::after{
    right: 0;
    top: 0;
    transform: rotateZ(100deg)
} */

/*Top Brands End*/

/*Offerings Start*/
#offering{
  padding-bottom: 30px;
}
#offering .offering-icon {
 text-align: center;
 font-size: 40px;
}
#offering .card {
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
#offering .card:hover {
  color: white;
}
#offering .card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0%;
  background: #0E449A;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
#offering .card:hover::before {
  left: 0%;
  color: white;
}
#offering .btn a{
  text-decoration: none;
  &:hover{
    color: #fff;
  }
}
#offering .btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  font-size: 0.95rem;
  color: #0e449a;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}
#offering .btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fafafa;
}
@media only screen and (max-width:768px){
  #offering-media{
    padding: 6px;
  }
  #offering-media .card {
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
  }
  #offering-media .card:hover {
    color: white;
  }
  #offering-media .card::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0%;
    background: #0E449A;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
  }
  #offering-media .card:hover::before {
    left: 0%;
    color: white;
  }
  #offering .btn a{
    text-decoration: none;
    &:hover{
      color: #fff;
    }
  }
  #offering-media .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    font-size: 0.95rem;
    color: #0e449a;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }
  #offering-media .btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fafafa;
  }
}
/*Offerings End*/

/*what we do Start*/
#what_we_do{
  background-color: #0E449A;
}
.main{
  width: 100%;
  min-height: 420px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.service{
  background: #fff !important;
  padding: 25px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  box-shadow: 0 0 40px -15px #0E449A;
  transition: transform .8s;
}
.service-logo{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: -90px auto 0;
  background: #fff;
  border: 18px solid #0E449A;
}
.service-logo img{
  width: 50px;
  margin-top: 20px;
  transition: transform 1s;
}
.service h4{
  height: 35px;
  width: 80%;
  background: #fff;
  margin: 50px auto;
  position: relative;
}
.service h4::after{
  content:'';
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, #fff, #0E449A);
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: -1;
}
.service h4::before{
  content:'';
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, #0E449A, #fff);
  position: absolute;
  bottom: -5px;
  left: -5px;
  z-index: -1;
}

.shadowOne{
  height: 200px;
  width: 80%;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 10%;
  z-index: -1;
  box-shadow: 0 0 40px -15px #0E449A;
  transition: transform .8s;
}
.shadowTwo{
  height: 200px;
  width: 64%;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 18%;
  z-index: -2;
}

.main:hover .service{
  transform: translateY(-50px);
}

.main:hover .shadowOne{
  transform: translateY(-25px);
}

.main:hover img{
  transform: rotate(360deg);
}

#explore .btn {
  padding: 15px;
  background-color: #fff;
  font-size: 15px;
  color: #0e449a;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 42%;
}
#explore .btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fafafa;
}
#explore .btn a{
  text-decoration: none;
  &:hover{
    color: #fff;
  }
}


@media only screen and (max-width: 600px){
  #explore .btn{
    margin-left: 28%;
    padding-top: 15px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 820px){
  #explore .btn{
    margin-left: 38%;
  }
  #section-gap{
    padding: 7px;
 }
 .service h4::after{
  content:'';
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, #fff, #fff);
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: -1;
}
.service h4::before{
  content:'';
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, #fff, #fff);
  position: absolute;
  bottom: -5px;
  left: -5px;
  z-index: -1;
}
}

/*what we do End*/

/*Mile Stones Start*/


#milestone h3{
  color: #0E449A;
}
.milestones-text{
  background-color: #0E449A;
  display: block;
  border: 2px solid #0E449A;
}
.milestones-text .num{
  color: #FDB915;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 35px;
}
.milestones-text .text{
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
}
@media only screen and (max-width:600px){
  .milestone-responsive{
    padding-bottom: 15px;
  }
}
@media only screen and (min-width:768px){
  #milestone-media{
    padding-bottom: 16px;
  }
}
/*Mile Stones End*/

/* Footer Start */
#footer{
    background-color: #0E449A;
    padding-top: 20px;
    padding-bottom: 25px;
}
#footer a{
    color: white;
    text-decoration: none;
    font-size: 17px;
}
.footer-icon{
  font-size: 30px;
  padding-left: 5px;
  color: #fff;
}

#footer a:hover{
  color: #FDB915;
  font-weight:bold;
  margin-left: 20px;
  transition: 0.4s;
}
@media only screen and (max-width:768px){
  #footer-media{
    padding-top: 7px;
  }
}
/* Footer End*/

/*Contact Start*/
#connect-us{
  padding-bottom: 10px;
}

#connect-with-us{
  padding-top: 30px;
  padding-bottom: 60px;
}


.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #0e449a;
  position: relative;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #0e449a;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-form .btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  font-size: 0.95rem;
  color: #0e449a;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.contact-form .btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fafafa;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #0e449a;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #0e449a;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  font-size: 22px;
  margin-right: 0.7rem;
  margin-bottom: 0.7rem;
  color: #0E449A;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #0a63f3, #0e449a);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
@media only screen and (max-width:768px){
  #map iframe{
    width: 300px;
    height: 300px
  }
}
/*Contact End*/

/*Customer Success Stories Start*/
  #customer-success-stories{
    padding-bottom: 30px;
  }
  #story-heading{
    padding-left: 35px;
  }
  #customer-decoration:hover{
      color: #FDB915;
  }
  .success-story a{
    text-decoration: none;
    color: white;
  }
  .success-story button{
    margin-right: 25% !important;
  }
  #story-text{
    padding-left: 40px;
  }
  #story-text span{
    font-weight: bold;
  }
/*Customer Success Stories End*/

/*About White Globe Start*/
#about_white_globe{
  padding-bottom: 30px;
}
.vision_icon{
  font-size: 40px;
  color: #fff;
  padding-left: 45%;
}
#our_story_img{
  max-width: 100%;
  padding: 5px;
  width: 100%;
  background-color: #0E449A;
  border-radius: 15px;
}
#vis{
  background-color: #0E449A;
  border-radius: 10px;
  margin-right: 10px;
}
#vis h4{
  color: #FDB915;
}
#mis{
  background-color: #0E449A;
  border-radius: 10px;
  margin-left: 10px;
}
#mis h4{
  color: #FDB915;
}

@media only screen and (max-width:600px){
  #vis{
    margin-left: 10px;
 }
  #mis{
    margin-right: 10px;
    margin-top: 20px;
   }
}
  
/*About White Globe End*/

/*Team Start*/
#team{
  padding-bottom: 30px;
}
#team_para p{
  font-size: 17px;
}
#team_gallery img{
  max-width: 100%;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  &:hover{
    box-shadow: 0 3px 3px #FDB915;
  }
}
#team_gallery p{
  color: #0E449A;
}
#team_decoration{
  text-decoration: underline;
  &:hover{
    color: #FDB915;
  }
}
#team-text p{
  font-size: 16px;
  font-weight: bold;
}
#team-text{
  display: block;
  border: 1px solid #fff;
}

/*Team End*/

/*Language COE Team Start*/
#language-coe{
  padding-bottom: 30px;
}
#expert-gallery img{
  max-width: 100%;
  padding: 20px;
  width: 100%;
}
#expert-gallery p{
  color: #0E449A;
}
#expert-text p{
  font-size: 15px;
  font-weight: bold;
}
/*Language COE Team End*/

/*White Globe In News Start*/
#whiteglobe_news{
  padding-bottom: 30px;
}
.article-detail{
  padding: 15px;
  border-top: 0;
}
.article-link{
  color: #0E449A;
}
.article-detail h4{
  color: #FDB915;
}
.btn-read-more{
  background-color:#0E449A;
  &:hover{
    background-color:#0E449A;
  }
}
.btn-read-more a{
  color: #fff;
  text-decoration: none;
  &:hover{
  color: black;
  }
}

/*White Globe In News End*/

/*White Globe In Trotter Start*/
#white-globe-trotter{
  padding-bottom: 30px;
}
.image-container{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
}
.image-container .image{
  height: 220px;
  width: 320px;
  border: 5px solid #0E449A;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
}
.image-container .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}
.image-container .image:hover img{
  transform: scale(1.1);
}
.image-container .popup-image{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
.image-container .popup-image span{
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 45px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}
.image-container .popup-image img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #0E449A;
  border-radius: 5px;
  width: 750px;
  object-fit: cover;
}
@media only screen and (max-width:768px){
  .image-container .popup-image img{
    width: 95%;
  }
}

/*White Globe In Trotter End*/

/*Services Start*/
#services{
  padding-bottom: 50px;
}
#services-text span{
  font-weight: bold;
}
#services-text a{
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: bold;
}
#service-row{
  margin-left: 10px;
}
#service-card .card{
  position: relative;
  width: 260px;
  height: 280px;
  background-color: #0E449A;
}
#service-card .card .face{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
  transition: .5s;
}
#service-card .card .front-side{
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0 5px 10px #000;
}
#service-card .card .front-side img{
  position: absolute;
  width: 100%;
  height: 80%;
  object-fit: cover;
}
#service-card .card .front-side h5{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 17px;
}
#service-card .card .front-side h6{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 17px;
}
#service-card .card .back-side{
  transform: perspective(600px) rotateY(180deg);
  background: #0E449A;
  padding: 15px;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 5px 5px #FDB915;
}
#service-card .card .back-side .service-link{
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
}
#service-card .card .back-side .service-link a{
  color: #FDB915;
}
#service-card .card .back-side p{
  letter-spacing: 1px;
}
#service-card .card:hover .front-side{
  transform: perspective(600px) rotateY(180deg);
}
#service-card .card:hover .back-side{
  transform: perspective(600px) rotateY(360deg);
}

@media only screen and (max-width:600px){
  #service-card{
    padding-left: 10px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width:820px){
  #service-card{
    padding-left: 35px;
    padding-bottom: 15px;
  }
}
/*Services End*/

/**Industries Start**/
#industries{
  padding-bottom: 50px;
}
#industry-row{
  margin-left: 1px;
}
#industries-text span{
  font-weight: bold;
}
#industries-text a{
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: bold;
}
#industry-card .card{
  width: 280px;
  height: 250px;
  background-color: #0E449A;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
  transition: 0.5s ease-in-out;
  border: 2px solid #0E449A;
}
#industry-card .card:hover{
  transform: translateY(15px);
}
#industry-card .card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #0E449A;
  z-index: 2;
  transition: 0.5s all;
  opacity: 0;
  box-shadow: 0 5px 5px #FDB915;
}
#industry-card .card:hover:before{
  opacity: 1;
}
#industry-card .card img{
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#industry-card .card h5{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
}
#industry-card .card .industry_info{
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s all;
  top: 25%;
  text-align: center;
}
#industry-card .card .industry_info p{
  letter-spacing: 1px;
  font-weight: bold;
}
#industry-card .card:hover .industry_info{
  opacity: 1;
  transform: translateY(0px);
}
#industry-card .card .industry_info .product-link{
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
}
#industry-card .card .industry_info .product-link a{
color: #FDB915;
}
@media only screen and (max-width:600px){
  #industry-card{
    padding-left: 5px;
    padding-bottom: 12px;
  }
}
@media only screen and (max-width:820px){
  #industry-card{
    padding-left: 35px;
    padding-bottom: 15px;
  }
}
/**Industries End**/

/**Languages Start**/
#languages{
  padding-bottom: 30px;
}
#language-row{
  margin-left: 15px;
}
#language-card .card{
  position: relative;
  width: 260px;
  height: 250px;
  background-color: #0E449A;
  border-radius: 5px;
}
#language-card .card .language-front{
  transform: perspective(600px) rotateY(0deg);
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
#language-card .card:hover{
  box-shadow: 0 3px 3px #FDB915;
}
#language-card .card .language-front img{
  transition: all linear 0.7s;
}
#language-card .card .language-front .hover-img{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#language-card .card .language-front:hover img{
  opacity: 0;
}
#language-card .card .language-front:hover .hover-img{
  opacity: 1;
}
#language-text{
  color: #FDB915;
}
@media only screen and (max-width:600px){
 
  #language-card{
    padding-left: 5px;
    padding-bottom: 12px;
  }
}
@media only screen and (max-width:820px){
  #language-card{
    padding-left: 35px;
    padding-bottom: 15px;
  }
}
/**Languages End**/

/**Solutions Start**/
#solutions{
  padding-bottom: 30px;
}
#solution-row{
  margin-left: 15px;
}
#solutions-text .card{
  width: 260px;
  height: 130px;
  background-color: #0E449A;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
  transition: 0.5s ease-in-out;
  border: 2px solid #0E449A;
}
#solutions-text .card img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  width: 80px;
  height: 80px;
}
#solutions-text .card a{
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
#solutions-text .card h6{
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  &:hover{
    font-weight: bold;
  }
}
#solutions-text .card:hover{
  box-shadow: 0px 5px 5px #FDB915;
}

@media only screen and (max-width:600px){
 
  #solutions-text{
    padding-left: 5px;
    padding-bottom: 12px;
  }
}
@media only screen and (max-width:820px){
  #solutions-text{
    padding-left: 35px;
    padding-bottom: 15px;
  }
}
/**Solutions End**/

/*Articles Start*/
#article{
  padding-bottom: 30px;
}
/*Articles End*/

/*Blog Start*/
#blog{
  padding-bottom: 30px;
}
/*Blog End*/

/*Videos And Animation Start*/
#videos-and-animation{
  padding-bottom: 5px;
}
/*Videos And Animation End*/

/*Pricing Start*/
#pricing{
  padding-bottom: 30px;
}
/*Pricing End*/

/*Career At White Globe Start*/
#career-at-white-globe{
  padding-bottom: 30px;
}
.btn-career{
  margin-left: 25px;
  padding-right: 15px;
  background-color:#0E449A;
  &:hover{
    background-color:#0E449A;
  }
}
.btn-career a{
  color: #fff;
  text-decoration: none;
  &:hover{
  color: black;
  }
}
/*Career At White Globe End*/

/*Services - Translation Start*/
#translation{
  padding-bottom: 30px;
}
#translation-row{
  margin-left: 15px;
}
#translation-card .card{
  position: relative;
  width: 260px;
  height: 300px;
  background-color: #0E449A;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
#translation-card .card .translation-face{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
  transition: .5s;
}
#translation-card .card .translation-front{
  transform: perspective(600px) rotateY(0deg);
}
#translation-card .card .translation-front img{
  position: absolute;
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#translation-card .card .translation-front h5{
  position: absolute;
  top: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
}
#translation-card .card .translation-front h6{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 15px;
}
#translation-card .card .translation-back{
  transform: perspective(600px) rotateY(180deg);
  background: #0E449A;
  padding: 15px;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 5px 5px #FDB915;
}
#translation-card .card .translation-back .translation-link{
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
}
#translation-card .card .translation-back .translation-link a{
  color: #FDB915;
}
#translation-card .card .translation-back p{
  letter-spacing: 1px;
}
#translation-card .card:hover .translation-front{
  transform: perspective(600px) rotateY(180deg);
}
#translation-card .card:hover .translation-back{
  transform: perspective(600px) rotateY(360deg);
}

@media only screen and (max-width:600px){
  #translation-card{
    padding-left: 18px;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width:820px){
  #translation-card{
    padding-left: 35px;
    padding-bottom: 15px;
  }
}
/*Services - Translation End*/

/*Translation Sub Page Professional Translation Start*/
#professional-translation{
  padding-bottom: 30px;
}
#professional-text span{
  font-weight: bold;
  letter-spacing: normal;
}
.accordion-item, .accordion-header{
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 20px;
}
#outer_button{
  border: 1px solid #0E449A;
  border-radius: 12px;
}
/*Translation Sub Page Professional Translation End*/

/*Translation Sub Page High Quality Translation Start*/
#high-quality{
  padding-bottom: 30px;
}
#quality-text span{
  font-weight: bold;
  letter-spacing: normal;
}

/*Translation Sub Page High Quality Translation End*/

/*Translation Sub Page Document Translation Start*/
#document-translation{
  padding-bottom: 30px;
}
#document-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page Document Translation End*/

/*Translation Sub Page Technical Translation Start*/
#technical-translation{
  padding-bottom: 30px;
}
#translation-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page Technical Translation End*/

/*Translation Sub Page Patent Translation Start*/
#patent-translation{
  padding-bottom: 30px;
}
/*Translation Sub Page Patent Translation End*/

/*Translation Sub Page Machine Translation Start*/
#machine-translation{
  padding-bottom: 30px;
}
#machine-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page Machine Translation End*/

/*Translation Sub Page CAT Tool Start*/
#cat-tools{
  padding-bottom: 30px;
}
#cat-tools-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page CAT Tool End*/

/*Translation Sub Page Translation Management Start*/
#translation-management{
  padding-bottom: 30px;
}
#translation-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page Translation Management End*/

/*Translation Sub Page Proofreading & Reviewing Start*/
#proofreading-reviewing{
  padding-bottom: 30px;
}
#proofreading-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Translation Sub Page Proofreading & Reviewing End*/

/*Translation Sub Page Linguistic Validation Start*/
#linguistic-validation{
  padding-bottom: 30px;
}
/*Translation Sub Page Linguistic Validation End*/

/*Services - Localization Start*/
#localization{
  padding-bottom: 30px;
}
/*Services - Localization End*/

/*Localization Sub Page Multimedia Localization Start*/
#multimedia-localization{
  padding-bottom: 30px;
}
#multimedia-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page Multimedia Localization End*/

/*Localization Sub Page Marketing Localization Start*/
#marketing-localization{
  padding-bottom: 30px;
}
#marketing-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page Marketing Localization End*/

/*Localization Sub Page Software Localization Start*/
#software-localization{
  padding-bottom: 30px;
}
#software-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page Software Localization End*/

/*Localization Sub Page Website Globalization Start*/
#website-globalization{
  padding-bottom: 30px;
}
/*Localization Sub Page Website Globalization End*/

/*Localization Sub Page App Localization Start*/
#app-localization{
  padding-bottom: 30px;
}
#app-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page App Localization End*/

/*Localization Sub Page Search Engine Optimization Start*/
#search-engine-optimization{
  padding-bottom: 30px;
}
#search-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page Search Engine Optimization End*/

/*Localization Sub Page E-Learning Localization Start*/
#e-learning{
  padding-bottom: 30px;
}
#e-learning-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page E-Learning Localization End*/

/*Localization Sub Page Cultural & Linguistic Consulting Start*/
#cultural-linguistic{
  padding-bottom: 30px;
}
#cultural-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Localization Sub Page Cultural & Linguistic Consulting End*/

/*Industry Sub Page Advertising & Marketing Start*/
#advertising-marketing{
  padding-bottom: 30px;
}
#advertising-marketing-text span{
  font-weight: bold;
  letter-spacing: normal;
}
.button2 a{
  text-decoration: none;
  color: white;
}
/*Industry Sub Page Advertising & Marketing End*/

/*Industry Sub Page BFSI Start*/
#bfsi{
  padding-bottom: 30px;
}
#bfsi-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Industry Sub Page BFSI End*/

/*Services - Interpretation Page Start*/
#interpretation{
  padding-bottom: 30px;
}
/*Services - Interpretation Page End*/

/*Interpretation Sub Page Consecutive Interpretation Start*/
#consecutive-interpretation{
  padding-bottom: 30px;
}
#consecutive-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Interpretation Sub Page Consecutive Interpretation End*/

/*Interpretation Sub Page Simultaneous Interpretation Start*/
#simultaneous-interpretation{
  padding-bottom: 30px;
}
#simultaneous-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Interpretation Sub Page Simultaneous Interpretation End*/

/*Interpretation Sub Page Conference Services Start*/
#conference-services{
  padding-bottom: 30px;
}

#conference-text span{
  font-weight: bold;
}
/*Interpretation Sub Page Conference Services End*/

/*Interpretation Sub Page Over The Phone Interpretation Start*/
#over-interpretation{
  padding-bottom: 30px;
}

#over-text span{
  font-weight: bold;
}
/*Interpretation Sub Page Over The Phone Interpretation End*/

/*Interpretation Sub Page Video Remote Interpretation Start*/
#video-remote-interpretation{
  padding-bottom: 30px;
}

#video-remote-text span{
  font-weight: bold;
}
/*Interpretation Sub Page Video Remote Interpretation End*/

/*Interpretation Sub Page Customer Support Start*/
#customer-support{
  padding-bottom: 30px;
}

/*Interpretation Sub Page Customer Support End*/

/*Interpretation Sub Page Call Center/ BPO Agents Start*/
#call-center{
  padding-bottom: 30px;
}

#call-center-text span{
  font-weight: bold;
}
/*Interpretation Sub Page Call Center/ BPO Agents End*/

/*Multimedia Service Sub Page Dubbing & Voiceover Start*/
#dubbing-voiceover-services{
  padding-bottom: 30px;
}
#dubbing-voiceover-text span{
  font-weight: bold;
}
/*Multimedia Service Sub Page Dubbing & Voiceover End*/

/*Multimedia Service Sub Page Subtitling & CC Services Start*/
#subtitling-service{
  padding-bottom: 30px;
}
#subtitling-text span{
  font-weight: bold;
}
/*Multimedia Service Sub Page Subtitling & CC Services End*/

/*Multimedia Service Sub Page Image Consultation Start*/
#image-consultation{
  padding-bottom: 30px;
}
/*Multimedia Services Sub Page Image Consultation End*/

/*Multimedia Service Sub Page Video Creation Start*/
#video-creation{
  padding-bottom: 30px;
}
#video-creation-text span{
  font-weight: bold;
}
/*Multimedia Services Sub Page Video Creation End*/

/*Multimedia Services Sub Page Animation Start*/
#animation{
  padding-bottom: 30px;
}
/*Multimedia Services Sub Page Animation End*/

/*Multimedia Services Sub Page VFX & CGI Services Start*/
#vfx-cgi-services{
  padding-bottom: 30px;
}
#vfx-cgi-text span{
  font-weight: bold;
}
/*Multimedia Services Sub Page VFX & CGI Services End*/

/*Multimedia Services Sub Page Video Editing & DI Start*/
#video-editing{
  padding-bottom: 30px;
}
#video-editing-text span{
  font-weight: bold;
}
/*Multimedia Services Sub Page Video Editing & DI End*/

/*Multimedia Services Sub Page 2D/3D Animation Start*/
#animation-2d-3d{
  padding-bottom: 30px;
}

/*Multimedia Services Sub Page 2D/3D Animation End*/

/*Multimedia Services Sub Page Audio Description Start*/
#audio-description{
  padding-bottom: 30px;
}
#audio-description-text span{
  font-weight: bold;
}
/*Multimedia Services Sub Page Audio Description End*/

/*Services - Multimedia Services Page Start*/
#multimedia-services{
  padding-bottom: 30px;
}
/*Services - Multimedia Services Page End*/

/*Services - Training & E-learning Start*/
#training-e-learning{
  padding-bottom: 30px;
}
/*Services - Training & E-learning End*/

/*Training & E-learning Subpage Content Authoring Start*/
#content-authoring{
  padding-bottom: 30px;
}
#content-authoring-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage Content Authoring End*/

/*Training & E-learning Subpage Platform Localization Start*/
#platform-localization{
  padding-bottom: 30px;
}
#platform-localization-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage Platform Localization End*/

/*Training & E-learning Subpage Voiceover Subtitling Start*/
#voiceover-subtitling{
  padding-bottom: 30px;
}
#voiceover-subtitling-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage Voiceover Subtitling End*/

/*Training & E-learning Subpage Testing & Quality Assurance Start*/
#testing-quality-assurance{
  padding-bottom: 30px;
}
#testing-quality-assurance-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage Testing & Quality Assurance End*/

/*Training & E-learning Subpage Managed In Country Review Start*/
#managed-in-country-review{
  padding-bottom: 30px;
}
/*Training & E-learning Subpage Managed In COuntry Review End*/

/*Training & E-learning Subpage E-learning Authoring Tools Start*/
#e-learning-authoring-tools{
  padding-bottom: 30px;
}
#e-learning-tools-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage E-learning Authoring Tools End*/

/*Training & E-learning Subpage Learning Management System Start*/
#learning-management-system{
  padding-bottom: 30px;
}
#learning-management-system-text span{
  font-weight: bold;
}
/*Training & E-learning Subpage Learning Management System End*/

/*Staffing & Recruiting Subpage Multilingual Staffing & Recruiting Start*/
#multilingual-staffing-recruiting{
  padding-bottom: 30px;
}
#staffing-recruiting-text span{
  font-weight: bold;
}
/*Staffing & Recruiting Subpage Multilingual Staffing & Recruiting End*/

/*Staffing & Recruiting Subpage Managed Review Start*/
#managed-review{
  padding-bottom: 30px;
}
#managed-review-text span{
  font-weight: bold;
}
/*Staffing & Recruiting Subpage Managed Review End*/

/*Staffing & Recruiting Subpage Brand Captions Start*/
#brand-captions{
  padding-bottom: 30px;
}
#brand-captions-text span{
  font-weight: bold;
}
/*Staffing & Recruiting Subage Brands Captions End*/

/*Staffing & Recruiting Subpage Call Center Staffing Start*/
#call-center-staffing{
  padding-bottom: 30px;
}
#call-center-text span{
  font-weight: bold;
}
/*Staffing & Recruiting Subage Call Center Staffing End*/

/*360 deg Marketing Services Subpage Transcreation & Copy Adaptation Start*/
#transcreation-copy-adaptation{
  padding-bottom: 30px;
}
#transcreation-text span{
  font-weight: bold;
}
/*360 deg Marketing Services Subpage Transcreation & Copy Adaptation End*/

/*360 deg Marketing Services Subpage Brand Management Start*/
#brand-management{
  padding-bottom: 30px;
}
#brand-management-text span{
  font-weight: bold;
}
/*360 deg Marketing Services Subpage Brand Management End*/

/*360 deg Marketing Services Subpage Name Testing Start*/
#name-testing{
  padding-bottom: 30px;
}
#name-testing-text span{
  font-weight: bold;
}
/*360 deg Marketing Services Subpage Name Testing End*/

/*360 deg Marketing Services Subpage consultation Image Start*/
#consultation-image{
  padding-bottom: 30px;
}
#consultation-image-text span{
  font-weight: bold;
}
/*360 deg Marketing Services Subpage Consultation Image End*/

/*Services - Globalization Consulting Start*/
#globalization_consulting{
  padding-bottom: 30px;
}
/*Services - Globalization Consulting End*/

/*Globalization Consulting Subpage - Language Best Practices Start*/
#language-best-practices{
  padding-bottom: 30px;
}
/*Globalization Consulting Subpage - Language Best Practices End*/

/*Globalization Consulting Subpage - People Start*/
#people{
  padding-bottom: 30px;
}
#people-text span{
  font-weight: bold;
}
/*Globalization Consulting Subpage - People End*/

/*Globalization Consulting Subpage - Process Start*/
#process{
  padding-bottom: 30px;
}
#process-text span{
  font-weight: bold;
}
/*Globalization Consulting Subpage - Process End*/

/*Globalization Consulting Subpage - Technology Start*/
#technology{
  padding-bottom: 30px;
}
#technology-text span{
  font-weight: bold;
}
/*Globalization Consulting Subpage - Technology End*/

/*Globalization Consulting Subpage - Cultural Consulting Start*/
#cultural-consulting{
  padding-bottom: 30px;
}
#cultural-consulting-text span{
  font-weight: bold;
}
/*Globalization Consulting Subpage - Cultural Consulting End*/

/*Services - Linguistic Certification Program Start*/
#linguistic-program{
  padding-bottom: 30px;
}
#linguistic-program-text span{
  font-weight: bold;
}
/*Services - Linguistic Certification Program End*/

/*Services - DTP Services Start*/
#dtp-services{
  padding-bottom: 30px;
}
/*Services - DTP Services End*/

/*DTP services Subpage - DTP Quality Assurance Start*/
#dtp-quality{
  padding-bottom: 30px;
}
/* #dtp-quality-text h6{
  color: #FDB915;
} */
#dtp-quality-text span{
  font-weight: bold;
}
/*DTP services Subpage - DTP Quality Assurance End*/

/*DTP services Subpage - Template Services Start*/
#template-service{
  padding-bottom: 30px;
}

#template-service-text span{
  font-weight: bold;
}
/*DTP services Subpage - Template Services End*/

/*DTP services Subpage - DTP Tools Start*/
#dtp-tools{
  padding-bottom: 30px;
}

#dtp-tools-text span{
  font-weight: bold;
}
/*DTP services Subpage - DTP Tools End*/

/*DTP Services Subpage - Platforms & Softwares Start*/
#platform-software{
  padding-bottom: 30px;
}
/*DTP Services Subpage - Platforms & Softwares End*/

/*DTP services Subpage - Multilingual Desktop Publishing Start*/
#desktop-publishing{
  padding-bottom: 30px;
}

#desktop-publishing-text span{
  font-weight: bold;
}
/*DTP services Subpage - Multilingual Desktop Publishing End*/

/*DTP services Subpage - Type Setting Start*/
#type-setting{
  padding-bottom: 30px;
}
#type-setting-text span{
  font-weight: bold;
}
/*DTP services Subpage - Type Setting End*/

/*Service Subpage - Content Cretion Start*/
#content-creation{
  padding-bottom: 30px;
}
/*Service Subpage - Content Cretion End*/

/*Content Creation Subpage - Website Content Start*/
#website-content{
  padding-bottom: 30px;
}
#website-content-text span{
  font-weight: bold;
}
/*Content Creation Subpage - Website Content End*/

/*Content Creation Subpage - Online Marketing Content Start*/
#online-content{
  padding-bottom: 30px;
}
#online-content-text span{
  font-weight: bold;
}
/*Content Creation Subpage - Online Marketing Content End*/

/*Content Creation Subpage - Product Content Start*/
#product-content{
  padding-bottom: 30px;
}
#product-content-text span{
  font-weight: bold;
}
/*Content Creation Subpage - Product Content End*/

/*Content Creation Subpage - Employee Training Content Start*/
#employee-content{
  padding-bottom: 30px;
}
#employee-content-text span{
  font-weight: bold;
}
/*Content Creation Subpage - Employee Training Content End*/

/*Service Subpage - Transcription Start*/
#transcription-service{
  padding-bottom: 30px;
}
#transcription-text span{
  font-weight: bold;
}
/*Service Subpage - Transcription End*/

/*Service Subpage - Technical Authoring Writing Start*/
#technical-authoring{
  padding-bottom: 30px;
}
#technical-text span{
  font-weight: bold;
}
/*Service Subpage - Technical Authoring Writing End*/

/*Service Subpage - Transcreation Start*/
#transcreation-service{
  padding-bottom: 30px;
}
#transcreation-text span{
  font-weight: bold;
}
/*Service Subpage - Transcreation End*/

/*Service Subpage - Game Localization / Testing Start*/
#game-localization{
  padding-bottom: 30px;
}
#game-text span{
  font-weight: bold;
}
/*Service Subpage - Game Localization / Testing End*/

/*Service Subpage - Medical Writing Start*/
#medical-writing{
  padding-bottom: 30px;
}
#medical-text span{
  font-weight: bold;
}
/*Service Subpage - Medical Writing End*/

/*Service Subpage - Data for AI Start*/
#data-ai{
  padding-bottom: 30px;
}
#data-ai-text span{
  font-weight: bold;
}
/*Service Subpage - Data for AI End*/

/*Industry Subpage - BPO & KPO Start*/
#bpo-kpo{
  padding-bottom: 30px;
}
#bpo-kpo-text span{
  font-weight: bold;
}
/*Industry Subpage - BPO & KPO End*/

/*Industry Subpage - Aviation & Aeronautics Start*/
#aviation{
  padding-bottom: 30px;
}
#aviation-text span{
  font-weight: bold;
}
/*Industry Subpage - Aviation & Aeronautics End*/

/*Industry Subpage - E-commerce/Digital Channel Start*/
#e-commerce{
  padding-bottom: 30px;
}
#e-com-text span{
  font-weight: bold;
}
/*Industry Subpage - E-commerce/Digital Channel End*/

/*Industry - Education Start*/
#education{
  padding-bottom: 30px;
}
#education-text span{
  font-weight: bold;
}
/*Industry Subpage - Education End*/

/*Industry Subpage - Energy & Utility Start*/
#energy-utility{
  padding-bottom: 30px;
}
#energy-text span{
  font-weight: bold;
}
/*Industry Subpage - Energy & Utility End*/

/*Industry Subpage - Fintech Industry Start*/
#fintech-industry{
  padding-bottom: 30px;
}
#fintech-text span{
  font-weight: bold;
}
/*Industry Subpage - Fintech Industry End*/

/*Industry Subpage - Food & Beverages Industry Start*/
#food-beverages{
  padding-bottom: 30px;
}
#food-beverages-text span{
  font-weight: bold;
}
/*Industry Subpage - Food & Beverages Industry End*/

/*Industry Subpage - Government Industry Start*/
#government-industry{
  padding-bottom: 30px;
}
#government-text span{
  font-weight: bold;
}
/*Industry Subpage - Government Industry End*/

/*Industry Subpage - IT Companies Start*/
#it-company{
  padding-bottom: 30px;
}
#it-company-text span{
  font-weight: bold;
}
/*Industry - IT Companies End*/

/*Industry Subpage - Legal Services Start*/
#legal-services{
  padding-bottom: 30px;
}
#legal-services-text span{
  font-weight: bold;
}
/*Industry Subpage - Legal Services End*/

/*Industry Subpage - Logistics Start*/
#logistics{
  padding-bottom: 30px;
}
#logistics-text span{
  font-weight: bold;
}
/*Industry Subpage - Logistics End*/

/*Industry Subpage - Manufacturing & Automotive Start*/
#manufacture-automotive{
  padding-bottom: 30px;
}
#manufacture-automotive-text span{
  font-weight: bold;
}
/*Industry Subpage - Manufacturing & Automotive End*/

/*Industry Subapge - Media Entertainment Start*/
#media-enter{
  padding-bottom: 30px;
}
#media-text span{
  font-weight: bold;
}
/*Industry Subpage - Media Entertainment End*/

/*Industry Subpage - Publication House Start*/
#publication{
  padding-bottom: 30px;
}
#publication-text span{
  font-weight: bold;
}
/*Industry Subpage - Publication House End*/

/*Industry Subpage - Publication House Start*/
#real-estates{
  padding-bottom: 30px;
}
#real-estates-text span{
  font-weight: bold;
}
/*Industry Subpage - Publication House End*/

/*Industry Subpage - Retail Industry Start*/
#retail{
  padding-bottom: 30px;
}
#retail-text span{
  font-weight: bold;
}
/*Industry Subpage - Retail Industry End*/

/*Industry Subpage - Sports Industry Start*/
#sports{
  padding-bottom: 30px;
}
#sports-text span{
  font-weight: bold;
}
/*Industry Subpage - Sports Industry End*/

/*Industry Subpage - Telecommunication Industry Start*/
#telecommunication{
  padding-bottom: 30px;
}
#telecommunication-text span{
  font-weight: bold;
}
/*Industry Subpage - Telecommunication Industry End*/

/*Industry Subpage - Textile Industry Start*/
#textile{
  padding-bottom: 30px;
}
#textile-text span{
  font-weight: bold;
}
/*Industry subpage - Textile Industry End*/

/*Industry subpage - Travel & Hospitality Industry Start*/
#travel-hospitality{
  padding-bottom: 30px;
}
#travel-text span{
  font-weight: bold;
}
/*Industry Subpage - Travel & Hospitality Industry End*/

/*Solution Subpage - Website Localization Start*/
#web-localization{
  padding-bottom: 30px;
}
#web-localization-text span{
  font-weight: bold;
}
/*Solution Subpage - Website Localization End*/

/*Solution Subpage - Fast & Professional Start*/
#fast-solution{
  padding-bottom: 30px;
}
#fast-solution-text span{
  font-weight: bold;
}
/*Solution Subpage - Fast & Professional End*/

/*Solution Subpage - E-learning Localization Solution Start*/
#e-learn-solution{
  padding-bottom: 30px;
}
/*Solution Subpage - E-learning Localization Solution End*/

/*Solution Subpage - Multilingual Marketing Solution Start*/
#multilingual-marketing{
  padding-bottom: 30px;
}
#marketing-solution-text span{
  font-weight: bold;
}
/*Solution Subpage - Multilingual Marketing Solution End*/

/*Solution Subpage - Multilingual Multimedia Solution Start*/
#multilingual-multimedia{
  padding-bottom: 30px;
}
#multimedia-solution-text span{
  font-weight: bold;
}
/*Solution Subpage - Multilingual Multimedia Solution End*/

/*Solution Subpage - Trasncreation Translation Solution Start*/
#solution-translation{
  padding-bottom: 30px;
}
/*Solution Subpage - Trasncreation Translation Solution End*/

/*Solution Subpage - Enterprise Translation Automation Start*/
#enterprise-automation{
  padding-bottom: 30px;
}
#enterprise-automation-text span{
  font-weight: bold;
}
/*Solution Subpage - Enterprise Translation Automation End*/

/*Solution Subpage - Content Authoring Origination Start*/
#content-origination{
  padding-bottom: 30px;
}
#content-origination-text span{
  font-weight: bold;
}
/*Solution Subpage - Content Authoring Origination End*/

/*Languages Subpage - German Translation Start*/
#german-lang{
  padding-bottom: 30px;
}
#german-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - German Translation End*/

/*Languages Subpage - Arabic Translation Start*/
#arabic-lang{
  padding-bottom: 30px;
}
#arabic-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Arabic Translation End*/

/*Languages Subpage - Chinese Translation Start*/
#chinese-lang{
  padding-bottom: 30px;
}
#chinese-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Chinese Translation End*/

/*Languages Subpage - Italian Translation Start*/
#italian-lang{
  padding-bottom: 30px;
}
#italian-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Italian Translation End*/

/*Languages Subpage - French Translation Start*/
#french-lang{
  padding-bottom: 30px;
}
#french-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - French Translation End*/

/*Languages Subpage - Japanese Translation Start*/
#japanese-lang{
  padding-bottom: 30px;
}
#japanese-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Japanese Translation End*/

/*Languages Subpage - Korean Translation Start*/
#korean-lang{
  padding-bottom: 30px;
}
#korean-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Korean Translation End*/

/*Languages Subpage - Portuguese Translation Start*/
#portuguese-lang{
  padding-bottom: 30px;
}
#portuguese-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Portuguese Translation End*/

/*Languages Subpage - Russian Translation Start*/
#russian-lang{
  padding-bottom: 30px;
}
#russian-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Russian Translation End*/

/*Languages Subpage - Spanish Translation Start*/
#spanish-lang{
  padding-bottom: 30px;
}
#spanish-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Spanish Translation End*/

/*Languages Subpage - Thai Translation Start*/
#thai-lang{
  padding-bottom: 30px;
}
#thai-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Thai Translation End*/

/*Languages Subpage - Swahili Translation Start*/
#swahili-lang{
  padding-bottom: 30px;
}

#swahili-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Swahili Translation End*/

/*Languages Subpage - Norwegian Translation Start*/
#norwegian-lang{
  padding-bottom: 30px;
}

#norwegian-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Norwegian Translation End*/

/*Languages Subpage - Malay Translation Start*/
#malay-lang{
  padding-bottom: 30px;
}

#malay-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Malay Translation End*/

/*Languages Subpage - Irish Translation Start*/
#irish-lang{
  padding-bottom: 30px;
}
#irish-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Irish Translation End*/

/*Languages Subpage - Hindi Translation Start*/
#hindi-lang{
  padding-bottom: 30px;
}

#hindi-lang-text span{
  font-weight: bold;
}
/*Languages Subpage - Hindi Translation End*/

/*Career At White Globe End*/
#career-section{
  border: 1px solid #0E449A;
}
.career-detail{
  padding: 15px;
  border-top: 0;
}
.article-link{
  color: #0E449A;
}
.career-detail h4{
  color: #0E449A;
}

.btn-read-more{
  background-color:#0E449A;
  &:hover{
    background-color:#0E449A;
  }
}
.btn-read-more a{
  color: #fff;
  text-decoration: none;
}
.career-freelance{
  padding: 15px;
  border-top: 0;
}
.career-freelance h6{
  color: #0E449A;
}
#career-section-freelancers{
  border: 1px solid #0E449A;
  max-height: 110px;
}
/*Career At White Globe End*/

/*Pricing Start*/

#p-form{
 color: whitesmoke;
}
@media only screen and (max-width:768px){
  #map-pricing iframe{
    width: 280px;
    height: 280px;
  }
}
@media only screen and (max-width:820px){
  #pricig-responsive .input{
      width: 90%;
      outline: none;
      border: 2px solid #fafafa;
      background: none;
      padding: 0.6rem 1.2rem;
      color: #fff;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      border-radius: 25px;
      transition: 0.3s;
    }
    #pricing-responsive textarea{
     padding: 0.8rem 1.2rem;
     min-height: 150px;
     border-radius: 22px;
     resize: none;
     overflow-y: auto;
  }
}
/*Pricing End*/

/*Languages Subpage - Privacy Policy Start*/
#privacy-policy{
  padding-bottom: 30px;
}
#policy-text span{
  font-weight: bold;
}
/*Languages Subpage - Privacy Policy End*/


/*Customer Success Stories Start*/
.customer-success img{
  height: 300px;
  width: 300px;
}
/*Customer Success Stories End*/


/*Thank You Page Start*/
.thank-you{
  max-width: 1320px;
  margin: 0 auto;
  padding: 5%;
 }
 .back a{
   color: black;
   font-size: 20px;
 }
 .back a:hover{
 color: #0bb9ed
 }
 /*Thank You Page End*/


 /*Ensuring Confidentiality Start*/
 #ensuring-confidentiality{
  padding-bottom: 30px;
}
#confidentiality-text span{
    font-weight: bold;
    letter-spacing: normal;
  }
/*Ensuring Confidentiality End*/

/*Ensuring Quality And ISO Certification Start*/
#ensuring-quality{
  padding-bottom: 30px;
}
#quality-text span{
  font-weight: bold;
  letter-spacing: normal;
}
/*Ensuring Quality And ISO Certification End*/

/*PI Square Alpha Start*/
#pi-square-alpha{
 padding-bottom: 30px;
}

/*PI Square Alpha End*/

/*Industries Request To Call Back Connect Pop Up Form Start*/

/* Popup container styles */
#popupContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup content styles */
#popupContent {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  max-width: 500px;
}

/* Close button styles */
#closePopup {
  background-color: #0E449A;
  color: #fff;
  border: none;
  margin:  0 0 0 420px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  /* margin-top: 10px; */
}

/* Form styles */
#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm input[type="text"],
#contactForm input[type="tel"],
#contactForm input[type="email"],
#contactForm button {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #0E449A;
  font-size: 16px;
}

#contactForm button {
  background-color: #0E449A;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Styling the trigger button */
#openPopup {
  background-color: #0E449A;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/*Industries Request To Call Back / Connect Pop Up Form End*/




 