/**
* Template Name: BizLand - v3.10.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin-right: 2px;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 1px;
  font-size: 12px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 80px;
  transition: 0.3s;
}
#header.fixed-top .logo img {
  max-height: 70px;
  transition: 0.3s;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #106eea;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  
  #header .logo img {
    max-height: 65px;
  }

  #header.fixed-top .logo img {
    max-height: 55px;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 67.7vh;
  background: url("../images/assets_img_mts-banner.png") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  /* background: rgba(255, 255, 255, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #1976D2;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #1976D2;
  border-radius: 10px;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 75vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 100vh;
  }
}
/*--------------------------------------------------------------
# carousel section
--------------------------------------------------------------*/
.carousel-block{
  padding: 0px;
}
#carouselExampleControls{
  background: url("../images/assets_img_slider-img.jpg") center left;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.carousel-block .carousel-item {
    text-align: center;
    background: #00000085;
    color: #FFFFFF;
    padding: 20px 0px;
}
#carouselExampleControls h1 {
  font-size: 48px;
  line-height: 56px;
}

@media (max-width: 768px) {
  .carousel-block .carousel-item {
    position: relative;
    height: 15vh;
  }

  .carousel-item h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
  }

  #carouselExampleControls h1 {
    font-size: 28px;
    line-height: 36px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background: #E9F7FD;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
  text-align: justify;
}

.section-title li {
  font-weight: 600;
  margin: 15px auto 0 auto;
  text-align: left;
}

.section-title div{
  margin: 15px auto 0 auto;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #E9F7FD;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  height: 100%;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0D3965;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: inline-block;
  font-weight: 600;
  color: #1976D2;
}
.counts .count-box p {
  color: #1976D2;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  vertical-align: middle;
}

.counts .count-box h2 {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
}

@media(max-width:787px){
  #counts > div > div.row.mt-5 > div{
    width: 50%;
    margin-top: 3rem;
  }
}

@media(max-width:992px){
  #counts > div > div.row.mt-5 > div:nth-child(1){
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

.service_content h6{
  color: #1976D2;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

.service_content{
  padding: 0 60px 0;
}

.service_content ul {
    list-style-type: disc;
}
.service_content ul li {
  text-align: justify;
}
.service_content p {
  margin-left: 20px;
  margin-right: 20px;
  text-align: justify;
}
.service_content ol {
  margin-left: 20px;
  padding-left:0;
}
.service_content ol li {
  margin-left: inherit;
  margin-right: 25px;
}

.service_content ol li::marker {
  color: #1976D2;
}

@media (max-width:820px){
  .service_content{
    padding: 0 40px 0;
  }
  .service_content p {
    margin-left: 10px;
    margin-right: 10px;
  }
  .service_content ol {
    margin-left: 10px;
  }
  .service_content ol li {
    margin-left: inherit;
    margin-right: 20px;
  }
}

@media (max-width:550px){
  .service_content{
    padding: 0 20px 0;
  }
  .service_content p {
    margin-left: 5px;
    margin-right: 5px;
  }
  .service_content ol {
    margin-left: 5px;
  }
  .service_content ol li {
    margin-left: inherit;
    margin-right: 5px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../images/assets_img_testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #9E9E9E;
  border-radius: 32px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #FFFFFF;
  background: #1976D2;
  border-color: #1976D2;
}
.portfolio #portfolio-flters li:hover svg path,
.portfolio #portfolio-flters li.filter-active svg path{
  stroke: #FFFFFF !important;
} 
.portfolio #portfolio-flters li:nth-child(2):hover svg path,
.portfolio #portfolio-flters li:nth-child(4):hover svg path,
.portfolio #portfolio-flters li:nth-child(5):hover svg path,
.portfolio #portfolio-flters li:nth-child(8):hover svg path,
.portfolio #portfolio-flters li:nth-child(10):hover svg path,
.portfolio #portfolio-flters li:nth-child(11):hover svg path,
.portfolio #portfolio-flters li:nth-child(2).filter-active svg path,
.portfolio #portfolio-flters li:nth-child(4).filter-active svg path,
.portfolio #portfolio-flters li:nth-child(5).filter-active svg path,
.portfolio #portfolio-flters li:nth-child(8).filter-active svg path,
.portfolio #portfolio-flters li:nth-child(10).filter-active svg path,
.portfolio #portfolio-flters li:nth-child(11).filter-active svg path{
  fill: #FFFFFF !important;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  padding: 5px 15px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.shine {
  position: relative;
  display: inline-block;
  width: 325px;
  height: 325px;
  margin-top: 15px;
  overflow: hidden;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
}

.shine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  visibility: hidden;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
*/
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 30px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.3); */
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.4); */
  padding: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
  box-shadow: 0px 4px 5px -4px grey;
  font-size: 14px;
  padding: 10px 10px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form button[type=submit] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

#contact > div.row.aos-init.aos-animate{
  background: rgba(212, 241, 252, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.contact select[name="department"] {
  font-family: inherit;
  font-size: 14px;
  color: #6c757d;;
  border: none;
  padding: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: auto;
  border-radius: 10px;
}

#enquire_now_form select[name="country"],
#enquire_now_form select[name="project_type"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: auto;
}

select[name="department"]::placeholder {
  color: #495057; /* Set desired placeholder text color */
  font-size: 13px;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #DEF3FC;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #DEF3FC;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "BlinkMacSystemFont",'Segoe UI';
  color: #000000;
}

#footer .footer-top .footer-contact p i {
  color: #106eea;
  /* font-weight: bold; */
  font-style: normal;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  /* float: left; */
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
.footer-logo img{
  width: 100%;
}
.footer-logo{
  padding: 0px !important;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
  .footer-logo .col-lg-3{
    max-width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Sector section
--------------------------------------------------------------*/
.sector-item{
  text-align: center;
}
.sector-item:hover img{
  position: relative;
  z-index: -1;
  transform: scale(1.2);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .sector-item{
    width: 33.33% !important;
  }
  .sector-item img {
  max-width: 80%;
  height: auto;
  }

  .sector-item h5 {
  font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .sector-item{
    width: 33.33% !important;
  }
  .sector-item img {
  max-width: 60%;
  height: auto;
  }

  .sector-item h5 {
  font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Brand section
--------------------------------------------------------------*/
#brand .owl-item .owl-item{
  padding: 0;
  background: rgba(255, 255, 255, 0.989);
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  border-radius: 10px;
}

#brand > div > div > div > div > div > div.owl-carousel.owl-theme.brands_slider.owl-loaded.owl-drag > div.owl-stage-outer > div > div.owl-item{
  padding: 10px;
}

.brands {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brands_slider {
  height: 100%;
}

.brands_item {
  height: 125px;
}

.brands_item img {
  max-width: 100%;
  border-radius: 10px;
  width: auto;
}

.brands_nav {
  position: absolute;
  top: 39%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 5px;
  cursor: pointer
}

.brands_nav i {
  color: #e5e5e5;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease
}

.brands_nav:hover i {
  color: #676767
}

.brands_prev {
  left: -20px
}

.brands_next {
  right: -20px
}
.owl-carousel .owl-item img{
  height: auto;
}
#brand > div.brands.aos-init.aos-animate > div > div > div > div > div.owl-carousel.owl-theme.brands_slider.owl-loaded.owl-drag > div.owl-stage-outer > div > div > div.owl-item{
  width: 100%;
}
@media(max-width:769px){
  .brands_next {
    right: -5px
  }
  .brands_prev {
    left: -5px
  }
  .brands_nav {
    top: 38%;
  }
}
#brand .owl-theme .owl-dots .owl-dot span{
  background: #D9D9D9 !important;
}
#brand .owl-theme .owl-dots .owl-dot.active span{
  background: #9E9E9E !important;
}
/*--------------------------------------------------------------
# Review section
--------------------------------------------------------------*/
.tag {
  text-align: center;
  font-size: 1.1rem;
}
#review .card {
  height: 320px;
  padding: 10px 20px;
  border: none;
  border-radius: 32px !important;
  align-items: left;
  text-align: center;
  width: 300px;
  
}
.testimonial {
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-weight: 500;
}
.profile {
  padding-top: 10px;
}
.name {
  font-weight: 700;
}
.designation {
  font-size: 0.84rem;
  font-weight: 600;
}
#review .owl-carousel {
  margin-bottom: 15px;
  position: relative;
}
#review .owl-carousel .owl-stage-outer {
  padding: 40px 0px;
  height: 380px;
}
#review .owl-carousel .owl-item img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
  padding: 0;
  margin: 0;
}
#review .owl-carousel .owl-item{
  padding: 10px 18px 10px 18px;
  display: flex;
  justify-content: center;
}
#review .owl-theme .owl-nav [class*="owl-"] {
  background: inherit !important;
}
@media (max-width: 575.5px) {
  .container {
    margin: 0px;
    padding: 20px;
  }

  #review .card{
    width: 250px;
  }
}
#review-content{
  min-height: 100%;
/*  background: url("../images/assets_img_review-back.jpg") rgba(0, 0, 0, 0.70);*/
  background-size: cover;
  background-blend-mode: multiply;
}
#review > div.review-content > div > div > div.owl-stage-outer > div > div.owl-item > div > div > div.d-flex.flex-row.profile.pt-4.mt-auto > div{
  text-align: left;
}
#review .owl-theme .owl-dots .owl-dot span{
  background: #9E9E9E !important;
}
#review .owl-theme .owl-dots .owl-dot.active span{
  background: #FFFFFF !important;
}
#review .owl-prev:hover svg,
#review .owl-next:hover svg{
  transform: scale(1.5);
  transition: 0.3s;
}
#review .owl-theme .owl-nav{
  top: 45%;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  display: flex;
}
#review .owl-prev{
  position: relative;
  left: -30px;
}
#review .owl-next{
  position: relative;
  right: -30px;
}
#review .owl-theme .owl-dots{
  margin: 15px;
}
.review-stars{
  display: flex;
  align-items: center;
}
@media(min-width:768px) and (max-width:992px){
  #review .owl-next{
    right: -40px;
  }
  #review .owl-prev {
    left: -40px;
}
}
@media(max-width: 767px){
  #review > div.container.aos-init.aos-animate > div > div:nth-child(1) > p > svg{
    width: 100px !important;
    height: 45px !important;
  }
  #review > div.container.aos-init.aos-animate > div > div:nth-child(1) > p > span{
    font-size: 15px !important;
  }
  #review > div.container.aos-init.aos-animate > div > div:nth-child(1){
    width: 59%;
    padding: 0px;
  }
  #review > div.container.aos-init.aos-animate > div > div:nth-child(2){
    width: 41%;
    padding: 12px 0px !important;
  }
}
@media(max-width:370px){
  #review > div.container.aos-init.aos-animate > div > div:nth-child(2) > a{
    padding: 10px 10px !important;
  }
}

/*--------------------------------------------------------------
# Service section
--------------------------------------------------------------*/

.collapsible {
  color: white;
  cursor: pointer;
  width: auto;
  display: none;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  background: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #F1F6FE;
}
.service-cards{
  position: relative;
  padding: 20px;
  background: #F1F6FE;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
}
.service-heading{
  width: fit-content;
  border-bottom: 2px solid black;
}

.service-heading {
  font-size: 1.4rem;
}

/* Font size for medium-sized screens */
@media screen and (max-width: 768px) {
  .service-heading {
    font-size: 20px;
  }
}

/* Font size for small screens */
@media screen and (max-width: 480px) {
  .service-heading {
    font-size: 16px;
  }
}


.service-cards .card-head img{
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

@media(max-width: 768px){
  .service-cards .card-head img{
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
}

@media(max-width: 768px){
  .collapsible{
    display: block;
  }
}
/*--------------------------------------------------------------
# portfolio hover effect section
--------------------------------------------------------------*/

#container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 10px;
  text-align: left;
  border-radius: 10px 10px 10px 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
}
#content {
  min-height: 400px;
  display: inline-block;
}
.product-grid {
/*  width: 100%;*/
  color: red;
  background-color: #eeeded;
  float: left;
}
.product-card {
  float: left;
  margin: 0 auto;
  position: block;
  width: 160px;
  height: 220px;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  color: black;
  font-weight: bold;
}
.portfolio-card {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 2px;
  display: block;
  height: auto;
  text-align: center;
  position: relative;
  width: 140px;
  margin-top: 5px;
  margin-left: auto;
  margin-bottom: 0px;
  margin-right: auto;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
  transition: all 0.3s ease-in-out;
}
.thumb {
  position: absolute;
  width: 100% ;
  text-align: center;
  height: 160px;
  overflow: hidden;
}
.thumb img {
  transition: all 0.3s ease-in-out;
  max-height: 146px;
  max-width: 136px;
}
.portfolio-card:hover .thumb img {
  transition: all 10s ease-out;
  max-height: 150px;
  max-width: 140px;
  opacity: 0.9;
  transform: scale(3);
}
.thumb-blur {
  position: absolute;
  top: 100px;
  width: 140px;
  text-align: center;
  height: 50px;
  overflow: hidden;
}
.thumb-blur img {
  filter: blur(0px);
  transition: all 0.1s ease-in;
  max-height: 146px;
  max-width: 136px;
  transform: translate(0px, -100px);
  opacity: 0;
}
.portfolio-card:hover .thumb-blur img {
  /* filter: blur(2px); */
  opacity: 1;
  max-height: 150px;
  max-width: 140px;
}
.corner {
  border: 1px solid #ff0000;
  width: 100px;
  height: 20px;
  position: absolute;
  text-align: center;
  background-color: #ff0000;
  top: 10px;
  right: -25px;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.corner p {
  font-size: 17px;
  padding: 0;
  margin: 0;
  margin-top: -2px;
  color: rgba(0, 0, 0, 0.5);
}
.body-card {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 86%;
  bottom: 0px;
  padding: 10px 30px;
  height: auto;
  width: 100%;
  transition: all 0.3s cubic-bezier(0, 0.81, 0.38, 1.37);
  z-index: 1;
  border-radius: 10px;
}
.portfolio-card:hover .body-card {
  top: 40%;
  background: rgba(0, 0, 0, 0.5);
}
.portfolio-filter{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  justify-content: center;
  overflow: auto;
}
.portfolio-filter li{
  padding: 0px 5px;
  line-height: 3;
}
.portfolio-filter li a{
  padding: 10px;
  background: #fff;
  border-radius: 32px;
  font-size: 1rem;
}
.show_more,
.show_less{
  color: #fff;
  cursor: pointer;
}
.body-card h4{
  color: #fff;
}
.portfolio-block{
  position: relative;
  box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 25%);
  border-radius: 10px;
}
.portfolio-block .img-fluid{
  border-radius: 10px;
}

.portfolio {
  overflow: hidden; /* Enable horizontal scrolling */
}

.portfolio-container {
  display: flex; /* Use flexbox to align items in a row */
  overflow-x: scroll; /* Enable horizontal scrolling */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS devices */
}

#portfolio-flters {
  display: flex; /* Use flexbox to align items in a row */
  list-style-type: none;
  white-space: nowrap; /* Prevent line breaks */
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS devices */
}
#portfolio-flters::-webkit-scrollbar {
  display: none; /* Hide the scrollbar for webkit browsers */
}

#portfolio-flters li {
  margin-right: 10px; /* Add some space between list items */
}


@media only screen and (max-width: 991px) {
  .portfolio-container {
    flex-wrap: wrap; /* Allow items to wrap to the next line */
  }
  
  .portfolio-container .portfolio-item {
    flex-basis: 50%; /* Set the width of portfolio items to 50% */
    max-width: 50%; /* Limit the maximum width of portfolio items to 50% */
  }
    .portfolio #portfolio-flters li{
    font-size: 15px;
  }
  .portfolio-filter li a{
  padding: 8px;
  font-size: 1rem;
  }
.body-card h4{
  font-size: 1.2rem;
  }
}

/* Media query for small screens */
@media (max-width: 576px) {
  .portfolio #portfolio-flters li{
    font-size: 12px;
  }
  .portfolio-filter li a{
  padding: 8px;
  font-size: 0.8rem;
}
.body-card h4{
  font-size: 1rem;
}
}




/*--------------------------------------------------------------
# Technologies section
--------------------------------------------------------------*/

.hexagon-grid {
  --l: calc(100vw/var(--n-cols));
  --hl: calc(.5*var(--l));
  --ri: calc(.5*1.73205*var(--l));
  box-sizing: border-box;
  display: grid;
  place-content: center;
  grid-template: repeat(var(--n-rows), var(--l))/repeat(var(--n-cols), var(--ri));
  grid-gap: var(--hl) 0;
  margin: 0;
  padding: var(--hl) 0;
  height: 100%;
  filter: drop-shadow(0px 0px 3px #0080ff80)
}
.tecnologies-section {
  background: url("../images/assets_img_mts-banner.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}
@media (orientation: landscape) {
  .hexagon-grid {
    --l: calc(150vh/(var(--n-rows) + 3));
  }
}
.hex-cell{
  overflow: hidden;
  grid-column-end: span 2;
  margin: calc(-1*var(--hl)) 0;
  transform: scale(0.95);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  align-items: center;
  text-align: center;
  background: #1976D2;
  z-index: 99;
  position: relative;
}
.hex-cell::after{
  content: "";
}
.hex-cell::after{
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 999;
  background: linear-gradient(133.27deg, #FFFFFF 0%, #DBE9F7 60.75%);
  transform: scale(0.998);
}

.hex-content{
  --hl: 0;
  transform: scale(calc(1 + .2*var(--hl)));
  /* filter: brightness(calc(.6*(1 + var(--hl)))); */
  transition: .7s;
  width: 100%;
  position: relative;
  z-index: 9999;
}
.hex-cell:hover{
  transform: scale(1.04);
  transition: 0.7s ease;
  z-index: 9999; 
}
.hex-cell:hover::after{
  transform: scale(0.997); 
}
/* .hex-content:hover{
  --hl: 1;
} */

/* .hexagon-grid img {
  --hl: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + .2*var(--hl)));
  filter: brightness(calc(.6*(1 + var(--hl))));
  transition: .7s;
} */
/* .hexagon-grid img:hover {
  --hl: 1;
} */

.hex-cell .glow-wrap{
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  margin-top: -10px;
  z-index: 99999;
}

.hex-cell .glow{
  display: block;
  position:absolute;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.499);
  top: -90px;
  filter: blur(10px);
  transform: rotate(45deg) translate(-100%, 0);
  /* transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1); */
  transition: .7s ease;
}c

.hex-cell:hover .glow{
  transform: rotate(45deg) translate(450%, 0);
  /* transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1); */
  transition: .7s ease-in-out;
}
.hex-cell:hover .glow-wrap{
  margin-top: 0;
}

@media (max-width: 850px) {
  .hexagon-grid {
    --l: calc(95vw/var(--n-cols)); /* Adjust the --l property for smaller screens */
    --hl: calc(.5*var(--l)); /* Adjust the --hl property accordingly */
    /* Other styles for smaller screens */
  }
  .hex-content h5 {
    font-size: 0.9rem;
  }

  .hex-content img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 550px) {
  .hexagon-grid {
    --l: calc(90vw/var(--n-cols)); /* Further reduce --l for even smaller screens */
    --hl: calc(.5*var(--l)); /* Adjust --hl as needed */
    /* Other styles for even smaller screens */
  }
  .hex-content h5 {
    font-size: 0.61rem;
  }

  .hex-content img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 350px) {
  .hexagon-grid {
    --l: calc(80vw/var(--n-cols)); /* Further reduce --l for even smaller screens */
    --hl: calc(.5*var(--l)); /* Adjust --hl as needed */
    /* Other styles for even smaller screens */
  }
  .hex-content h5 {
    font-size: 0.5rem;
  }

  .hex-content img {
    width: 30px;
    height: 30px;
  }
}

/* ======= social-links ======== */


ul#social-links {
  display: flex;
}

ul#social-links li {
  list-style: none;
  padding: 0px !important;
}

ul#social-links li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  line-height: 27px !important;
  font-size: 35px;
  margin: 0 10px;
  display: block;
  border-radius: 5%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

ul#social-links li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
  font-size: 24px !important;
}

ul#social-links li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

ul#social-links li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s;
  z-index: 2;
}

ul#social-links li a:hover:before {
  top: 0;
}

ul#social-links li:nth-child(1) a:before{
  background: #1877F2;
}

ul#social-links li:nth-child(2) a:before{
  background: radial-gradient(circle farthest-corner at 32% 106%, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
}

ul#social-links li:nth-child(3) a:before {
  background: #1DA1F2;
}
ul#social-links li:nth-child(4) a:before {
  background: #2A67BC;
}
ul#social-links li:nth-child(5) a:before {
  background: #f00;
}
ul#social-links li:nth-child(6) a:before {
  background: #4AC959;
}

#review > div.container.aos-init.aos-animate > div > div:nth-child(2){
  display: flex;
  justify-content: end;
  padding: 15px;
}

#review > div.container.aos-init.aos-animate > div > div:nth-child(2) > a{
  height: fit-content;
  padding: 10px 15px;
  background: #1976D2;
  border-radius: 9.05629px;
  color: white;
  text-decoration: none;
}
.portfolio-card:hover .show_more{
  display: block !important;
}
.view_less,.view_more{
  display: block !important;
}
#mobile-image,
#mobile-details{
  display: none;
}
@media(max-width:786px){
  #mobile-image,
  #mobile-details{
    display: flex;
  }
  #desktop-image,
  #desktop-details{
    display: none;
  }
  section{
    padding: 20px 0;
  }
}
#mobile-details{
  background: transparent !important;
  box-shadow: none !important;
}
#portfolio > div > div.col-lg-12 > a{
  padding: 10px;
  background: #007bff;
  border-radius: 10px;
  color: #fff;
}

/* ======== mob-footer ======== */
#mobile_footer > div > div > div > div > h4{
  font-weight: bold;
  font-size: 16px;
}
.mob-footer-links ul{
  list-style: none;
  padding: 0px;
}
.mob-footer-links{
  padding: 5px !important;
}
.mob-footer-links ul li{
  width: max-content;
  line-height: 2;
}
.mob-footer-links ul li a{
  color: black;
  font-size: 14px;
}
.mob-footer-links ul li i{
  color: blue;
  vertical-align: middle;
}
#mobile_footer > div > div > div:nth-child(3) > div.social-links.mt-3{
  text-align: left;
  margin: 0px !important;
}
#mobile_footer > div > div > div:nth-child(3) > div.social-links.mt-3 > a{
  color: white;
  padding: 7px;
  border-radius: 5px;
  background: #007bff;
  margin-right: 10px;
}
#mobile_footer > div > div > div:nth-child(3) > div.social-links.mt-3 > a > i{
  font-size: 20px;
  vertical-align: text-top;
}
.mob-copyright{
  text-align: center;
  background: #E9F7FD;;
}
@media(max-width:540px){
  .desktop-footer{
    display:none;
  }
  .mobile-footer{
    display: block !important;
  }
}
#mobile_footer > div.footer-top-mob > div > div.col-lg-12.footer-logo > div.col-lg-9.d-flex > div{
  padding: 0px 10px;
}
@media(max-width:390px){
  .portfolio-filter{
    height: 210px;
  }
}

/* =============== career page =============== */

.banner-image, .gallery-banner{
  background-image: url("../images/assets_img_page-banner.png");
  padding: 40px;
}
.banner-image h1, .gallery-banner h1{
  color: #fff;
  text-align: center;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 50px;
}

.card-header {
  padding: 30px 20px;
  background: rgba(233, 247, 253, 0.1);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 32px;
  background-color: white;
}

#employment-list > div > div > h4{
  margin-bottom: 20px;
}
#employment-list > div > div > div > div.col-lg-6.technical-skills > h5,
#employment-list > div > div > div > div.col-lg-6.responsibilities > h5{
  margin-bottom: 15px;
}

@media screen and (max-width:575px){
  #employment-id .accordion .technical-skills ul,
  #employment-id .accordion .responsibilities ul {
    padding-right: 0px;
    padding-left: 5px;
  }
}

.emplyment-details{
  padding: 15px 20px;
  background: rgba(233, 247, 253, 0.1);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 15px;
}


.accordion-button:focus {
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    border-radius: 15px;
}

div.col-lg-12.row{
  margin-top: 30px;
  padding-right: 0;
}

@media only screen and (max-width: 767px) {

  div.col-lg-6.technical-skills,
  div.col-lg-6.responsibilities{
    padding-right: 10px;
  }

  div.col-lg-12.row{
  padding-right: 0;
  }
}

@media only screen and (max-width: 456px) {
  div.col-lg-12.row{
    width: auto;
  }
}

.apply-now{
  text-align: center;
}

.emplyment-details > div > div.apply-now > a{
  background: #1976D2;
  border-radius: 32px;
  padding: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  bottom: -19px;
  cursor: pointer;
}
.emplyment-details > div > div.apply-now > a > svg{
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  vertical-align: bottom;
}
.emplyment-details > div > div.apply-now > a > span{
  vertical-align: text-bottom;
}
/*=========== career form ==========*/
.button-block{
    position: absolute !important;
    right: 2.5%;
    bottom: 8%;
}
.previous-button{
  padding: 5px 15px 8px 15px;
  border: 1px solid #1976D2;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 10px;
  color: #1976D2;
  cursor: pointer;
}
.required::after{
  content: "\2a";
  color: red;
}

.technical-skills > ul,
.responsibilities > ul,{
  text-align: justify;
}

.technical-skills > ul > li,
.responsibilities > ul > li,{
  display: inline-block;
}

/*=========== Phase 1 ===========*/
.form-phase .col-lg-4 label,
.form-phase .col-lg-4 input{
  width: 100%;
}
.form-phase .col-lg-12:last-child label,
.form-phase .col-lg-12:last-child input{
  width: 100%;
}
.application-form{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 100%;
  background: #000000a8;
}
.apply-form{
  width: 80%;
  margin: 10px auto;
  padding: 30px 20px;
  background: #E9F7FD;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 32px;
  position: relative;
}
.form-group-input{
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: none;
  outline: none;
  padding: 7px;
}
.button-block{
  text-align: right;
  margin-top: 20px;
}
.form-phase > div.button-block > a.next-button{
  padding: 5px 15px 10px 15px;
  background: #1976D2;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration:none;
  margin-top: 10px;
  margin-right: 15px;
}
body > section.application-form > div > img:nth-child(1){
  position: absolute;
  right: 0px;
  top: 3%;
}
body > section.application-form > div > img:nth-child(2){
  position: absolute;
  left: 0px;
  bottom: 4%;
}
.application-form{
  display: flex;
  padding: 20px;
}
.form-phase .form-group{
  margin-bottom: .6rem;
}
.error_email, .error_name, .error_phone, .error_date, .error_gender, .error_resume, .error_marksheet,
.error_qualifi,
.error_passing,
.error_ctc,
.error_experence,
.error_cname,
.error_designation,
.error_sctc,
.error_notice{
  font-size: 13px;
  padding-top: 3px;
  color: red;
}
.error-block{
  height: 15px;
}
    /*Media query for small devices     */
    @media only screen and (max-width: 576px) {
      .banner-image h1, .gallery-banner h1{
        font-size: 25px;
      }
    }

    /* Media query for medium devices    */
    @media only screen and (min-width: 577px) and (max-width: 768px) {
     .banner-image h1, .gallery-banner h1{
        font-size: 40px;
      }
    }

    /* Media query for large devices    */
    @media only screen and (min-width: 769px){
      .banner-image h1, .gallery-banner h1{
        font-size: 50px;
      }
    }

/*========== phase 2 =============*/

.form-phase .col-lg-6 label,
.form-phase .col-lg-6 input{
  width: 100%;
}
.upload-resume label{
  margin: 0px;
  text-align: center;
  padding: 10px;
  background: #28B02F;
  box-shadow: 0px 4px 39px 2px rgb(89 193 94 / 50%);
  cursor: pointer;
  border-radius: 10px;
  color: white;
}
.upload-resume{
  display: flex;
  justify-content: space-between;
}

.file-added{
  width: 75% !important;
}

/* .pdf-preview, .pdf-preview1{
  padding: 25px 18px;
  background: #FFFFFF;
  border: 0.5px solid #000000;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 10px;
  position: relative;
} */

#phase2 > div:nth-child(2) > div > div > div > a > svg{
  position: absolute;
  top: 5px;
  right: 5px;
}

/*========== progress bar ============*/
.progresslist{
  list-style: none;
  display: flex;
  width: 60%;
  justify-content: space-between;
  margin: 0px auto 50px auto;
  padding: 0px;
}
#apply-form > div > ul > li.progress-tab > p > span{
  padding: 10px 15px;
  background: #D9D9D9;
  border-radius: 50%;
  color: #fff;
}
#apply-form > div > ul > li.progress-tab > p{
  text-align: center;
}
.progress-tab > a{
  text-decoration: none;
  color: #000;
}
.progress-tab > a:hover{
  text-decoration: none;
  color: #000;
}
.progresslist .progress-tab.visit span{
  background: #1A6AD2 !important;  
}
.progresslist .progress-tab.visit a.visit{
  font-weight: 600;
}
.progresslist .progress-tab.complete span{
  background: #59C15E !important;  
}
.progresslist .progress-tab.complete a.complete{
  font-weight: 600;
}
.form_animate {
  animation: fadeIn 500ms ease-out backwards;
  }
  
  @keyframes fadeIn {
  from {
    transform: translateY(250px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
  }

/* ========== collaboration page ========== */

#hire-content > div > div > div > img{
  width: 100%;
  height: 80%;
  padding-bottom: 10px;
}

#hire-content > div > div {
  margin-left: 0;
}

/* Media query for medium devices    */
    @media only screen and (min-width: 576px) and (max-width: 991px) {
      #hire-content > div > div > div > img{
        width: 70%;
        height: 70%;
      }
    #hire-content > div > div > div {
        width: 33.33%;
        padding: 5px;
      }
    } 

/*Media query for small devices     */
    @media only screen and (min-width: 100px)and (max-width: 575px) {
      #hire-content > div > div > div {
        width: 33.33%;
        padding: 5px;

      }
      #hire-content > div > div > div > img{
        width: 45%;
        height: 50%;
      }
      #hire-content > div > div > div > h6{
        font-size: 13px;
      }
    }

#hire-content > div > div > div{
  text-align: center;
}
#hire-content > div > div > div > h5{
  font-weight: 400;
}
.requirement-image img{
  width: 100%;
/*  height: 100%;*/
}
.requirement-image{
  height: fit-content;
  border: 1.5px solid #1976D2;
  border-radius: 50%;
  padding: 10px 15px;
}

@media screen and (max-width: 767px) {
  .requirement-content.flex-md-row {
    flex-direction: column;
  }

  div.col-12.col-md-2.requirement-image{
    max-height: 85px;
    width: 85px;
    }

  div.col-12.col-md-10{
    padding-right: 0px;
  }

}
/*@media (max-width: 575px) {
  .requirement-1,
  .requirement-2,
  .requirement-3
  .requirement-4,
  .requirement-5,
  .requirement-6 {
    flex-direction: column;
  }
}*/

.card-image{
/*  display: flex;*/
  justify-content: center;
}
.card-item{
  display: flex;
  background: #FFF;
/*  box-shadow: 0px 3.95732px 3.95732px rgba(0, 0, 0, 0.25);*/
  border-radius: 9.89329px;
  border: 1px solid #106eea;
  justify-content: center;
  align-items: center;
}

.technology-card img {
  height: 120px;
}

div.col-12.col-md-10{
  padding-right: 0;
}

div.col-12.tech-cards.row{
  margin-left: 0;
}

/* Media query for small devices     */
    @media only screen and (min-width:567px)and (max-width: 767px) {
      .technology-card img {
        height: 80px;
      }
    }

    @media only screen and (min-width:457px) and (max-width: 567px) {
      .technology-card img {
        height: 60px;
      }
    }

    @media only screen and (min-width:357px) and (max-width: 457px) {
      .technology-card img {
        height: 40px;
      }
    }

    @media only screen and (min-width:100px) and (max-width: 357px) {
      .technology-card img {
        height: 25px;
      }
    }
.uppercase-text {
  text-transform: uppercase;
}
#enquire_now_form{
  padding: 20px 20px;
  background: #E9F7FD;
  border-radius: 0.5rem;
}
#enquire_now_form > div.col-12.fieldset-4 > div > div > div{
  background: #FFFFFF;
  border-radius: 11.5761px;
  display: flex;
  justify-content: center;
  min-height: 100px;
  align-items: center;
}
#enquire_now_form > div.col-12.fieldset-4 > div > div > div:nth-child(1) > label{
  margin: 0;
}
#enquire_now_form > div.col-12.fieldset-4 > div > div > div > svg{
  position: absolute;
  top: 10px;
  right: 10px;
}
#enquire_now_form input,
#enquire_now_form select{
  border: none;
  box-shadow: 0px 4px 5px -4px grey;
}

.enquire-form-content > form > div {
  padding-right: 0;
}
@media only screen and (min-width:457px) and (max-width: 991px) {
  .enquire_form_content.container{
    min-width: 720px;
  }
}


/* ========== development process ========== */

:root {
  --bgColor: #1c2329;
  --primary-color: #1976D2;
}

h1.mt-5.mb-4.text-center {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 58px;
  margin: 0 0 58px;
}

#infographic .circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: absolute;
  left: 50%;
}
#infographic :not(:nth-child(even)) .circle {
  transform: translateX(-100%);
  background: #1976D2;
}
#infographic .circle i {
  font-size: 5em;
  /* margin-bottom: 20px; */
  color: currentColor;
}
#infographic article {
  max-width: 410px;
  margin-bottom: 40px;
  cursor: default;
  left: 50%;
  position: relative;
}
#infographic article header {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
#infographic article header i {
  display: flex;
  font-size: 2em;
  border-radius: 50%;
  background-clip: padding-box;
  padding: 18px;
  transition: transform 0.4s;
  color: #fff;
  border: 16px solid;
  margin: -16px 0 -16px -20px;
}
#infographic article header h6 {
  text-transform: uppercase;
  margin: 0 30px;
  padding: 5px;
}
#infographic article .body {
  background: var(--bgColor);
  padding: 0 20px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  max-height: 0;
  transition: max-height 0.5s, padding 0.5s;
  overflow: hidden;
}
#infographic article .body .btn {
  padding: 3px 10px;
  text-transform: uppercase;
}
#infographic :nth-child(even) article {
  text-align: right;
  transform: translateX(-100%);
}
#infographic :nth-child(even) article header {
  flex-flow: row-reverse;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
#infographic :nth-child(even) article header i {
  margin: -16px -20px -16px 0;
}
#infographic article[data-step="1"] {
  margin-left: 20px;
}
#infographic article[data-step="2"] {
  margin-left: 50px;
}
#infographic article[data-step="3"] {
  margin-left: 20px;
}
#infographic article[data-step="4"] {
  margin-left: 50px;
}
#infographic article[data-step="5"] {
  margin-left: 20px;
}
#infographic article[data-step="6"] {
  margin-left: -40px;
}
#infographic article[data-step="7"] {
  margin-left: 50px;
}
#infographic article[data-step="8"] {
  margin-left: -20px;
}
#infographic article[data-step="9"] {
  margin-left: -50px;
}
#infographic article[data-step="10"] {
  margin-left: -20px;
}
#infographic article[data-step="11"] {
  margin-left: 60px;
}
#infographic article[data-step="12"] {
  margin-left: 100px;
}
#infographic article[data-step="13"] {
  margin-left: 20px;
}
#infographic article[data-step="14"] {
  margin-left: 50px;
}
#infographic article[data-step="15"] {
  margin-left: 20px;
}
#infographic article[data-step="16"] {
  margin-left: -100px;
}
#infographic .one article header {
  background-color: #E9F7FD;
}
#infographic .one article header i {
  background-color: #1976D2;
}
#infographic .two article header {
  background-color: rgba(0, 108, 99, 0.1);
}
#infographic .two article header i {
  background-color: #0D3965;
}
#infographic .three article header {
  background-color: #E9F7FD;
}
#infographic .three article header i {
  background-color: #1976D2;
}
/*#infographic article:hover header i {
  transform: scale(1);
}*/
/*#infographic article.active header {
  border-bottom-right-radius: 0;
}*/
/*#infographic article.active header i {
  --opacity: 0.4;
  transform: scale(1) !important;
}*/
#infographic article.active .body {
  padding: 20px;
  max-height: 300px;
  border: 1px solid;
}
/*#infographic .two article.active header {
  border-bottom-left-radius: 0;
}*/
#infographic > div.step.one.text-primary > div{
  background: #1976D2;
  align-items: center;
}
#infographic div h4{
  color: #fff;
}
#infographic div h4 span{
  font-size: 16px;
  color: #D9D9D9;
}
#infographic > div.step.two.text-success > div{
  background: #0D3965;
}
#infographic > div.step.two.text-success > article > header > h6{
  color: #0D3965;
}
#infographic > div.step.three.text-danger > article > header > h6{
  color: #1976D2;
}
.pricing-header{
  margin: 0px;
  color: #1976D2;
}
.pricing-content h6{
  margin: 0px;
}
#pricing-section > div > div.pricing-content.aos-init.aos-animate > div > div > div:nth-child(1){
  padding: 10px 15px;
  background: #E2F5FD;
  border-radius: 9.89329px;
}
.price-content{
  background: #F5F5F5;
  border-radius: 9.89329px;
  padding: 12px 15px;
}
#pricing-section > div > div.pricing-content.aos-init.aos-animate > div > div > div{
  margin-bottom: 3px;
}
.price-content h6 span{
  color: #1976D2;
}

    /*Media query for small devices     */
    @media only screen and (max-width: 576px) {
      .procedure-section{
        zoom: 40%;
      }
      #infographic > div > article > header > h6{
        font-size: 1.3rem;
      }
      #enquire_now_form > div:nth-child(6){
        justify-content: center !important;
        padding: 0px !important;
        padding-top: 10px !important;
      }
    }

    /* Media query for medium devices    */
    @media only screen and (min-width: 576px) and (max-width: 768px) {
      .procedure-section {
        zoom: 63%;      }
    }

    /* Media query for large devices    */
    @media only screen and (min-width: 769px) and (max-width: 991px) {
      .procedure-section {
         zoom: 80%;
      }
    }

    .gender label {
      cursor: pointer;
      position: relative;
      padding-left: 10px;
    }
    #phase1 input[type="radio"] {
      display: none;
    }
    
    #phase1 .gender label::before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: transparent;
      border: 2px solid #fff;
      border-radius: 50%;
      top: 15%;
      left: -1rem;
      /* transform: translateY(-50%); */
      transition: border-color 400ms ease;
    }
    
    .gender label::after {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: var(--primary-color);
      border: 2px solid var(--primary-color);
      border-radius: 50%;
      top: 55%;
      left: -1rem;
      transform: translateY(-50%) scale(0);
      transition: transform 400ms ease;
    }
    
    .gender input[type="radio"]:checked + label.select::before {
      border-color: var(--primary-color) !important;
    }
    
    .gender input[type="radio"]:checked + label.select::after {
      transform: translateY(-50%) scale(0.55);
    }

    .button-block{
      display: flex;
      align-items: end;
      justify-content: end;
    }
    #submitform{
      margin: 0px;
    }
    .pip{
      max-width: 20% !important;
    }
    #attachment > label{
      height: 100px;
      width: 100px;
      background: white;
      display: flex;
      border-radius: 10px;
      justify-content: center;
      align-items: center;
  }
  @media (max-width:560px){
    #services > div > div.row.col-lg-12.aos-init.aos-animate{
      padding: 0px;
    }
    .body-card {
      padding: 0px 30px;
    }
    #enquire_now_form .form-group{
      padding: 5px 0px 0px 0px !important;
      margin: 0 !important;
    }
    #enquire_now_form #submit{
      margin-top: 10px;
    }
    .enquire-form-content{
      padding: 0 !important;
    }
    .resflex-wrap{
      display: block!important;
    }
    #phase2 > div:nth-child(2){
      display: flex!important;
    }
    #captcha_block{
      padding-right: 0px !important;
      margin-bottom: 10px !important;
      justify-content: end;
    }
    .application-form {
      align-items: center;
    }
    #captcha_block > div:nth-child(2){
      padding: 0px !important;
    }
    #phase3::-webkit-scrollbar {
      display: none;
    }
    #phase3{
      overflow: auto;
      height: 400px;
    }
    #phase1 {
      -ms-overflow-style: none;
      scrollbar-width: none;
      height: 445px;
      overflow: scroll;
    }
    #phase3 .button-block{
      display:block !important;
    }
    .apply-form{
      height: 80% !important;
    }
    #phase1::-webkit-scrollbar,
    #phase3::-webkit-scrollbar {
    display: none;
    }
    #contactform .row{
      display: block;
    }
    #contactform > div:nth-child(1){
      margin-bottom: 0px !important;
    }
    #number{
      margin: 0px !important;
    }
  }
  @media (max-width:400px){
    .resflex-wrap{
      display: block!important;
    }
    .button-block {
      bottom: 3% !important;
      display: block;
    }
    #phase1{
      overflow: auto;
      height: 360px;
    }
    #phase3{
      overflow: auto;
      height: 350px;
    }
    .apply-form {
      height: 80% !important;
    }
    #phase1::-webkit-scrollbar,
      #phase3::-webkit-scrollbar {
      display: none;
    }
  }
  #phase1 {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .fa-refresh{
    padding: 0px 10px 0px 5px;
  }
  #contactform > div:nth-child(2){
    align-items: end;
  }
  #department:not([size]):not([multiple]) {
    height: calc(2.25rem + 5px);
  }