* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'SegoeUI'
}
:root {
  --black: #000000;
  --white: #fff;
  --gray: #333;
  --logo_blue: #0f52ba;
}
/*all fonts start here*/
@font-face {
  font-family: 'SegoeUI';
  src: url('../fonts/SegoeUI.eot');
  src: url('../fonts/SegoeUI.eot') format('embedded-opentype'), url('../fonts/SegoeUI.woff2') format('woff2'), url('../fonts/SegoeUI.woff') format('woff'), url('../fonts/SegoeUI.ttf') format('truetype'), url('../fonts/SegoeUI.svg#SegoeUI') format('svg');
}
@font-face {
  font-family: 'SegoeUIBold';
  src: url('../fonts/SegoeUIBold.eot');
  src: url('../fonts/SegoeUIBold.eot') format('embedded-opentype'), url('../fonts/SegoeUIBold.woff2') format('woff2'), url('../fonts/SegoeUIBold.woff') format('woff'), url('../fonts/SegoeUIBold.ttf') format('truetype'), url('../fonts/SegoeUIBold.svg#SegoeUI') format('svg');
}
@font-face {
  font-family: 'pnr';
  src: url('../fonts/pnr.eot');
  src: url('../fonts/pnr.eot') format('embedded-opentype'), url('../fonts/pnr.woff2') format('woff2'), url('../fonts/pnr.woff') format('woff'), url('../fonts/pnr.ttf') format('truetype'), url('../fonts/pnr.svg#pnr') format('svg');
}
@font-face {
  font-family: 'pnb';
  src: url('../fonts/pnb.eot');
  src: url('../fonts/pnb.eot') format('embedded-opentype'), url('../fonts/pnb.woff2') format('woff2'), url('../fonts/pnb.woff') format('woff'), url('../fonts/pnb.ttf') format('truetype'), url('../fonts/pnb.svg#pnb') format('svg');
}
/*all fonts end here*/
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1
  }
}
body {  
  overflow-x: hidden;
  background: var(--white);
}
a:hover {
  text-decoration: none;
}
p {
  font-size: 16px;
}
.mt-2 {
  margin-top: 2vw !important;
}
.mt-3 {
  margin-top: 3vw !important;
}
.heading {
  font-family: 'SegoeUIBold';
  font-weight: 600;
  color: var(--black);
  font-size: 2.5vw;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.caption .heading span {
	font-family: 'SegoeUIBold';
}


@keyframes FadeInTop {
  0% { 
	opacity: 0;
	bottom: 10vw;
	}
  100% { 
	opacity: 1;
	bottom: 15vw;
	}
}




.title_h3 {
  font-family: 'SegoeUIBold';
  font-weight: 600;
  color: var(--black);
  font-size: 1.9vw;
}
.sub_heading {
  font-family: 'SegoeUI';
  font-weight: 500;
  color: var(--dark);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 0 !important;
  min-height: 55px;
}
.nav_slide {
  background: var(--white) !important;
  /*	filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.02));
  border-bottom: 1px solid #ddd;*/
}
.nav_slide .logo {
  padding: 1vw 0.532vw;
  width: 38% !important;
}
.nav_slide ul li a {
  font-size: 14px !important;
}
.nav_bar {
  background: rgba(255,255,255,0.8);
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav_bar nav {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1vw;
}
.nav_bar .logo {
  padding: 1vw 0.532vw;
  width: 45%;
  transition: 0.5s;
}
.nav_bar .logo span {
  position: relative;
  top: 10px;
  color: #666;
  font-size: 0.75vw;
}
.nav_bar .logo img {
  max-width: 22%;
}
.nav_bar ul {
  display: flex;
  margin-bottom: 0;
}
.nav_bar ul li {
  list-style: none;
  color: var(--dark);
  position: relative;
}
.nav_bar ul li a {
  padding: 1vw;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-family: 'SegoeUI';
  font-size: 18px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
/*

.nav_bar ul li a.active {
	color: var(--logo_blue);
}
*/
.nav_bar ul li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  /*  background-image: linear-gradient(180deg,#2b87da 0%,#29c4a9 100%);*/
  /*background-image: linear-gradient(90deg, #2b87da 0%, #29c4a9 100%);*/
  background: linear-gradient(90deg, rgba(15,82,186,1) 0%, rgba(41,196,169,1) 100%);
  visibility: none;
  opacity: 0;
  z-index: -1;
  border-radius: 2px;
}
.nav_bar ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
  transition: 0.25s;
}
.nav_bar ul li a:hover {
  color: var(--white);;
}
.menu-btn {
  display: none;
  width: 30px;
}
/*SLIDER CSS START*/
.home-slider .carousel-control-prev {
  top: 50%;
  height: 60px;
  width: 40px !important;
  background: none;
  color: var(--dark); !important;
  opacity: 0;
  transition: 0.5s;
  font-size: 3vw;
  border: none;
  left: 40px;
}
.home-slider:hover .carousel-control-prev, .home-slider:hover .carousel-control-next {
  opacity: 1;
}
.home-slider .carousel-control-next {
  top: 50%;
  height: 60px;
  width: 40px !important;
  background: none;
  color: var(--dark); !important;
  opacity: 0;
  transition: 0.5s;
  font-size: 3vw;
  border: none;
  right: 40px;
}
.home-slider .carousel-control-prev:hover, .home-slider .carousel-control-next:hover {
  color: #fff !important;
}
.home-slider .carousel-indicators {
  bottom: 2%;
  margin-bottom: 1vw;
}
.home-slider .carousel-indicators li {
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
}
.home-slider .carousel-indicators li.active {
  background: var(--dark) !important;
}
.home-slider .carousel-item {
  height: 46vw;
}
.home-slider .carousel-item .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0 !important;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInBottom;
}
.home-slider .carousel-item .carousel-caption .slide_caption {
  background: rgba(0, 0, 0, 0.3);
  width: 80%;
  margin: 0 auto;
  padding: 2vw;
}
.home-slider .carousel-item .carousel-caption .slide_caption h1 {
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 3.25vw;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.home-slider .carousel-item .carousel-caption .slide_caption p {
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 1.8vw;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 1;
}
.home-slider .carousel-item .carousel-caption .btn_primary {
  color: var(--dark);;
  border: 2px solid var(--dark);;
  padding: 0.5vw 1.25vw;
}
.caption {
  position: absolute;
  bottom: 15vw;
  left: 8vw;
  z-index: 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
	/*animation-name: FadeInTop;
 animation-duration: 2s;*/ 
}

.career_page .caption {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_sec:after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+76&0.68+0,0+75 */
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 76%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 76%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 76%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ad000000', endColorstr='#00000000', GradientType=1); /* IE6-9 fallback on horizontal gradient */
  position: absolute;
}
#loader {
  height: 100vh;
}
.loader-icon {
  width: 68px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-play-btn {
  position: absolute;
  bottom: 8vw;
  left: 2vw;
  cursor: pointer;
  z-index: 99;
}
.play_icon, .pause_icon {
  position: relative;
}
.play_icon:after {
  background: url("../images/svg/play.svg");
}
.pause_icon:after {
  background: url("../images/svg/pause.svg");
}
.play_icon:after, .pause_icon:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5vw;
  height: 2.5vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*SLIDER CSS END*/
/*Common CSS START*/
.button {
  position: relative;
  transition: 0.2s;
  font-size: 1.25vw;
}
.button:after {
  content: '';
  position: absolute;
  color: var(--dark);;
  right: 0.5vw;
  top: 50%;
  transform: translateY(-50%)
}
.button.btn_primary:hover {
  padding: 0.5vw 2.5vw 0.5vw 1.25vw !important;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent !important;
}
.button:hover:after {
  content: '';
  background: url(../images/svg/angle-right.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.des {
  font-size: 24px;
  color: var(--dark);
}
.card_box_main {
  justify-content: center;
}
.card_box_main .col-md-4 {
  margin-bottom: 3vw;
}
.card_box {
  background-color: var(--dark);;
  border-radius: 8px;
  box-shadow: 0 8px 60px 0 rgb(103 151 255 / 11%), 0 12px 90px 0 rgb(103 151 255 / 11%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: 0.5s;
}
.card_box:hover {
  transform: translateX(0px) translateY(-11px);
}
.icon_box {
  background-image: linear-gradient(180deg, #2b87da 0%, #29c4a9 100%);
  padding: 1.25vw;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 3.5vw;
  color: var(--dark);;
}
.content_box {
  padding: 0 1.25vw 1.25vw;
}
.about_text {
  padding: 3vw;
  background-color: #f4f4f4;
}
.about_text p {
  font-size: 16px;
}
.testimonial_sec {
  background-image: linear-gradient(180deg, #2b87da 0%, #29c4a9 100%);
  padding: 4vw;
}
.testimonial_sec p {
  font-size: 24px;
  color: var(--dark);;
}
.testimonial_sec img {
  width: 8vw;
}
.contact_bg {
  padding: 8vw 0 6vw 0;
/*  background-image: url("../images/contact.png");*/
  background-repeat: no-repeat;
  background-size: cover;
}
.contact_form .form-control, .contact_form .form-control:focus {
  background-color: rgba(107, 105, 106, 0.1);
  border: none;
  color: var(--dark);;
  box-shadow: none;
  font-size: 18px;
  padding: 1.5vw 1vw;
}
input::placeholder {
  color: white;
  opacity: 1;
}
.contact_form .button {
  background-color: #d94b6a;
  padding: 0.5vw 2vw;
  font-size: 18px;
  border: 2px solid #d94b6a;
  color: var(--dark);;
  float: right;
}
.contact_form .button:hover {
  background-color: #d94b6a;
  padding: 0.5vw 3vw 0.5vw 1.25vw !important;
  color: #fff;
}
.contact_sec h2 {
  color: var(--dark);;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
}
.contact_sec p {
  color: #000;
  font-size: 18px;
}
.contact_sec h4 {
  color: var(--dark);;
  font-size: 22px;
}
.contact_details i {
  color: var(--dark);;
  font-size: 3.5vw;
  margin-bottom: 1vw;
}
.contact_details h3 {
  color: var(--dark);;
  font-size: 20px;
  font-weight: 600;
}
.contact_details a {
  color: #2ea3f2;
}
.contact_details p {
  color: #000;
  margin-bottom: 0;
}
.captcha {
  color: var(--dark);;
}
.who_we_are {
  background-image: url("../images/728290531.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 475px;
}
/*accordion start*/
.accordio .btn {
  color: black;
  font-size: 1.65vw;
}
.accordio .btn {
  display: table;
  WIDTH: 90%;
}
.accordio .btn:hover, .accordio .btn:focus {
  text-decoration: none;
}
.career_page .accordio {
  padding: 2.5vw 0;
}
.career_page .accordio .card {
  background: none;
  border: none;
}
.career_page .accordio .card-header {
  background: none;
}
.accordio .card {
  border-radius: 0;
  margin-top: 5px;
}
.accordio .btn {
  position: relative;
}
.accordio .btn:after {
  content: '';
  background-image: url("../images/svg/angle-right-b.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
  width: 24px;
  right: -7vw;
  top: 0;
  position: absolute;
  transition: 0.5s;
}
.selected {
  background: #000;
}
.accordio .btn.collapsed:after {
  transform: rotate(180deg);
}
/*accordion end*/
/*talk experts start*/
.talk_btn {
  /*background-image: linear-gradient(180deg, #2b87da 0%, #29c4a9 100%);*/
  background: linear-gradient(90deg, rgba(15,82,186,1) 0%, rgba(41,196,169,1) 100%);
  display: inline-block;
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 16px;
}
.talk_btn:hover {
 background: linear-gradient(-90deg, rgba(15,82,186,1) 0%, rgba(41,196,169,1) 100%);
  color: #fff;
}

.talk_btn.sharp {
	border-radius: 0;
	width: fit-content;
	margin: 0 auto;
}

/*talk experts end*/
.sol_sec {
  /*	background-image: url(../images/sol_bg.jpg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*	padding: 3vw 0;*/
}
.head_strap {
  border-left: 5px solid var(--logo_blue);
  background: #eef8ff;
  padding: 10px 0 10px 15px;
}
.heading span {
  color: var(--logo_blue);
  background: linear-gradient(90deg, rgba(15,82,186,1) 0%, rgba(41,196,169,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.three h1 {
  letter-spacing: 0;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
}
.three h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: var(--logo_blue);
}
.three h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 100%;
  background-color: var(--logo_blue);
}

.services {
  margin-top: 30px;
}

.service_group {
  margin-bottom: 80px;
}
.services_text {
  padding-left: 60px;
}
.services_text:nth-child(1) {
  padding-right: 40px;
  padding-left: 15px;
}
.services_text p {
  line-height: 2rem;
  color: var(--black);
}
.service_group p.moretext {
  display: none;
  margin-top: 8px;
}
.service_group .moreless-button {
/*  margin-top: 15px;*/
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--dark);
  font-size: 16px;
  transition: 0.25s all ease;
}


.service_group .moreless-button:hover {
	background: #000;
	color: #fff;
}
.testimonial .testimonial_text {
  font-size: 1.65vw;
  color: var(--logo_blue);
}
.testimonial_img img {
  border-radius: 100%;
}
.testimonial_info {
  margin-top: 30px;
  padding-top: 30px;
}
.testimonial_info h3 {
  font-size: 24px;
  color: var(--dark);
}

.testimonial_info p {
  color: var(--dark);
}
.quote_img {
  width: 80px;
}
.testimonial .carousel-inner {
  padding: 0 60px;
}
.testimonial .carousel-control-prev-icon {
  background-image: url("../images/svg/angle-right-l.svg");
  width: 36px;
  height: 36px;
}
.testimonial .carousel-control-next-icon {
  background-image: url("../images/svg/angle-right-r.svg");
  width: 36px;
  height: 36px;
}
.testimonial .carousel-control-next {
  width: 2%;
}
.testimonial .carousel-control-prev {
  width: 2%;
}
.comp_logo {
	width: 120px;
  margin-left: 15px;
}
.serv_txt_right {
  position: absolute;
  left: 32vw;
  max-width: 66.5vw;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
}
.sol_cont {
  position: absolute;
  left: 50%;
  z-index: 9;
  transform: translate(-50%);
  padding: 3vw 0;
}
.sol_cont p {
	font-size: 18px;
}

.slideshow {
  list-style-type: none;
}
/** SLIDESHOW **/
.slideshow, .slideshow:after {
  /*Not sure why I needed this fix*/
  position: relative;
  width: 100%;
  height: 100vh;
  left: 0px;
  z-index: 0;
}
.slideshow li span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s; */
}
.slideshow:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow li:nth-child(1) span {
  background-image: url("../images/sol_bg.jpg");
}
/*.slideshow li:nth-child(2) span { 
    background-image: url("../images/slide1.jpg");
    animation-delay: 6s; 
}
.slideshow li:nth-child(3) span { 
    background-image: url("../images/sol_bg.jpg");
    animation-delay: 12s; 
}
.slideshow li:nth-child(4) span { 
    background-image: url("../images/slide1.jpg");   
    animation-delay: 18s; 
}
.slideshow li:nth-child(5) span { 
    background-image: url("../images/sol_bg.jpg");
    animation-delay: 24s; 
}*/
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1
  }
  25% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}
@keyframes titleAnimation {
  0% {
    opacity: 0
  }
  8% {
    opacity: 1
  }
  17% {
    opacity: 1
  }
  19% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}
.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}
footer {
  background-color: #000 !important;
  padding: 3vw 0;
}
.footer_logo {
  width: 9vw;
}
footer h6 {
  font-size: 1.25vw;
  color: var(--white);
  font-weight: 600;
  margin-top: 1.55vw;
}
footer .footer_link {
  list-style: none;
}
footer .footer_link li a {
  color: var(--white);
  padding: 0.25vw 0;
  display: block;
}
footer .footer_link li a:hover {
  text-decoration: underline;
}
.copyright_sec {
  background-color: #000;
  border-top: 1px solid var(--dark);
  padding: 1vw;
}
.copyright_sec p {
  color: #666;
}
.plr_6 {
  padding-right: 6vw;
  padding-left: 6vw;
}


/*13-01-2024*/
.explore_sec {
  margin-bottom: 60px;
}


.cards_flip_main {
  margin-top: 2rem;
}

.card_flip {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f4f4f4;
  padding: 20px;
  height: 300px;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
  text-align: center;
  overflow: hidden;
  transition: 1.5s;
}

.card_flip:hover {
	height: 580px;
}


.flip_text_box {
  width: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  z-index: 9;
  transition: 0.5s ease;
  background: #f4f4f4;
  padding: 20px;
  height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
    text-align: center;
}

.card_flip:hover .flip_text_box {
  right: 0;
}

.card_flip .flip_text_box.left-right,
.card_flip .flip_text_box.left-right {
    left: -100%;
}

.card_flip:hover .flip_text_box.left-right,
.card_flip:hover .flip_text_box.left-right {
  left: 0;
}

.flip_img_box img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}
.flip_img_box {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.25s ease;
	height: 100%;
}

.card_flip:hover .flip_img_box {
  top: -100%;
}

.flip_text_box img {
	width: 150px;
	margin: 10px auto;
}
.flip_text_box h4 {
  color: var(--black);
  font-size: 21px;
}
.flip_text_box p {  
  font-size: 18px;
  text-align: left;
  color: var(--black);
  margin-bottom: 8px;
}

.flip_text_box h5 {
  font-size: 18px;
}

#services {
  padding-top: 2vw;
}

.card-body .text_box img {
	padding: 0 15px 0 0;
	width: 30%;
}


.brand_logo {
    text-align: center;
	margin-top: 24px;
}

.brand_logo img {
    width: 200px;
    margin: 0 auto;
}


.btns_div {
	margin-top: 15px;
}

.btns_div .sharp {
	margin-left: 15px;
}
.testimonial {
	background: rgba(0,0,0,.03);
}

.services_text h3 {
	margin-bottom: 10px;
	margin-top: 24px;
	font-weight: 600;
	font-size: 24px;
}
.services_text .list_head {
	margin-bottom: 10px;
	margin-top: 18px;
	font-weight: 600;
}

.list {
	padding-left: 15px;
}
.list li {
	margin-bottom: 10px;
	font-size: 16px; 
}

.thankyou {
	height: 70vh;
	justify-content: center;
}

/*13-01-2024*/

/*Common CSS START*/
@media (max-width: 980px) {
  .nav_bar ul li a {
    font-size: 16px;
  }
  .nav_bar .logo {
    width: 35%;
  }
  .nav_bar .logo img {
    max-width: 20%;
  }
  .plr_6 {
    padding: 0 6vw;
  }
}
@media (max-width: 767.98px) {
  a, p {
    font-size: 2.5vw;
  }
  .mt-2 {
    margin-top: 5vw !important;
  }
  .mt-3 {
    margin-top: 8vw !important;
  }
  .mob_hide {
    display: none;
  }
  .button {
    font-size: 2.5vw;
  }
  .heading {
    font-size: 4vw;
    margin-bottom: 10px;
  }
  .sub_heading {
    min-height: 7vw;
    font-size: 3vw;
  }
  .caption {
    bottom: 15px;
    left: 20px;
    padding: 10px;
	  animation-name: FadeInTop;
 animation-duration: 2s; 
  }
	

  .video-play-btn {
    display: none;
  }
  .nav_bar nav {
    width: 85%;
  }
  .nav_bar .logo {
    padding: 2vw 0;
  }
  .nav_bar .logo img {
    max-width: 40%;
  }
  .nav_bar .logo span {
    font-size: 1.75vw;
  }
  .nav-menu {
    display: none;
  }
  .menu-btn {
    padding: 5px;
    cursor: pointer;
    width: 30px;
    display: flex;
  }
  .nav_bar ul {
    display: none;
    position: absolute;
    width: 84%;
    background: var(--dark);
    top: 100%;
    z-index: 9999;
    padding: 4vw;
    border-top: 3px solid var(--logo_blue);
  }
  .nav_bar ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .03);
  }
  .nav_bar ul li a {
    padding: 2vw 4vw;
    display: block;
    font-size: 1.75vw;
    color: #000;
  }
  .menu-btn span {
    position: relative;
  }
  .menu-btn span {
    height: 2px;
    background: var(--logo_blue);
    width: 100%;
    margin: 3px 0px;
    transition: .4s;
  }

	
  .menu-btn span:before {
    content: '';
    height: 2px;
    background: var(--logo_blue);
    width: 100%;
    margin: 3px 0px;
    position: absolute;
    transition: .4s;
    top: 2px;
  }
  .menu-btn span:after {
    content: '';
    height: 2px;
    background: var(--logo_blue);
    width: 100%;
    margin: 3px 0px;
    position: absolute;
    transition: .4s;
    bottom: 2px;
  }
  .menu-btn.toggle span {
    background: transparent;
  }
  .menu-btn.toggle span:after {
    transform: rotate(45deg);
    margin: 0;
    top: 0;
  }
  .menu-btn.toggle span:before {
    transform: rotate(-45deg);
    margin: 0;
    top: 0;
  }
  .talk_btn {
    padding: 1.5vw 3.5vw;
    font-size: 2.5vw;
  }
  .card_box_main .col-md-4 {
    margin-bottom: 8vw;
  }
  .card-body {
    flex-direction: column;
  }
  .card-body .text_box {
    margin-top: 3vw;
  }
  .testimonial .carousel-inner {
    padding: 0 20px;
  }
  .career_page .accordio {
    padding: 3vw 0 6vw 0;
  }
  .services_text {
    padding-left: 15px;
  }
  
  .services_text:nth-child(1) {
	  padding-right: 15px;
  }
  /*SLIDER CSS START*/
  .home-slider .carousel-item {
    height: 56vw;
  }
  .home-slider .carousel-control-prev {
    opacity: 1;
    left: 10px;
  }
  .home-slider .carousel-control-next {
    opacity: 1;
    right: 10px;
  }
  .home-slider .carousel-item .carousel-caption .slide_caption h1 {
    font-size: 3.8vw;
  }
  .home-slider .carousel-item .carousel-caption .slide_caption p {
    font-size: 2.75vw;
  }
  .home-slider .carousel-item .carousel-caption .btn_primary {
    padding: 0.5vw 2vw;
  }
  .home-slider .carousel-indicators li {
    width: 0.75vw;
    height: 0.75vw;
  }
  .loader-icon {
    width: 18vw;
  }
  /*SLIDER CSS END*/
  .button.mt-2 {
    margin-top: 2vw !important;
  }
  .des {
    font-size: 16px;
  }
  .card_box {
    background-color: var(--dark);
    border-radius: 8px;
    box-shadow: 0 8px 60px 0 rgb(103 151 255 / 11%), 0 12px 90px 0 rgb(103 151 255 / 11%);
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .icon_box {
    padding: 3vw;
    font-size: 7vw;
  }
  .content_box {
    padding: 0 3vw 3vw;
  }
  .about_text {
    padding: 4.5vw;
  }
  .about_text p {
    font-size: 3.5vw;
  }
  .services_text p {
    line-height: 1.8;
  }
  .testimonial_sec p {
    font-size: 3.5vw;
  }
  .testimonial .testimonial_text {
    font-size: 18px;
  }
  .testimonial_info h3 {
    font-size: 18px;
  }
  .comp_logo {
    width: 60px;
  }
  .quote_img {
    width: 45px;
  }
  .service_group {
    margin-bottom: 6vw;
  }
  .service_group .moreless-button {
    padding: 1.5vw 3.5vw;
    font-size: 2.5vw;
  }
  .accordio .btn {
    font-size: 18px;
  }
  .contact_details {
    margin-bottom: 5vw;
  }
  .contact_form .form-control, .contact_form .form-control:focus {
    padding: 3vw 3vw;
    font-size: 2vw;
  }
  .contact_details i {
    font-size: 8vw;
    margin-bottom: 1vw;
  }
  .contact_sec h2 {
    font-size: 6.5vw;
  }
  .contact_details h3 {
    font-size: 2.5vw;
    font-weight: 600;
  }
  .contact_sec h4 {
    font-size: 2.5vw;
  }
  .contact_sec p, .contact_sec a {
    font-size: 2vw;
  }
  .contact_form .button {
    font-size: 2.25vw;
    padding: 1vw 2vw;
  }
  .contact_form .button:hover {
    padding: 1vw 3vw !important
  }
  .captcha {
    font-size: 1.75vw;
  }
  .footer_secs {
    margin-top: 3vw;
  }
  .footer_logo {
    width: 15vw;
  }
  footer h6 {
    font-size: 2.5vw;
  }
  .column_reverse_mob {
    flex-direction: column-reverse;
  }
  .services {
    margin-bottom: 5vw !important;
  }
	
	.cards_flip_main {
		margin-top: 0;
	}
	
	.card_flip {
		margin-top: 20px;
		height: 350px;
	}
	.card_flip:hover {
		margin-top: 20px;
		height: 780px;
	}

.flip_text_box {
	height: 780px;
}
	
	
.card-body .text_box img {
	width: 100%;
}


.brand_logo img {
    width: 100%;
    margin: 0 auto;
}	
	
}

@media (max-width: 600px) {
  a, p {
    font-size: 3.5vw;
  }
  .button {
    font-size: 3.25vw;
  }
  .heading {
    font-size: 5vw;
	  line-height: 1;
  }

	
	
  .title_h3 {
    font-size: 3.85vw;
    margin-top: 2.85vw;
  }
  .sub_heading {
    min-height: 7vw;
    font-size: 4vw;
  }
  .nav_bar ul li a {
    font-size: 3.5vw;
  }
  .home-slider .carousel-control-prev, .home-slider .carousel-control-next {
    font-size: 5vw;
  }
  .home-slider .carousel-item .carousel-caption {
    top: 45%;
  }
  .talk_btn, .service_group .moreless-button {
    font-size: 3.5vw;
  }
  .icon_box {
    font-size: 15vw;
  }
  .contact_details {
    margin-bottom: 8vw;
  }
  .contact_form .form-control, .contact_form .form-control:focus {
    padding: 5vw 4vw;
    font-size: 3vw;
  }
  .contact_details i {
    font-size: 10vw;
    margin-bottom: 1vw;
  }
  .contact_sec h2 {
    font-size: 6.5vw;
  }
  .contact_details h3 {
    font-size: 3.5vw;
    font-weight: 600;
  }
  .contact_sec h4 {
    font-size: 3.5vw;
  }
  .contact_sec p, .contact_sec a {
    font-size: 3vw;
  }
  .contact_form .button {
    font-size: 3vw;
    padding: 2vw 3vw;
  }
  .contact_form .button:hover {
    padding: 2vw 4vw !important;
  }
  .captcha {
    font-size: 3vw;
  }
  .footer_logo {
    width: 38vw;
  }
  .footer_secs h6 {
    font-size: 4vw;
  }
  .copyright_sec {
    padding: 2vw;
  }
  .plr_6 {
    padding: 15px;
  }
	
	
.thankyou {
	height: 50vh;
	justify-content: center;
}
	.scrollanimation  {
		animation: none;
	}
	
}

.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}


