/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/* Disable text selection */
* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Disable dragging of elements */
img, div, span, input, textarea {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -o-user-drag: none;
}

/* Allow interactions with navigation menu and links */
nav, a, button {
  pointer-events: auto !important;
}

/* Disable right-click context menu */
body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable inspecting elements */
body {
  overflow: hidden;
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow: auto;
}

/* Disable keyboard shortcuts for inspect element */
body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}




a {
  color:
    #1d92eb;
}

a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  /* background: linear-gradient(90deg, #ff0085, #00b6ff, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #804de3;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* padding: 10px 0; */
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header #logo {
  float: left;
  margin-right: 20px;

}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #000;
}

#header #logo img {
  padding: 0;
  margin: 0;
  height: 50px;
  width: 220px;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

#header.header-transparent {
  background: transparent;
}

/* 
#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  margin-top: 0px;
  background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),
    url(../img/officepics/office_showcase.jpg) fixed center;
  background-blend-mode: screen;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.swiper-container {
  margin-top: 0;
  width: 100%;
  max-width: 4320px;
  text-align: center;
}
.swiper-container .swiper-wrapper{
  width: 100vw;
  object-fit: cover;
  text-align: center;

}

 .swiper-container .swiper-slide {
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  position: relative;
  width: 100vw;
  object-fit: cover;
}

 .swiper-container .swiper-slide .swiper-img {
  object-fit: cover;
  max-width: 100%;
  /* height: 80vh; */
  display: block;
}


.swiper-slide h1 {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: fadeIn 1.2s ease-in-out;
  z-index: 1000;
}

.swiper-slide p {
  position: relative;
  font-size: 1rem;
  margin-bottom: 10px;
  animation: fadeIn 1.2s ease-in-out;
}


.swiper-button-prev,
.swiper-button-next {
  background-color: blue;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
  margin: 30px;
  transition: transform 0.3s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 10px;
  color: white;
}

/* .slider img {
  width: 100%;
  height: auto;
  object-fit: contain; 
}
.slider {
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
} */

/* @keyframes bgtransition{
  0%{
    background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),url(../img/officepics/office_showcase.jpg) fixed center;
  }50%{
    background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),url(../img/officepics/office_showcase1.jpg) fixed center;
  }75%{
    background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),url(../img/officepics/office_showcase2.jpg) fixed center;
  }100%{
    background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),url(../img/officepics/office_showcase.jpg) fixed center;
  }
} */

@media (max-width: 425px) {
  #hero {
    width: 100vw;
    height: 90vh;
    /* margin-top: 10px; */
    /* background: linear-gradient(0deg, #ffffff, transparent, transparent, transparent),
      url(../img/officepics/office_showcase.jpg) fixed center;
    background-blend-mode: screen; */
    background-size: cover;
    
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    overflow: hidden;

    

    /* animation: bgtransition 9s ease-in-out infinite; */
  }

  .swiper-slide {
    /* height: 60vh; */
    width: 100vw;
    padding-bottom: 0;

  }

  .swiper-container {
    padding: 0px;
    margin: 0px;
    height: 100vh;
    min-width: none;
    padding-bottom: 0;

  }

  .swiper-img {
    padding-top: 0px;
    padding-bottom: 0px;

  }
}




/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#gallery{
  width: 100vw;
  height: 100vh;
  margin-top: 0px;
  background:#fff;
  background-blend-mode: screen;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0px;
  overflow: hidden;
  max-width: 2160px;
}

#gallery.section-header {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  width: 100%;
}

#gallery.section-header .section-title {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00b6ff, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  #gallery{
    width: 100%;
    height: 95vh;
    margin-top: 0px;
    background:#fff;
    background-blend-mode: screen;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    overflow: hidden;
    max-width: 2160px;
  }
  #gallery.section-header {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
  }
  
  #gallery.section-header .section-title {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    background: linear-gradient(90deg, #00b6ff, #0033fd);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
}


@media (max-width: 600px) {
  #gallery{
    width: 100%;
    height: 80vh;
    margin-top: 0px;
    background:#fff;
    background-blend-mode: screen;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    overflow: hidden;
    max-width: 2160px;
  }
  #gallery.section-header {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
  }
  
  #gallery.section-header .section-title {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
    padding-bottom: 0;
    background: linear-gradient(90deg, #00b6ff, #0033fd);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
}


/* #gallery1{
  width: 100vw;
  height: 100vh;
  margin-top: 0px;
  background:#fff;
  background-blend-mode: screen;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0px;
  overflow: hidden;
  max-width: 2160px;
}

#gallery1.section-header {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  width: 100%;
}

#gallery1.section-header .section-title {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00b6ff, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 425px) {
  #gallery1{
    width: 100%;
    height: 75vh;
    margin-top: 0px;
    background:#fff;
    background-blend-mode: screen;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    overflow: hidden;
    max-width: 2160px;
  }
  #gallery1.section-header {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
  }
  
  #gallery1.section-header .section-title {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
    padding-bottom: 0;
    background: linear-gradient(90deg, #00b6ff, #0033fd);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
} */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
/* Root variables for theme-based styling */
:root {
  --hover-bg: #0f62f1;
  --nav-bg-light: rgba(255, 255, 255, 0.6);
  --nav-bg-dark: rgba(0, 0, 0, 0.6);
  --nav-text-light: #3d3d3d;
  --nav-text-dark: #fff;
  --nav-border-light: rgba(255, 255, 255, 0.3);
  --nav-border-dark: rgba(0, 0, 0, 0.3);
  --hover-bg-light: rgba(0, 0, 0, 0.1);
  --hover-bg-dark: rgba(255, 255, 255, 0.1);
}

/* Light theme styles */
.light-theme {
  --nav-bg: var(--nav-bg-light);
  --nav-text: var(--nav-text-light);
  --nav-border: var(--nav-border-light);
  --hover-bg: var(--hover-bg-light);
}

/* Dark theme styles */
.dark-theme {
  --nav-bg: var(--nav-bg-dark);
  --nav-text: var(--nav-text-dark);
  --nav-border: var(--nav-border-dark);
  --hover-bg: var(--hover-bg-dark);
}

/* Navbar Styling */
/*background: conic-gradient(from 90deg at 40% -25%, #0030ff, #03f7f7, #07b2ee, #0aade6, #27b4f2, #31a6f3, #123ccf, #ac15c7, #123dcf, #9bd610, #5ade0d, #07eed4, #03f728, #09ff00, #00ff26, #00ff97);*/
#nav {

  margin: 20px 20px 0px 20px;
  border-radius: 22px 22px 22px 22px;
  padding: 10px;
  /* background: var(--nav-bg); */
  background-color: white;
  box-shadow: 0 -8px 32px 0 rgb(31 100 135 / 37%);
  /* backdrop-filter: blur(6.5px); */
  /* -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid var(--nav-border); */
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  /* box-shadow: 0 0 0 3px inset; */
  /*   
    position: relative;
    transform-style: preserve-3d; */
}


/* Navbar Links - Underline Animation */
#nav .nav-link {
  color: #000;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease-in-out;
}

/* Underline Effect */
#nav .nav-link:not(.dropdown-toggle)::after {
  /* Exclude dropdown arrow */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgb(0, 47, 255);
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Hover Effect */
#nav .nav-link:not(.dropdown-toggle):hover::after {
  /* Exclude dropdown arrow */
  width: 100%;
  left: 0;
}

/* Dropdown Items - Same Effect */
#nav .dropdown-menu .dropdown-item {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

/* Underline Effect for Dropdown Items */
#nav .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

#nav .dropdown-menu .dropdown-item:hover::after {
  width: 100%;
  left: 0;
}


/* Navbar Brand */
#nav .navbar-brand {
  color: var(--nav-text);
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

#nav .navbar-toggler {
  background-color: transparent;
  padding: 5px;
  border: none;
  /* No border by default */
  transition: transform 0.3s ease;
}

#nav .navbar-toggler:focus,
#nav .navbar-toggler:active {
  outline: none;
  /* Remove focus outline */
  border: none;
  /* Ensure no border appears */
  box-shadow: none;
  /* Remove any default browser shadow */
  transform: scale(1.1);
  /* Subtle scaling effect for interaction */
}

#nav .navbar-toggler-icon {
  color: #000;
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}

#nav .navbar-toggler-icon::before,
#nav .navbar-toggler-icon::after,
#nav .navbar-toggler-icon span {
  content: '';
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  /* Matches the text color based on theme */
  border-radius: 2px;
  margin: 4px auto;
  transition: all 0.3s ease;
  border: none;
}

#nav .navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
  border: none;
}

#nav .navbar-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
  border: none;
}

#nav .navbar-toggler.collapsed .navbar-toggler-icon span {
  opacity: 0;
  border: none;
}

/* Media Queries */
@media (max-width: 992px) {
  #nav {
    padding: 10px;
  }

  #nav .navbar-brand {
    font-size: 1.25rem;
  }
}


@media (max-width: 768px) {

  #nav{
    margin-left: 0;
    margin-right: 0;
  }

  #emgimg {
    display: none !important;
  }

  #nav-menu-container {
    display: none;
  }
}




/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: none;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    margin: 0;
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li ul {
  padding: 0;
  margin: 0;
  list-style: none;
}


#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color:
    #1d92eb;
}

#mobile-nav ul .menu-item-active {
  color: #004cff;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 0px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100vw;
}

/* Sections Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  width: 100%;
}

.section-header .section-title {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00b6ff, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 20px;
  color: #3c2d5a;
}

@media (max-width: 768px) {
  .section-header .section-description {
    padding-bottom: 20px;
  }
}

/* Hide horizontal scrollbar */
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: whitesmoke;
  min-height: 40px;
  margin-top: 92px;
  border: none;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  border: none;

}

@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;
  border: none;

}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
  border: none;

}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
/* About Us Section
--------------------------------*/
#about {
  /* background: linear-gradient(to bottom, white, rgb(0, 51, 255)); */
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.275), rgb(255, 255, 255)), url("/xcontent/xassets/img/oabggradient8.png") fixed center center;
  background-size: cover;
  padding: 10px 0;
}

@media (max-width:769px) {
  #about {
    padding: 0px 0px;
  }
}

#about .about-container .background {
  min-height: 290px;
  min-width: 290px;
  /* background: url(../img/robo.jpg) center top no-repeat; */
  background-size: cover;
  margin-bottom: 10px;
  border-radius: 30px;
}

#aboutimg .about-containerimg .background {
  min-height: 1000px;
  min-width: 1100px;
  margin-bottom: 10px;
}

.matter-box {
  display: flex;
  flex-direction: row;
  width: 100%;
  column-gap: 12px;
  row-gap: 16px;
}

@media (max-width:991px) {
  .matter-box {
    flex-direction: column;
  }
}

#about .about-container .content {
  width: 100%;
  padding: 20px;
}

#about .about-container .title {
  /* color: #333; */
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(90deg, rgb(211 0 197), rgb(0 225 253));
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#about .about-container .title a {
  -webkit-text-fill-color: #000000;
  background-clip: none;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }

  #about .about-container .background {
    margin: 20px 10px;
    height: auto;
    width: auto;
  }
}

@media (max-width: 2000px) {
  #aboutimg .about-containerimg .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  width: 33%;
  background: #fff;
  background-size: cover;
  padding: 5px 20px 10px 5px;
  border-radius: 0 0 0 50px;
}

@media (max-width:991px) {
  #about .about-container .icon-box {
    width: 100%;
  }
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #000000;
}

#about .about-container .icon-box .icon i {
  color: #ff00cc;
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
  font-family: sans-serif;

}

/* Facts Section
--------------------------------*/
#facts {
  background: #ffffff;
  padding: 20px 0;
}

#facts .section-title {
  background: linear-gradient(90deg, #00b6ff, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#facts .counters span {
  font-size: 48px;
  display: block;
  color: #6757e5;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}


/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 80px 10px;
}

@media (max-width:768px) {
  #services {
    padding: 20px 10px;
  }
}

#services .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 225px;
  position: relative;
  background: #fafafa;
}

#services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #804de3;
}

#services .icon a {
  display: inline-block;
}

#services .icon i {
  color: #fff;
  font-size: 24px;
}

#services .box:hover .icon {
  background: #fff;
  border: 2px solid #804de3;
}

#services .box:hover .icon i {
  color:
    #804de3;
}

#services .box:hover .icon a {
  color:
    #1d92eb;
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}

#services .description {
  font-size: 13px;
  line-height: 22px;
  text-align: justify;
  text-justify: inter-word;
}

/* Services-long Section
--------------------------------*/
#services-long {
  background: #fff;
  background-size: cover;
  padding: 80px 10px;
}

@media (max-width:768px) {
  #services-long {
    padding: 20px 10px;
  }
}

#services-long .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 225px;
  position: relative;
  background: #fafafa;
}

#services-long .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #804de3;
}

#services-long .icon a {
  display: inline-block;
}

#services-long .icon i {
  color: #fff;
  font-size: 24px;
}

#services-long .box:hover .icon {
  background: #fff;
  border: 2px solid #804de3;
}

#services-long .box:hover .icon i {
  color:
    #804de3;
}

#services-long .box:hover .icon a {
  color:
    #1d92eb;
}

#services-long .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services-long .title a {
  color: #111;
}

#services-long .description {
  font-size: 13px;
  line-height: 22px;
  text-align: justify;
  text-justify: inter-word;
}

/* semiconductor Section
--------------------------------*/
#semiconductor {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#semiconductor .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#semiconductor .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#semiconductor .icon a {
  display: inline-block;
}

#semiconductor .icon i {
  color: #fff;
  font-size: 24px;
}

#semiconductor .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#semiconductor .box:hover .icon i {
  color:
    #1d92eb;
}

#semiconductor .box:hover .icon a {
  color:
    #1d92eb;
}

#semiconductor .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#semiconductor .title a {
  color: #111;
}

#semiconductor .description {
  font-size: 14px;
  line-height: 24px;
}

/* automotive Section
--------------------------------*/
#automotive {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#automotive .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#automotive .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#automotive .icon a {
  display: inline-block;
}

#automotive .icon i {
  color: #fff;
  font-size: 24px;
}

#automotive .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#automotive .box:hover .icon i {
  color:
    #1d92eb;
}

#automotive .box:hover .icon a {
  color:
    #1d92eb;
}

#automotive .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#automotive .title a {
  color: #111;
}

#automotive .description {
  font-size: 14px;
  line-height: 24px;
}

/* healthcare Section
--------------------------------*/
#healthcare {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#healthcare .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#healthcare .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#healthcare .icon a {
  display: inline-block;
}

#healthcare .icon i {
  color: #fff;
  font-size: 24px;
}

#healthcare .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#healthcare .box:hover .icon i {
  color:
    #1d92eb;
}

#healthcare .box:hover .icon a {
  color:
    #1d92eb;
}

#healthcare .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#healthcare .title a {
  color: #111;
}

#healthcare .description {
  font-size: 14px;
  line-height: 24px;
}

/* aerospace Section
--------------------------------*/
#aerospace {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#aerospace .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#aerospace .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#aerospace .icon a {
  display: inline-block;
}

#aerospace .icon i {
  color: #fff;
  font-size: 24px;
}

#aerospace .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#aerospace .box:hover .icon i {
  color:
    #1d92eb;
}

#aerospace .box:hover .icon a {
  color:
    #1d92eb;
}

#aerospace .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#aerospace .title a {
  color: #111;
}

#aerospace .description {
  font-size: 14px;
  line-height: 24px;
}

/* electronics Section
--------------------------------*/
#electronics {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#electronics .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#electronics .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#electronics .icon a {
  display: inline-block;
}

#electronics .icon i {
  color: #fff;
  font-size: 24px;
}

#electronics .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#electronics .box:hover .icon i {
  color:
    #1d92eb;
}

#electronics .box:hover .icon a {
  color:
    #1d92eb;
}

#electronics .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#electronics .title a {
  color: #111;
}

#electronics .description {
  font-size: 14px;
  line-height: 24px;
}

/* energy Section
--------------------------------*/
#energy {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#energy .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#energy .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#energy .icon a {
  display: inline-block;
}

#energy .icon i {
  color: #fff;
  font-size: 24px;
}

#energy .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#energy .box:hover .icon i {
  color:
    #1d92eb;
}

#energy .box:hover .icon a {
  color:
    #1d92eb;
}

#energy .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#energy .title a {
  color: #111;
}

#energy .description {
  font-size: 14px;
  line-height: 24px;
}

/* industrial-machining Section
--------------------------------*/
#industrial-machining {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#industrial-machining .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#industrial-machining .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#industrial-machining .icon a {
  display: inline-block;
}

#industrial-machining .icon i {
  color: #fff;
  font-size: 24px;
}

#industrial-machining .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#industrial-machining .box:hover .icon i {
  color:
    #1d92eb;
}

#industrial-machining .box:hover .icon a {
  color:
    #1d92eb;
}

#industrial-machining .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#industrial-machining .title a {
  color: #111;
}

#industrial-machining .description {
  font-size: 14px;
  line-height: 24px;
}

/* logistics Section
--------------------------------*/
#logistics {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#logistics .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#logistics .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background:
    #1d92eb;
}

#logistics .icon a {
  display: inline-block;
}

#logistics .icon i {
  color: #fff;
  font-size: 24px;
}

#logistics .box:hover .icon {
  background: #fff;
  border: 2px solid #1d92eb;
}

#logistics .box:hover .icon i {
  color:
    #1d92eb;
}

#logistics .box:hover .icon a {
  color:
    #1d92eb;
}

#logistics .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#logistics .title a {
  color: #111;
}

#logistics .description {
  font-size: 14px;
  line-height: 24px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  margin: 60px 0px;
  background: linear-gradient(rgb(255 255 255 / 85%), rgb(251 251 251 / 71%)), url(../img/mousbg_cmp.jpg) fixed center center;
  background-size: cover;
  padding: 50px 0px;
  font-size: larger;
  font-weight: 500;
  text-align: center;
  background-color: #1574be;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* margin: auto; */
  margin-top: 0;
  margin-bottom: 0;
}


@media (max-width: 1024px) {

  #call-to-action {
    background-attachment: scroll;
  }
}

#call-to-action .cta-title {
  /* color: #fff; */
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff0085, #0033fd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#call-to-action .cta-text {
  color: #454545;
}

@media (min-width: 769px) {

  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #804de3;
  color: #804de3;
  background: none;
}

#call-to-action .cta-btn:hover {
  background:
    #804de3;
  border: 2px solid #ffffff;
  color: white;
}

#mou-count {
  color: #129100;
}

#mou-int-count {
  font-size: x-large;
  font-family: fantasy;
  padding: 7px 10px;
  border-radius: 30px;
  color: #37ff1a;
  background-color: #4c4c4c;
  border: 2px solid #4ce037;
}

@media (max-width: 769px) {
  #mous {
    padding: 20px 0px;
    flex-direction: column;
    row-gap: 25px;
  }
}

/* #mous{
    margin: 0px 0px;
    background: linear-gradient(rgb(255 255 255 / 85%), rgb(251 251 251 / 71%)), url(../img/mousbg.png) fixed center center;
    background-size: cover;
    padding: 50px 0px;
    font-size: larger;
    font-weight: 500;
    text-align: center;
    background-color: #1574be;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}  */



.cta-btn {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #000000;
  background: gainsboro;
}

.cta-btn:hover {
  color: #fff;
  background:
    #804de3;
  border: 2px solid #804de3;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  background: #ffffff;
  padding: 20px 0;
}

@media (max-width:768px) {
  #portfolio {
    padding: 20px 0px;
  }
}

.portfolio-container {
  height: 280px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 18px 14px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #474747;
  margin: 0 5px 10px 5px;
  transition: all ease-in-out 0.3s;
  background: #dae1e4;
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #804de3;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #804de3;
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #a4ebd4;
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel img {
  width: 70%;
  height: 70%;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color:
    #1d92eb !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}



/* digital summit section */
.digital {
  padding-top: 20px;
  padding-bottom: 0;
}


/* .carousel-container {
  padding: 0 0;
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  overflow-x: hidden;

}

.carousel {
  display: flex;
  padding: 0 0;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow-x: hidden;
}

.carousel img {
padding: 0 0;
position: absolute;
width: 50%;
height: 250px;
object-fit: cover;
transition: transform 0.8s ease, opacity 0.8s ease;
border-radius: 15px;
}

.carousel img.active {
padding: 0 0;
width: 60%;
height: 300px;
z-index: 3;
transform: scale(1.1);
opacity: 1;
}

.carousel img.left {
transform: translateX(-120%) scale(0.9);
opacity: 0.5;
z-index: 2;
}

.carousel img.right {
transform: translateX(120%) scale(0.9);
opacity: 0.5;
z-index: 2;
} */


/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 80px 0 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color:
    #1d92eb;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}



/* Collaborations section
--------------------------------*/
#collaborations {

  background: #ffffff;
  padding: 20px 0;
}

@media (max-width:769px) {
  #collaborations {
    padding: 20px 0px;
  }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  padding:0 10px;
  margin: 10px;
  /* background-color: #f0f0f0; */
}

.marquee {
  padding: 10px;
  margin: 0 15px;
  display: inline-block;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marq-img-item {
  object-fit: contain;
  height: 100px;
  margin: 0px 20px;
}

@media only screen and (max-width:768px) {
  .marq-img-item {
    height: 60px;
    margin: 0px 20px;
  }
}

.group-interact-imgs {
  background: #ffffff;
  padding: 80px 0 40px 0;
}

@media (max-width:769px) {
  .group-interact-imgs {
    padding: 20px 0px;
  }
}

.marq-img-item1 {
  object-fit: contain;
  height: 300px;
  margin: 0px 4px;
}

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

  .marq-img-item1 {
    width: initial !important;
    height: 150px;
    margin: 0px 4px;
  }

  .ilimg {
    width: 150px !important;
  }

}

/* Contact Section
--------------------------------*/
#contact {

  background: #ffffff;
  padding: 80px 0 40px 0;
}

@media (max-width:769px) {
  #contact {
    padding: 20px 0px;
  }
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
  display: grid;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  margin-bottom: 20px;
}

#contact .info div {
  display: flex;
  align-items: center;
}

#contact .info i {
  font-size: 20px;
  color:
    #804de3;
  float: left;
}

#contact .info p {
  padding-left: 30px;
  margin: 0px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background:
    #1d92eb;
  color: #fff;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#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 input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color:
    #1d92eb;
}

#contact .php-email-form button[type="submit"] {
  background:
    #1d92eb;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #51d8ad;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.custom-footer {
  background: linear-gradient(to bottom, white, rgb(0, 51, 255));
  padding: 40px 0;
  text-align: center;
  width: 100vw;
  margin: 0;
  overflow-x: hidden;
}

.custom-footer a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

#footer-links {
  display: flex;
  position: relative;
  justify-content: space-around;

  color: #000;
}

.custom-footer a:hover {
  color: #0f62f1 !important;
}

.custom-footer p {
  color: #000;
}

.custom-copyright {
  background-color: rgba(0, 0, 0, 0.2);
  color: black;
  font-weight: bold;
}

.social-icon {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  margin: 0 10px;
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
  padding: 10px;
  border-radius: 50%;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.2);
}

.contact-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.contact-link:hover {
  color: #0f62f1;
}

@media (max-width: 768px) {
  .custom-footer .col-md-2 {
    text-align: center;
    margin-bottom: 15px;
  }
}