/*
Theme Name: Xminds
Text Domain: Xminds
Version: 1.6
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://www.xminds.com/
Theme URI: https://www.xminds.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. SitePagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --border-radius: 4px;
  --color-text: #333;
  --color-primary: #000000;
  --active-color:#000000;
  --color-code-bg: #ffffff;
  --color-code: #8a6534;
  --font-sans: "Plus Jakarta Sans";
  --font-xl: 20px;
  --font-lg: 18px;
  --font-md: 16px;
  --font-sm: 14px;
  --font-sx: 12px;
  --line-height-loose: 1.75;
  --line-height-normal: 1.5;
  --line-height-dense: 1.1;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 64px;
  --size-content: 100%;
  --size-gutter-3: var(--space-3);
  --size-gutter-5: var(--space-5);
  --size-gap: var(--space-6);
}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font: sans-serif;
  font-size: var(--font-md);
  line-height: var(--line-height-normal);
  overflow-y: scroll;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  font-family: sans-serif;
  font-family: var(--font-sans);
  font-weight: normal;
  word-wrap: break-word;
  background: #F7F7F7;
}
a {
  background-color: transparent;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
a:active,
a:hover {
  outline-width: 0;
  text-decoration: none;

}
.navbar-nav .nav-link.active {
  color: var(--active-color);
}
.navbar-nav .nav-link {
  color: var(--active-color);
}
abbr[title] {
  border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
  cursor: help;
  text-decoration: none;
}
b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  margin: 0;
  margin-bottom: 3rem;
  padding: 0;
  line-height: var(--line-height-dense);
  letter-spacing: -0.01em;
}
h1 > b {
  color: var(--color-primary);
}
img {
  border-style: none;
  max-width: 100%;
}
code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
  font-size: 1em;
  line-height: inherit;
}
hr {
  box-sizing: content-box;
  overflow: visible;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  margin-bottom: calc(var(--space-4) - 1px);
  background: hsla(0, 0%, 0%, 0.2);
  border: none;
  height: 1px;
}
* {
  box-sizing: inherit;
}
*:before {
  box-sizing: inherit;
}
*:after {
  box-sizing: inherit;
}
hgroup,
figure,
fieldset,
ul,
ol,
dl,
dd,
p {
  margin: 0;
  padding: 0;
  margin-bottom: var(--space-4);
}
ul,
ol {
  list-style-position: outside;
  list-style-image: none;
}
pre {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
  line-height: var(--line-height-normal);
  background: hsla(0, 0%, 0%, 0.04);
  border-radius: var(--border-radius);
  overflow: auto;
  word-wrap: normal;
  padding: var(--space-4);
}
b,
strong,
dt,
th {
  font-weight: bold;
}

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

blockquote *:last-child {
  margin-bottom: 0;
}
li *:last-child {
  margin-bottom: 0;
}
p *:last-child {
  margin-bottom: 0;
}
li > p {
  margin-bottom: calc(var(--space-4) / 2);
}
p {
  max-width: 680px;
}
code {
  font-size: 0.875rem;
}
kbd {
  font-size: 0.875rem;
}
samp {
  font-size: 0.875rem;
}
abbr {
  border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
  cursor: help;
}
acronym {
  border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
  cursor: help;
}
tt,
code {
  background-color: var(--color-code-bg);
  border-radius: var(--border-radius);
  color: var(--color-code);
  font-family: var(--font-mono);
  padding-bottom: 0.25em;
  padding-top: 0.25em;
  word-break: normal;
}
pre code {
  background: none;
}
code:before,
code:after,
tt:before,
tt:after {
  content: "\00a0";
  letter-spacing: -0.2em;
}
pre code:before,
pre code:after,
pre tt:before,
pre tt:after {
  content: none;
}


/* custom style */
.bg-light {
  background-color: #f7f7f7 !important;
  border: 1px solid #ffffff;
  border-radius: 0px 0px 20px 20px;
  padding: 10px 5px !important;
  max-width: 97vw;
  margin: auto;
}

.heroHeader {
  background-image: url("../images/hero.svg");
  /* height: calc(100vh - 100px); */
  max-width: 100%;
  margin: 0 15px;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
}
.heroContent {
  max-width: 31rem;
  width: 100%;
}
.heroContent p {
  max-width: 250px;
  width: 100%;
  margin-top: 10rem;
}
.partnerImg {
  max-width: 30px;
  width: 30px;
}
.heroPartner ul li{
  width: 100px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: flex-start;
}
.heroPartner ul{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 15px 0;
}
.heroPartner {
  width: 100%;
  border-top: 1px solid #000;
  padding-top: 25px;

}

.serviceList {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* grid-auto-columns: calc((100% - 3*10px)/5); */
  grid-auto-flow: column;
  /* overflow: auto; */
}

.wrapper {
  width: 100%;
}

.navbar-expand-md .navbar-collapse {
  flex-grow: inherit;
}

.navbar-nav .nav-link {
  font-size: 20px;
  position: relative;
}

.navbar-nav .nav-link::before {
  display: flex;
  flex-shrink: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 2s;
  box-shadow: inset 0 0 0 0.02em #000;
  border: 1px solid #000;
  transform: scale(1);
}
.navbar-nav .nav-link.active::before {
  box-shadow: inset 0 0 0 0.1em #fff;
  background-color: #000;
  transition: 12s;
  transform: scale(1.1);
}
.wrapperService h1 {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 42px;
  line-height: 60px;
  letter-spacing: -0.03em;
  margin-bottom: 40px !important;
}
.wrapperService .circle {
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-radius: 50px;
  border: 1px solid #000;
  margin-right: 10px;
}

.btn {
  background: var(--color-primary);
  color: var(--color-code-bg);
  font-size: 20px;
  font-weight: 700;
}
.headerBtn{
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  padding-right: 20px;
}

.heroBtn{
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
}
.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
}
.navbar-expand-md .navbar-nav {
  align-items: center;
}

.footerContent {
  grid-gap: 1rem;
  /* grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); */
  /* grid-template-columns: repeat(auto-fit, minmax(130px, 6fr)); */
  display: flex;
  background: #000;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 40px;
  justify-content: space-between;
  overflow: hidden;
}
.footerCondition {
  line-height: normal;
  max-height: 60px;
}

.footerContent h5 {
  font-size: 18px;
  color: var(--color-code-bg);
}
.footerContent ul li a{
  font-size: 14px;
  color: #A2A2A2;
  line-height: 28px;
  list-style: none;
  text-decoration: none;
}
.footerContent ul li a:hover{
  color: #fff;
}
.footerSocialItem ul{
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.footerSocial{
  flex-basis: 200px;
}
.footerSocialItem ul li{
  margin-right: 5px;
}
.footerSocialItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footerLast {
  grid-column: span 2;
}

.card-top .circle, .servicePartner .circle{
  width: 25px;
  height: 25px;
  background: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  color: #000;
  text-decoration: none;
  transition:  1s;
}
.card-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.card-top a{
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.card-top .serviceCount{
  color: #000;
  font-size: 14px;
}
.card-top a:hover .circle{
  transform: rotate(45deg);
  transition:  1s;
}

.serviceItem {
  width: 100%;
  max-height: 500px;
  background: linear-gradient(207.1deg, rgba(217, 217, 217, 0.15) -23.65%, #D9D9D9 97.16%);
  border: none;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition:  1s;
}
.serviceItem:hover {
  background: linear-gradient(207.1deg, #353535 -23.65%, #000000 97.16%);
  transition:  .1s;

}
.serviceItem:hover .card-top{
  filter: grayscale(1) invert(1);
}
.serviceItem:hover .card-img {
  filter: brightness(0.5);
}
.serviceItem:hover .card-bottom h2 {
  filter: grayscale(1) invert(1);
}
.card-bottom h2{
  max-width: 200px;
  width: 100%;
  transition: .3s ease-in-out;
}
.newsCaption-link {
  display: none;
}
.serviceItem:hover .card-bottom {
  transform: translateY(-30px);
  transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition:all .4s;
  -o-transition: all .4s;
}
.serviceItem:hover .newsCaption-link{
  margin-bottom: 0;
  display: block;
  color: #636363;
  padding-left: 40px;
  transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s;
  font-size: 14px;
}
.serviceBody{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-height: 480px;
  min-height: 500px;
}
.card-bottom h2 {
  font-size: 37px;
  line-height: 50px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0rem;
}
.card-bottom  {
  transform: translateY(-10px);
}
.card-img {
  position:absolute;
  top: 0;
  z-index: 1;
}
.workSection .wrapperService {
  background: #E5E9EB;
  width: 100%;
  /* min-height: 100vh; */
  border-radius: 30px;
  padding: 40px 25px;
}
.casestudySection .wrapperService {
  background: linear-gradient(207.1deg, #353535 -23.65%, #000000 97.16%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 40px 25px;
}

.contactSection .wrapperService {
  background: linear-gradient(207.1deg, #353535 -23.65%, #000000 97.16%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
}
.contactSection .wrapperService::before {
  content: "";
  background-image: url(img/circle.svg);
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  background-size: contain;
  bottom: 0;
  left: 0;
  background-position: left center;

}
section {
  padding: 0px;
}

.casestudySection h1 {
  filter: grayscale(1) invert(1);
}
.caseStudyContent a {
  border: 1px solid #A2A2A2;
  border-radius: 40px;
  color: #A2A2A2;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 11px 15px;
  line-height: 37px;
  font-weight: 600;
  height: 46px;
  display: flex;
  align-items: center;
  max-width: 300px;
}
.caseStudyContent h2 {
  letter-spacing: -0.03em;
  font-size: 57px;
  color: #E5E9EB;
}
.caseStudyContent {
  max-width: 530px;
  width: 100%;
  margin: auto;
}

.caseStudyContent p {
  font-size: 18px;
  color: #A2A2A2;
  line-height: 30px;
  font-weight: 400;
}
.caseStudyHead {
  margin-bottom: 2rem;
}

.casestudySlider {
  width: 100%;
  min-height: 100px;
}
.caseStudyItem li a {
  color:#D9D9D9;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.caseStudyItem .circles{
  display: inline-block;
  margin-left: 10px;
}
.caseStudyItem ul{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  margin-top: 5rem;
}

.marquee{
  display:block;
  position:relative;
  max-width:1800px;
  height:160px;
  animation:scroll 5s linear infinite;
  padding:3px;
}

.marquee:hover {
  animation-play-state: paused
}

.tool-img {
  width: 230px;
  height: 200px;
  margin: 5px;
  float: left;
  border-radius: 20px;
}
.technologiesSection {
  overflow: hidden;
}
.technologiesSection h1, .ourService h1{
  margin: 0 15px;
}
.technologiesSection .container-fluid {
  padding: 0;
}
.mega-item ul li a{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  text-decoration: none;
}
.mega-item ul li {
  list-style: disc;
}
.mega-item ul {
  padding-left: 20px;
}

.mega-item h4 a{
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #000000;
  text-decoration: none;

}
@keyframes scroll{
  0% {left:1800px;}
  100% {left:-1800px;}
}

.contactForm .form-control{
  background-color: transparent;
  border-bottom: 1px solid #636363 !important;
  outline: none;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #fff;
}
.contactField{
  align-self: start;
  display: grid;
  max-width: 500px;
  margin: auto;
  width: 100%;
}
.contactForm, .contactForm form {
  width: 100%;
}
.contactForm .form-check{
  display: flex;
  align-items: flex-start;
  grid-gap: 20px;
  justify-content: space-between;
  padding-left: 0px;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contactForm .form-group {
  max-width: 310px;
  width: 100%;
}
.contactForm .form-group label{
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #D9D9D9;
}
.contactForm .form-group label a{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #D9D9D9;
  text-decoration: none;
}
.contactForm .form-check .btn {
  align-items: center;
  background: #fff;
  border: none;
  color: #000;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  max-width: 150px;
  min-width: 130px;
  width: 100%;
}
.contactForm .form-check-input[type=checkbox] {
  border-radius: 0.25em;
  background: transparent;
  border: 1px solid #fff;
}
.form-check-input:checked[type=checkbox] {
  background: #fff;
}
.contactSection h1{
  filter: grayscale(1) invert(1);
}


.dropdown-menu:li {
  text-align: left;
}

.dropdown.service-desktop:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.navbar .nav-item.service-desktop:hover .dropdown-menu {
  display: flex;
  column-gap: 10px;
  min-width: 1250px;
  width: 100%;
  right: 15px;
  transform: translateX(45%);
  padding: 20px 30px;
  padding-top: 20px;
  background: rgba(237, 237, 237, 0.8);
  border: 1.78488px solid #FFFFFF;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: rgb(0 0 0 / 50%) 5px 5px 5px -10px;
  transition: 0.3s;
}
.navbar .nav-item.service-desktop:hover .dropdown-menu {
  transition: 0.3s;
}
.dropdown-toggle::after {
  display: none;
}
.megamenuwrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.megamenuwrapper .mega-item {
  flex: 25%;
}
.megamenuwrapper .mega-item:first-child{
  grid-column: span 10 / 2;
}


.navbar-toggler span.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  transition: all 0.15s;
}
.navbar-toggler[aria-expanded="false"]  span.icon-bar {
  transition: all 0.15s;
}
.navbar-toggler span.icon-bar {
  background-color: #000;
}
.navbar-toggler[aria-expanded="true"]  span:nth-child(2) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(4) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}
.navbar-default .navbar-toggle {
  border: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.navbar-toggler {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}
.navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(4) {
  transform: rotate(0);
}

.resourcespage .wrapperService {
  background: #E5E9EB;
  width: 100%;
  /* min-height: 100vh; */
  border-radius: 30px;
  padding: 40px 25px;
}

.resourcesBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 3rem;
  align-items: stretch;
  grid-row-gap: 3rem;
}

.resourcesBox .card {
  background: transparent;
  border: none;
}
.resourcesBox .btn {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  border: none;
  border-radius: 50px;
  padding: 0 15px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  max-width: 100%;
  white-space: nowrap;
}
.resourcesBox h5 a{
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 15px 0;
  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
text-decoration: none;
}
.resources-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.resources-categories a {
  margin-right: 3px;
  margin-bottom: 3px;
  
}
.resourcesBox span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #636363;
}



.resourcesdetailspage .wrapperService {
  background: #E5E9EB;
  width: 100%;
  /* min-height: 100vh; */
  border-radius: 30px;
  padding: 40px 25px;
}

.resourcesdetailspage p, .resourcesdetailspage ul li{
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #000000;
  max-width: 100%;
  padding: 0;
}
.resourcesdetailspage ul {
  padding-left: 20px;
}
.resourcesdetailspage ul li {
  list-style-type: disc;
}
.new-page-wrapper {
  max-width: 1065px;
  margin: auto;
}
.resourcesdetailspage .wrapperService h1 {
  justify-content: center;
}
.resourcesImage {
  max-width: 1065px;
  width: 100%;
  margin: auto;
  margin-bottom: 2rem;
}
.resourcesImage .gatsby-image-wrapper{
  max-width: 100%;
  width: 100%;
}

.realatedArticlesSeaction .wrapperService{
  background: transparent;
  padding-top: 0;
}

.errorSection {
  background-image: url("img/error-bg.svg");
  height: calc(100vh - 100px);
  max-width: 100%;
  margin: 0 15px;
  border-radius: 15px;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.errorSection .wrapperService {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.errorSection h2 {
  font-weight: 500;
  font-size: 57px;
  line-height: 80px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #636363;
}
.errorSection .btn{
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #FFFFFF;
  min-height: 42px;
  padding: 15px;
  line-height: 20px;
  margin-top: 40px;
}
.errorSection h1{
  font-weight: 500;
  font-size: 77px;
  line-height: 80px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
}

.sliderHead .slick-initialized .slick-slide .techSlider{
  display: block;
  background: #E5E9EB;
  margin: 5px;
  width: 341px;
  height: 230px;
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.techSlider .gatsby-image-wrapper {
  width: 140px;
}
.navbar-dark .navbar-nav .nav-link {
  color: #000 !important;
  align-items: center;
  display: flex;
  font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
.navbar-expand-md .navbar-nav li.header-btn a{
  border-radius: 50px;
padding: 0px 15px;
font-size: 18px;
color: #fff;
min-height: 40px;
display: flex;
align-items: center;
background: #000;
color: #fff !important;
font-weight: 700;
border: 1px solid #000;
align-items: center;
    border-radius: 50px;
    color: #fff;
    display: flex;
    font-size: 16px;
    line-height: 15px;
    margin-left: 2rem;
    min-height: 30px;
    padding: 0 15px;
    min-width: initial;
    width: auto;
}
.navbar-expand-md .navbar-nav li.header-btn a.nav-link:before{
 display: none;
}
.resourcesImage img {
  border-style: none;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: auto;
}

ul.page-numbers {
  display: flex;
  justify-content: center;
  grid-column: span 3;
}
ul.page-numbers li a.next {
  width: 30px;
}
ul.page-numbers li a.prev {
  width: 30px;
}
ul li span.page-numbers.current {
  min-width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 5px;
  padding: 5px 10px;
  text-decoration: none;
}
ul li a.page-numbers {
  min-width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 5px;
  padding: 5px 10px;
  text-decoration: none;
}

.blog-img img{
  max-width: 100%;
    width: 100%;
    min-height: 207px;
    object-fit: cover;
    height: 100%;
    max-height: 100%;
}
.blog-img {
  max-width: 325px;
  width: 100%;
  max-height: 207px;
  height: 100%;
}
.resourcesdetailspage h2 {
  padding-left: 0px;
}
.text-muted {
  color: #fff !important;
}
.casestudy-detail a {
  color: #000;
text-decoration: none;
}
.footerItem ul li {
  color: #fff !important;
}
.footerItem ul li pre {
  padding: 0;
  line-height: 32px;
  color: #A2A2A2;
}
.innerPageNavigation {
  width: 100%;
  display: flex;
  margin-bottom: 2rem;
}
.breadcrumbs {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  display: flex;
}
.breadcrumbs li {
  list-style: disc;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 20px;
  color: #a2a2a2;
  padding-right: 0px;
}
.breadcrumbs li a {
  display: block;
  padding: 0 40px 0 0px;
  color: #4d4d4d;
  text-decoration: none;
  position: relative;
  text-transform: capitalize;
}
.realatedArticlesSeaction {
  padding-top: 2rem;
}

/* ==checkbox== */
.checkbox-form-group input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: '\e876';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  font-family: 'Material Icons';
  background: #000;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  border: 1px solid #636363;
  padding: 0px 0px 0px 1px;
}
.checkbox-form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 9;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
}
.checkbox-form-group .wpcf7-list-item-label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #636363;
  padding: 10px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  left: 0;
}

.checkbox-form-group {
  display: block;
  margin-bottom: 0px;
  display: flex;
}
/* ==checkbox== */

.checkbox_2 .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.footer-hide {
  display: block;
}
.footer-firstItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-open {
  display: none;
}

.modal-content .contactForm h5 {
  text-align: center;
  max-width: 100%;
  margin: 2rem auto;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #d9d9d9;
}
.modal-content {
  background-color: #000;
  min-height: 640px;
  border-radius: 30px;
  overflow: hidden;
}

.modal-header {
  padding: 20px;
}
.modal-logo {
  margin: 1rem auto;
  width: 100%;
  text-align: center;
  margin-top: 0;
  display: grid;
  place-items: center;
  justify-content: center;
}
.modal.show .modal-dialog {
  max-width: 640px;
}
.modal-content .contactForm {
  padding: 1.2rem 0;
}
.error {
  color: red;
}

.modal-header .btn {
  border: none;
  padding: 0;
}
.modal-header .btn:hover {
  border: none;
}
body.modal-open {
  padding: 0 !important;
}
.fade.modal.show {
  backdrop-filter: blur(5px);
  background: rgba(229, 233, 235, 0.1);
  padding: 0 !important;
}
.modal-body {
  padding: 20px;
}
.modal-body {
  background-image: url("img/modal-bg.svg");
  min-height: 100%;
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  display: grid;
  padding-top: 0;
}

.modal-content .modal-body p {
  text-align: center;
  max-width: 100%;
  /* margin: 2rem auto; */
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #d9d9d9;
  margin-top: 0;
}
.modal-content .modal-body h5{
  color: #fff;
  max-width: 380px;
  margin: auto;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}
.modal-content .modal-body img{
  filter: brightness(0) invert(1);
}
.resourcespagination {
  margin-top: 40px;
}
.modal-header {
  padding: 20px;
  border: none;
}
.wrapperService .color-accent, .color-accent-hover:hover, .color-accent-hover:focus, :root .has-accent-color, .has-drop-cap:not(:focus):first-letter, .wp-block-button.is-style-outline, a {
  color: #000 ;
}
.post-views.entry-meta {
  padding-left: 0;
}
.new-page-wrapper img {
  display: block;
}
.service-mobile ul {
  background-color: transparent;
  border: none;
  list-style: disc;
  padding-left: 20px;
  line-height: 40px;
}
.service-mobile ul li {
  list-style: disc;
  font-size: 18px;
  color: #000;
}
.service-mobile {
  display: none;
}
.footer {
  margin-top: 32px;
}
.footerSocialItem .simple-social-icons ul li a {
  width: 36px;
    height: 36px;
    background: #A2A2A2;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}
.footerSocialItem .simple-social-icons ul li {
  margin-left: 0 !important;
}
.footerSocialItem .simple-social-icons ul li a:hover {
  background: #fff;
}
.footerItemServices ul li {
  list-style: circle;
  color: #fff;
}
.footerItemServices ul {
  padding-left: 20px;
}
.footerItemServices li::marker, .footerItemcasestudy li::marker, .footerItemResources li::marker {
  font-size: 1rem;
}
.navbar-expand-md .navbar-nav li.header-btn a:hover {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
}
.form-check input[type="submit"] {
  background-color: transparent;
  border: transparent;
  color: #000;
  font-weight: 600;
}
.contactRelative {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.navbar .nav-item.service-mobile .dropdown-menu.show  {
  background: transparent;
  border: none;
}
.navbar .nav-item.service-mobile .dropdown-menu.show .megamenuwrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.navbar .nav-item.service-mobile .dropdown-menu.show .megamenuwrapper .mega-item h4{
  list-style: disc;
  font-size: 18px;
  color: #000;
}
.service-mobile ul {
  background-color: transparent;
  border: none;
  list-style: disc;
  padding-left: 30px;
  line-height: 40px;
}

.service-link {
  text-align: center;
}
.footer-copyright {
    background: #000;
    color: #a2a2a2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #636363;
    padding: 15px 0;
    font-size: 14px;
}
.service-link a {
  color: #a2a2a2;
  font-size: 14px;
  text-decoration: none;
}
.copy-right.text-right {
  color: #a2a2a2;
}
.navbar-dark .navbar-brand {
  max-width: 120px;
}
.new-page-wrapper .wp-block-image.is-style-rounded img {
  border-radius: 0;
}
.new-page-wrapper .wp-block-image {
  padding: 0;
}
.resourcesBox .btn {
  margin-bottom: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #ffb900;
  color: white;
}
.navbar-expand-md .navbar-nav li.header-btn a:focus, .navbar-expand-md .navbar-nav li.header-btn a:hover, .navbar-expand-md .navbar-nav li.header-btn a:active {
  background: #252525;
  color: #fff;
  border-color: #252525;
}
.navbar-nav .nav-link.active:before {
  background-color: #000;
  box-shadow: inset 0 0 0 0.1em #fff;
  transform: scale(1.1);
  transition: 2s;
  
}
.navbar-nav .nav-link:before {
  border: 1px solid #000;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.02em #000;
  content: "";
  display: flex;
  flex-shrink: 0;
  height: 12px;
  margin-right: 0.375em;
  transform: scale(1);
  transition: 2s;
  width: 12px;

}
.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}
.contactForm .form-group.checkbox-form-group  label {
  position: absolute;
    top: 0;
    left: 35px;
}
.contactForm .form-group.checkbox-form-group {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.contactForm .form-group.checkbox-form-group .wpcf7-not-valid-tip {
  margin-top: 1rem;
}

.contactForm .wpcf7-not-valid-tip {
  color: #ff5b5b;
  font-size: 14px;
  font-weight: 500;
  min-height: 18px;
  max-height: 20px;
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.form-check p {
  margin-bottom: 0;
}
body {
  margin-top: 65px;
}
.container, .resourcespage .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}


.page-top-head-section{
    padding: 40px 0;
}

.page-top-head-section2{
    padding: 40px 0 20px 0;
}

.subject-body-section{
    padding-bottom: 50px;
}

.page-top-head-section, .subject-body-section, .divider-section, .page-top-head-section2{
    background-color: #F7F7F7;
}

.joblist {
    display: flex;
    background-color: #fff;
    list-style: none;
    justify-content: space-between;
    border: 1px solid #EDEDED;
    padding: 21px;
    border-radius: 22px;
    margin-bottom: 20px;
    align-items: center;
}

.job-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 9px;
}

.location1{
    list-style: none;
    display: flex;
    padding-left: 0;
    font-size: 14px;
    margin-bottom: 3px;
}

.location1 li {
    padding-right: 15px;
}

.location1 li span {
    padding-right: 10px;
}

.joblist .liquid {
    background-color: #000000;
    color: #fff;
    font-size: 15px;
    width: 144px;
    font-weight: 600;
    border: 2px solid #000;
    border-radius: 100px;
    padding: 13px 10px;
    transition: all 0.3s ease-out;
}

.joblist .liquid:hover {
    background-color: #fff;
    color: #000;

}

.joblist .liquid i {
    font-size: 14px;
    padding-right: 2px;
}

.page-top-ul{
    list-style: none;
    padding-left: 0;

}

.heading-name1{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pera1{
    font-size: 16px;
    width: 75%;
}

.about-text{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.divider-line{
    background-color: #ebebeb;
    height: 5px;
    width: 100%;
    margin-bottom: 30px;
}

.email-bold{
    border: 1px solid #000;
    padding: 9px 25px;
    border-radius: 100px;
    margin-top: 20px;
}

.email-bold-section{
    padding-top: 20px;
}
/* Responsive 12345 */
@media all and (min-width: 992px) {

  .navbar .nav-item.service-desktop .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .nav-link {
  }
  .navbar .nav-item.service-desktop:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item.service-desktop .dropdown-menu {
    margin-top: 0px;
  }
}
@media screen and (max-width: 1919px){
  .navbar-expand-md .navbar-nav .nav-link {
    max-width: 100%;
    min-width: 141px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
.navbar-nav .nav-link:before {
    height: 10px;
    width: 10px;
}
.navbar-nav .nav-link {
  font-size: 16px;
  position: relative;
}
}
@media screen and (max-width: 1299px) {
  .footerSocial {
    flex-basis: auto;
}
.navbar .nav-item.service-desktop:hover .dropdown-menu {
  min-width: 800px;
  right: 0;
}
}

@media screen and (max-width: 1024px) {
  .navbar-expand-md .navbar-nav li.header-btn a {
    margin-left: 1rem;
}
  .bg-light {
    padding: 5px 5px !important;
  }
  .wrapperService h1 {
    font-size: 32px;
    line-height: 50px;
}
  .footerSocial {
    flex-basis: auto;
}

  .navbar-expand-md .navbar-nav li.header-btn a {
    font-size: 12px;
  }
  .footerCondition {
    grid-column: span 2;
}
  .footerSocial {
    grid-column: auto;
    grid-column-start: 1;
    grid-row-start: 2;
}
.footerCondition {
  margin-top: 0;
  line-height: normal;
  max-height: 60px;
}
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    position: relative;
  }
  .header-btn {
    font-size: 12px;
  }
  .bg-light {
    padding: 10px 5px;
  }
  .navbar-nav .nav-link::before {
    left: 0;
    top: 12px;
  }
  .navbar-nav .nav-link.active::after {
    left: 4px;
    top: 16px;
  }
}
@media screen and (max-width: 991px) {
  .bg-light {
    padding-top: 40px;
    margin: auto;
    max-width: 100vw;
    right: inherit;
  }
  .resourcesdetailspage .wrapperService {
    padding: 40px 15px;
  }
  .navbar .nav-item.service-desktop:hover .dropdown-menu {
    min-width: 660px;
    right: 0;
}
  .footer-open {
    display: block;
  }
  .footer-hide {
    display: none;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footerContent {
    padding: 40px 25px;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    display: grid;
  }
  .footerCondition {
    margin-top: 0;
    line-height: normal;
    max-height: 100%;
    grid-column: auto;
  }
  .footerSocial {
    grid-column: auto;
    grid-column-start: 1;
    grid-row-start: 3;
}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px){
  .navbar-expand-md .navbar-nav .nav-link {
      padding-right: 10px;
      padding-left: 10px;
      min-width: 100%;
  }
  }
@media screen and (max-width: 767px) {
  .resourcesdetailspage .wrapperService h1 {
    font-size: 22px;
    line-height: 40px;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-expand-md .navbar-nav li.header-btn a {
  margin: 0;
}
  .resourcesdetailspage .container{
    max-width: 100%;
}
  .resourcesBox .card-body {
    padding: 1rem 0rem;
}

  .service-mobile {
    display: block;
  }
  .service-desktop {
    display: none;
  }
  .navbar-nav {
    position: absolute;
    max-width: 100%;
    left: 0px;
    padding: 40px 20px;
    top: 110px;
    width: 100%;
    margin: auto;
    background: #f7f7f7;
    border: 1px solid #fff;
    border-radius: 20px;
    height: calc(100vh - 112px);
    line-height: 50px;
}
  .resourcespage {
    padding-top: 1rem;
  }
  .blog-img {
    max-width: 1100%;
    width: 100%;
  }
  .footerLast ul {
    padding-left: 0px;
  }
  .footerSocial {
    margin-top: 2rem;
  }
  .footerContent {
    padding: 40px 25px;
    grid-gap: 1rem;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  .footerSocial {
    grid-row-start: none;
}
  .footerLast,
  .footerSocial {
    grid-column: auto;
  }
  .footerCondition {
    margin-top: 0;
    line-height: normal;
    max-height: 60px;
  }
  .resourcespage .wrapperService {
    padding: 30px 15px;
  }


  .resourcesBox .btn {
    margin-bottom: 5px;
  }

  .navbar-expand-md .navbar-collapse .navbar-nav {
    align-items: self-start;
  }

  .navbar-nav .nav-link {
    font-size: 20px;
    position: relative;
  }
  .whomDetails {
    grid-template-columns: repeat( 1, minmax(320px, 1fr) );
  }
  .forStartup {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .forStartup .gatsby-image-wrapper {
    margin-bottom: 0;
    margin-right: 20px;
    max-width: 80px;
    width: 100%;
  }

  .whomDetails h5 {
    min-height: 100%;
    font-size: 16px;
  }
  .whomContent {
    padding: 0px;
    background: transparent;
  }
  .whomContent ul li {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .contactRelative {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    position: relative;
}
.contactSection .wrapperService {
  padding: 25px 15px;
}
.contactForm .form-check {
  align-items: self-start;
  flex-direction: column;
  padding-left: 0;
}
.contactForm .form-check .btn {
  margin-top: 3rem;
  max-width: 100%;
  min-width: 100%;
}
.contactForm .form-check p {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
}
.casestudySlider {
  width: 100%;
  min-height: auto;
}
}

@media screen and (max-width: 640px) {
  .detailspage {
    margin-top: 80px;
}
    .innerPageNavigation ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
  }
  .new-page-wrapper img {
    display: block;
    width: 100%;
}
  .innerPageNavigation ul li:last-child a {
    position: relative;
    max-width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .innerPageNavigation ul li:last-child{
    grid-column: 1 / 3;
  }
  .innerPageNavigation ul li:last-child a{
padding: 0;
  }
  .resourcesBox {
    grid-row-gap: 2rem;
}
  .card-body {
    padding: 1rem 0rem;
}

  .wrapperService h1 {
    font-size: 32px;
    line-height: 50px;
}
  .navbar-expand-md .navbar-nav li.header-btn a{
    width: 100%;
    padding: 10px 15px;
    display: inherit;
    font-size: 20px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    line-height: 18px;
}
.navbar-expand-md .navbar-nav li.header-btn {
  font-size: 12px;
  width: 100%;
  text-align: center;
}

}
@media (max-width: 527px) {
    .joblist {
        align-items: center;
        flex-direction: column;
    }

    .location1 {
        justify-content: space-evenly;
        margin-bottom: 8px;
    }

    .job-name {
        text-align: center;
    }

    .pera1 {
    width: 100%;
}
}
