:root {
  --body-bg: #ffffff;
  --theme-color: #ffd800;
  --secondary-color: #0c7735;
  --body-color: #555555;
  --title-color: #000000;
  --smoke-color: #f1f5f4;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --border-color: #bfbfbf;
  --title-font: "Fredoka", sans-serif;
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 5 Free";
}

::selection{
  color: black;
  background-color: var(--theme-color);
}

html, body {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 7px;
  background: var(--black-color);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb{
  background-color: var(--theme-color);
  border-radius: 10px;
}


ul {
  list-style-type: disc;
}

ul, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

/* ============= Scroll To Top here ============= */

#scrollToTop {
  position: fixed;
  bottom: 80px;
  right: -40px;
  transform: rotate(90deg);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTop .scroll-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-progress {
  width: 50px;
  height: 3px;
  background: blueviolet;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--theme-color);
  width: 0%;
  transition: width 0.25s ease;
}

.scroll-label {
  font-size: 14px;
  font-weight: bold;
  color: burlywood;
}

/* =============== Mobile Menu here ================ */

.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding: 20px;
  display: block;
  text-align: center;
  background-color: var(--body-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vs-menu-wrapper .mobile-logo img{
  width: 220px;
}
.vs-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 330px;
  background-color: var(--body-bg);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.vs-mobile-menu {
  overflow-y: auto;
  max-height: calc(100vh - 80px);
  padding-bottom: 40px;
  margin-top: 20px;
  text-align: left;
}
.vs-mobile-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(242, 0, 58, 0.2);
  background-color: #000;
}
.vs-mobile-menu::-webkit-scrollbar {
  width: 4px;
  background-color: #000;
}
.vs-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--border-color);
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  font-weight: 700;
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}
.vs-mobile-menu ul li.vs-active > a {
  color: var(--theme-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(242, 0, 58, 0.5);
  border-radius: 50%;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
  content: "\f068";
}
.vs-mobile-menu > ul {
  padding: 0 20px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--black-color);
  display: inline-block;
  border-radius: 0;
}
.vs-menu-toggle.style-text, .vs-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.vs-menu-toggle.style-text i, .vs-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.vs-menu-toggle.style-text-white {
  color: var(--white-color);
}


/* ============ Header here ================= */

.vs-header {
  position: relative;
  z-index: 41;
}

.header-logo {
  max-width: 270px;
  padding: 15px 0;
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}
.will-sticky .sticky-active.active .menu-area {
  margin-bottom: 0;
}

.main-menu {
  text-align: end;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--title-color);
  text-transform: capitalize;
  /* Extra large devices */
}

.main-menu a:hover {
  color: var(--secondary-color);
}
.main-menu > ul > li {
  margin: 0 16px;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f078";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  top: -0.8px;
  font-size: 0.8rem;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--body-bg);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  transform-origin: top center;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34px;
  top: 32px;
  width: 1px;
  background-color: var(--border-color);
  height: calc(100% - 65px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 3.3em;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--secondary-color);
  font-weight: 700;
  background-color: var(--body-bg);
  box-shadow: inset 0px 2px 4px 0px rgba(12, 119, 53, 0.4);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  padding: 20px 15px 23px 15px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.menu-style1 > ul > li > a {
  padding: 29.5px 0;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header-links li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  font-family: var(--body-font);
  margin: 0 36px 0 0;
  line-height: 23px;
}
.header-links li:last-child {
  margin-right: 0;
}
.header-links i {
  color: var(--title-color);
  margin-right: 10px;
}
.header-links a {
  color: inherit;
}
.header-links a:hover {
  color: var(--theme-color);
}

.header-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.header-icons .link-btn {
  margin-right: 10px;
}
.header-icons .link-btn:hover {
  color: var(--secondary-color);
}

.header-layout2 {
  position: absolute;
  width: 100%;
  top: 25px;
}
.header-layout2 .header-links a:hover {
  color: var(--secondary-color);
}
.header-layout2 .social-style1 a:hover {
  color: var(--secondary-color);
}
.header-layout2 .header-top {
  padding: 15px 20px;
  background-color: var(--theme-color);
}
.header-layout2 .menu-area {
  background-color: var(--white-color);
  padding: 0 20px;
  border-radius: 8px;
}

.extra-addon{
  display: flex;
  justify-content: end;
  align-items: center;
}

.btn-for-query{
  height: 50px;
  width: 130px;
  display: grid;
  place-items: center;
  border-radius: 100px;
  background-color: var(--body-color);
  color: white;
  margin-left: 30px;
  transition: 300ms;
}

.btn-for-query:hover{
  background-color: black;
}


/* ============== Banner section here ============== */

.banner{
  padding: 170px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6),#13111292),url(../images/bannerBg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.banner .data h1{
  font-family: var(--title-font);
  color: var(--white-color);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 100px);
  margin-bottom: 20px;
}

.banner .data h1 span{
  color: var(--theme-color);
}

.banner .data p{
  color: var(--white-color);
  width: 80%;
  margin: auto;
  font-size: 18px;
}


/* =========== quick-info section here ============ */

.quick-info{
  margin-top: -120px;
}

.quick-info .swiper-slide{
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--smoke-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-info .swiper-slide .image{
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: grid;
  place-items: center;
  background-color: var(--theme-color);
  margin: auto;
  margin-bottom: 15px;
  border: 5px solid var(--smoke-color);
  outline: 2px dashed black;
}

.quick-info .swiper-slide img{
  width: 60%;
}

.quick-info .swiper-slide p{
  font-weight: 600;
  margin: 0;
  font-family: var(--title-font);
  font-size: 20px;
}
  


/* =============== About section here ================ */

.about .left{
  position: relative;
}

.about .left img{
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.about .left .image1{
  object-position: center;
}

.about .left .below-images{
  margin-top: 2px;
}

.about .right .para1{
  padding: 3px 22px;
  background-color: var(--smoke-color);
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  font-size: 18px;
}

.about .right h2{
  font-size: clamp(30px, 2vw, 50px);
  font-weight: 700;
}

.about .right h2 span{
  color: blueviolet;
}

.about .right .key-insights{
  padding: 15px 22px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.about .right .key-insights:hover{
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
}

.about .right .key-insights h6{
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.about .right .key-insights p{
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}


/* ================== key features section here ================= */

.key-features h4{
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
}

.key-features h4 span{
  color: blueviolet;
}

.key-features .key-insights{
  padding: 15px 22px;
  border-radius: 8px;
  background-color: var(--smoke-color);
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.key-features .key-insights:hover{
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
}

.key-features .key-insights p{
  font-weight: 600;
  font-size: 18px;
}


/* ============== Key Benefits section here =============== */


.key-benefits .image{
  position: sticky;
  top: 15px;
}

.key-benefits img{
  border-radius: 8px;
}

.key-benefits h4{
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
}

.key-benefits h4 span{
  color: blueviolet;
}

.key-benefits .data{
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.1);
  background: linear-gradient(90deg, rgba(3,192,180,0.27) 0%, rgba(238,177,42,0.37) 100%);
  border-radius: 8px;
  padding: 15px 22px;
  width: 100%;
}

.key-benefits .data:hover{
  box-shadow: inset 0px 0px 15px 5px rgba(0,0,0,0.1);
}

.key-benefits .data:not(:last-child){
  margin-bottom: 20px;
}

.key-benefits .data h6{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--secondary-color);
}

.key-benefits .data p{
  font-size: 18px;
  font-weight: 600;
}

/* ================== capabilities section here ===================== */

.capabilities{
  background-color: #f5f6f8;
  background-image: url(../images/decorativeBg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.capabilities .heading h5{
  font-family: var(--title-font);
  font-weight: 500;
}

.capabilities .heading h2{
  font-weight: 700;
  font-size: 30px;
}

.capabilities .swiper-button-next, .capabilities .swiper-button-prev{
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #009fd4;
  box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
  display: grid;
  place-items: center;
  margin-top: 0;
  top: 50%;
  color: white;
}

.capabilities .swiper-button-next{
  right: -10px;
}
.capabilities .swiper-button-prev{
  left: -10px;
}

.capabilities .swiper-button-prev:after, .capabilities .swiper-button-next:after{
  font-size: 20px;
  color: var(--white-color);
  font-weight: 900;
}

.capabilities .capabilities_slider .data{
	padding: 18px;
	box-shadow: 0px 0px 20px -5px rgb(109 117 143 / 33%);
	border-radius: 8px;
	background-color: white;
	height: 350px;
}
  

.capabilities .capabilities_slider .swiper-slide .icon img{
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 30px;
}

.capabilities .capabilities_slider .swiper-slide .image{
	height: 150px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.capabilities .capabilities_slider .swiper-slide .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.capabilities .capabilities_slider .swiper-slide h4{
	font-size: 25px;
	font-weight: 600;
	color: var(--secondary-color);
  font-family: var(--title-font);
}

/* ============== query section here ============= */

.query-section .heading{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.query-section .left .map{
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.query-section .left .data {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, .1)
}

.query-section .left .data:hover {
  box-shadow: inset 0 0 15px 5px rgba(0, 0, 0, .1)
}

.query-section .left .data .image {
  height: 60px;
  width: 60px
}

.query-section .left .data p{
  margin-bottom: 0;
}

.query-section .left .data a {
  color: var(--lightBlue);
  transition: 100ms;
}

.query-section .left .data a:hover {
  color: var(--logogreen);
  text-decoration: underline
}

.query-section h4{
  color: blueviolet;
  font-size: clamp(30px, 3vw, 70px);
}

.query-section .form-data .lower input, .query-section .form-data .lower textarea{
border: 1px solid black;
}

.query-section .form-data .lower .btn{
  padding: 15px 35px;
  border-radius: 100px;
  font-weight: 700;
  background-color: var(--theme-color);
  color: black;
  border: none;
  font-size: 18px;
  transition: 300ms;
}

.query-section .form-data .lower .btn:hover {
  background-color: var(--black-color);
  color: white;
}

/* ---------- Captcha Layout ---------- */

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

#captchaCanvas {
  background: #f1f1f1;
  border-radius: 4px;
}

#refreshBtn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  color: #333;
}


/* ====================== Footer section here ===================== */

footer {
  overflow: hidden;
}

.footer-section{
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),#13111282),url(../images/footerBg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

footer a {
  color: var(--white-color);
}

.d-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-wrapper a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-section {
  background-color: #090A0B;
  position: relative;
}

.footer-section h2 span{
  color: var(--theme-color) !important;
}

.footer-section .footer-element {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
}

.footer-section .footer-newsletter {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 60px;
}

.footer-section .footer-newsletter h2 {
  z-index: 1;
  font-size: clamp(26px, 2.6vw, 120px);
  font-weight: 700;
  color: var(--white-color);
}

.footer-section .footer-newsletter h2 .newsletter-element {
  position: absolute;
  top: 96%;
  right: 20%;
  z-index: -1;
}

@media (max-width: 991px) {
  .footer-section .footer-newsletter h2 .newsletter-element {
    position: absolute;
    top: 96%;
    right: 50%;
    transform: translateX(50%);
  }
}

.footer-widgets-wrapper {
  padding: 50px 60px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.37);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 26px;
  color: var(--white-color);

}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
  font-weight: 600;
  position: relative;
  font-family: var(--title-font);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4::before {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  width: 25%;
  height: 4px;
  display: inline;
  left: 0;
  bottom: -10px;
  border-radius: 50px;
}

.footer-widgets-wrapper .single-footer-widget .logo img {
  width: 260px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--white-color);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper {
  display: flex;
  gap: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper a {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper a i {
  color: var(--white);
  transition: all 0.4s;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper a:hover {
  background: rgba(102, 102, 102, 0.5);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper a:hover i {
  color: var(--white-color);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
  color: var(--text);
  font-weight: 500;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
  font-size: 16px;
  color: var(--p2-clr);
  margin-right: 10px;
  font-size: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
  color: var(--text);
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: #c4c0c0;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s;
  text-wrap: nowrap;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  font-size: 14px;
  transition: all 0.4s;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover i {
  opacity: 1;
}

.footer-widgets-wrapper .single-footer-widget .footer-info li {
  display: flex;
}

.footer-widgets-wrapper .single-footer-widget .footer-info li .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets-wrapper .single-footer-widget .footer-info li .icon i {
  color: var(--white);
  font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .footer-info li .cont a:hover {
  color: var(--theme-color);
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    gap: 30px 20px;
  }

  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .social-wrapper {
    display: flex;
    gap: 8px;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 14px;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 30px;
  }
}

.social-wrapper {
  display: flex;
  gap: 10px;
}

.social-wrapper a {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-wrapper a i {
  color: var(--white);
  transition: all 0.4s;
}

.social-wrapper a:hover {
  background: rgba(102, 102, 102, 0.5);
}

.social-wrapper a:hover i {
  color: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 9;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--white-color);
}

@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .footer-bottom .footer-wrapper .footer-menu .line {
    height: 18px;
  }
}

@media (max-width: 1199px) {

  .footer-section .footer-newsletter {
    padding: 50px 0 30px;
  }
}













/* ================ Media Query Here ============== */

@media (max-width: 1300px) {

  .main-menu a {
    font-size: 16px;
  }

}

@media (max-width: 1200px) {

  .header-logo img{
    max-width: 250px;
  }

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

  .header-top {
    display: none;
  }

}

@media(max-width:1100px){
  .main-menu > ul > li {
    margin: 0 10px;
  }
}

@media (max-width:991.5px){
  .btn-for-query{
    margin-left: 20px;
    margin-top: 30px;
  }
}

@media(max-width:991px){
  .capabilities .swiper-button-next, .capabilities .swiper-button-prev{
    height: 30px;
    width: 30px;
  }

  .capabilities .swiper-button-prev:after, .capabilities .swiper-button-next:after{
    font-size: 16px;
  }
}

@media(max-width:768px){
  .quick-info{
    margin-top: -100px;
  }
}

@media (max-width: 576px) {

  .header-logo img{
    max-width: 250px;
  }

  .header-layout2 .menu-area {
    padding: 0 10px;
  }

  .banner .data p{
    width: 100%;
    text-align: justify;
    font-size: 16px;
    text-align-last: center;
  }

  .quick-info .swiper-slide p{
    font-size: 16px;
  }

  .about .left img{
    height: 250px;
  }

  .key-features .key-insights p{
    font-size: 16px;
  }

  .key-benefits .data p{
    font-size: 16px;
  }

  .captcha-wrapper {
    display: block;
  }

  .captcha-wrapper input{
    margin-top: 10px;
  }

}

@media (max-width:450px){

  .header-logo img{
    max-width: 200px;
  }

  .banner .data h1{
    font-size: 35px;
  }

  .about .left img{
    height: 200px;
  }
  .about .right h2{
    font-size: 24px;
  }
  .about .right .para2{
    text-align: justify;
  }
  .about .right .key-insights h6{
    font-size: 18px;
  }
  .about .right .key-insights p{
    font-size: 16px;
  }

  .key-features h4{
    font-size: 24px;
  }
  .key-features .key-insights{
    padding: 10px 12px;
  }
  .key-features .key-insights p{
    padding-left: 10px;
  }

  .key-benefits h4{
    font-size: 24px;
  }

  .capabilities .heading h2{
    font-size: 24px;
  }

  .query-section .heading{
    font-size: 24px;
  }
  .query-section h4{
    font-size: 24px;
  }

  .footer-section .pra2{
    text-align: justify;
  }

}

@media(max-width:420px){
  .quick-info .swiper-slide p{
    font-size: 18px;
  }
}

@media(max-width:400px){

  .banner .data h1{
    font-size: 32px;
  }

}