/* HOME */
.home .home-header {
    --marginCustom: -16rem;
    --paddingCustom: 16rem;
    min-height: 850px;
    margin-top: var(--marginCustom);
    padding-top: var(--paddingCustom);
    margin-bottom: 2rem;
    position: relative;
}

@media(min-width:1800px){
	.home .home-header {
		 min-height: 950px;
	}
}

.home .home-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0e2444;
    opacity: 0.8;
    margin-top: var(--marginCustom);
    padding-top: var(--paddingCustom);
}

.home .home-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 0% !important;
  	margin-top: 8rem;
}

.home .home-header h1 {
    color: #FFF;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 700;
    line-height: 145.023%;
    max-width: 32ch;
    text-align: center;
    text-transform: capitalize;
}

.home .home-header .sub-header {
    color: #FFF;
    text-align: center;
    font-family: var(--inter);
    /*font-size: clamp(1.2rem, 4vw, 1.5rem);*/
	font-size: clamp(1.2rem, 2vw, 2.18rem);
    font-style: normal;
    font-weight: 400;
    line-height: 145.023%;
    text-transform: capitalize;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
	width: 500px;
	margin-left: 7%;
}
@media only screen and (max-width: 767px) {
	.home .home-header .sub-header{
		margin-left: 0px;
		position: relative;
		left: 120px;
	}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	.home .home-header .sub-header{
		margin-left: 0px;
		position: relative;
		left: 120px;
	}
}
@media only screen and (min-width : 768px) and (max-width : 1024px){
	
}
@media only screen and (min-width : 1024px) and (max-width : 1366px) {
  .home .home-header .sub-header{
        margin-left: 16%;
  }
}
@media only screen and (min-width : 1367px) and (max-width : 1430px) {
 .home .home-header .sub-header{
        margin-left: 10%;
  }
}
@media only screen and (min-width : 1401px) and (max-width : 1500px) {
.home .home-header .sub-header{
        margin-left: 12%;
  }
}
  @media only screen and (min-width : 1501px) and (max-width : 1600px) {
.home .home-header .sub-header{
        margin-left: 10%;
  }
}

.home .home-header .sub-header div {
    background-color: white;
    padding: 0.3em;
    border-radius: 6px;
    overflow: hidden;
    white-space: nowrap;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;

}

.home .home-header .sub-header span {
    color: var(--orange);font-weight: 700; 
}

/* struggling section */
#struggling .container {
	display: flex;
	gap: 3rem;
	padding-top: 3rem !important;
	padding-bottom: 3rem;
	/*margin-bottom: 3rem;*/
}

#struggling .container h3 {
    color: #071F45;
    font-family: var(--inter);
   font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
}

#struggling .container h3 span {
    font-weight: 700;
}

#struggling .container > div:first-child{
    width: 33%;
	padding-top: 1em;
}

#struggling .container .grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
	
	width: 66%;
   max-width: 700px;
  margin-left: auto;
}

#struggling .container .grid-items .feature {
    border-radius: 5px;
    border: 1px solid rgba(39, 106, 205, 0.20);
    padding: 1em 2em;
    display: flex;
    gap: 1rem;
    align-items: center;
    min-height: 5rem;
}

@media(max-width:800px){
	#struggling .container .grid-items .feature .hideMobile{
		display:none !important; 
	}
}

#struggling .container .grid-items .feature .svg-container {
    max-width: 40px;
	/*background: #f3f5fc;*/
	border-radius: 50%;
	transition: var(--transition);
	/*outline: 1em solid #f3f5fc;*/
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 40px;
  	min-width: 40px;
}


#struggling  .container .grid-items .feature .svg-container img {
    transition: var(--transition);
    width: 30px;
    height: 30px;
}

#struggling  .container .grid-items .feature .svg-container img.showHover {
    display:none;
}

#struggling .container .grid-items .feature:last-child{
	grid-column: span 2;
	justify-content:center;
}

#struggling .container .grid-items .feature p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.1rem);
    font-style: normal;
    font-weight: 600;
    line-height: 161.023%;
}

#struggling .container .grid-items .feature:hover {
    border: 1px solid rgba(39, 106, 205, 0.40);
}

#struggling  .container .grid-items .feature:hover .svg-container {
    transition: var(--transition);
    /*outline: 1em solid #EA702429;
    background: #EA702429;*/
}


#struggling .container .grid-items .feature:hover img.hideHover {
    display:none;
}

#struggling .container .grid-items .feature:hover img.showHover {
    display:block;
}


/* techEvolving section */
#techEvolving .container {
     display: flex;
	  padding-bottom: 4rem;
	  gap: 6rem;
	  align-items: center;
	  margin-top: 4rem;
	  margin-bottom: 4rem;
	  padding-top: 4rem !important;

}

#techEvolving .container div {
    width: 50%;
}

#techEvolving .container img {
    border-radius: 5px;
}

#techEvolving .container h3 {
    color: #071F45;
    font-family: var(--inter);
    font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
    max-width: 80%;
}

#techEvolving .container h3 span {  font-weight: 700; }

#techEvolving .container p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 189.812%;
    max-width: 36ch;
}

@media(min-width:1800px){
	#techEvolving .container {
		 display: flex;
		  padding-bottom: 4rem;
		  gap: 8rem;
		  align-items: center;
		  margin-top: 0;
		  margin-bottom: 0;
		  padding-top: 4rem !important;

	}

	#techEvolving .container p {
		font-size: 18px;
	}
}

#techEvolving .container p.strong {
    font-weight: 600;
}

/* We approach IT challenges section */
#weApproach {
    position: relative;
    background-image: url('/wp-content/uploads/2024/04/weapproach.webp');
    min-height: 380px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
}

#weApproach .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #276ACDE5;
}

#weApproach .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

#weApproach .container div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

#weApproach .container h3 {
    color: #fff;
    font-family: var(--inter);
    font-size: clamp(1.5rem, 4vw, 2rem);
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    text-align: center;
    max-width: 35ch;
}

#weApproach .container h3 span {   font-weight: 700; }

#weApproach .container p {
    color: #fff;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 189.812%;
    text-align: center;
    max-width: 75ch;
}

@media(min-width:1800px){
	#weApproach .container p {
		font-size: 18px;
	}
}

#weApproach .container p span {  font-weight: 600; }

/* scalable section */
#scalable {
    background: #F3F5FC;
}

#scalable .container {
    display: flex;
    /*margin-bottom: 4rem;*/
    padding-top: 4rem !important;
    padding-bottom: 4rem;
}

#scalable .container .left {
    width: 40%;
}

#scalable .container .right {
    width: 60%;
}

#scalable .container h3 {
    color: #071F45;
    font-family: var(--inter);
    font-size: clamp(1.5rem, 4vw, 2rem);
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
	max-width:20ch;
}

#scalable .container h3 span {   font-weight: 700;  }

#scalable .container .flex-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
	max-width: 700px;
    margin-left: auto;
}

#scalable .container .flex-items .card {
    border-radius: 10px;
    border: 1px solid rgba(39, 106, 205, 0.20);
    background: #FFF;
    padding: 2em;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 1rem;
}


#scalable .container .flex-items .card:hover {
    border: 1px solid rgba(39, 106, 205, 0.40);
}


#scalable .container .flex-items .card .card-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 3rem;
}

#scalable .container .flex-items .card .card-heading h4 {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 136.023%;
    text-transform: capitalize;
    padding: 0;
    width: 64%;
}

#scalable .container .flex-items .card .svg-container {
    max-width: 40px;
	/*background: #f3f5fc;*/
	border-radius: 50%;
	transition: var(--transition);
	/*outline: 1em solid #f3f5fc;*/
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 40px;
  	min-width: 40px;
}


#scalable .container .flex-items .card .svg-container img {
    transition: var(--transition);
    width: 30px;
    height: 30px;
}

#scalable .container .flex-items .card .svg-container img.showHover {
    display:none;
}

#scalable  .container .flex-items .card:hover .svg-container {
    transition: var(--transition);
    /*outline: 1em solid #EA702429;
    background: #EA702429;*/
}


#scalable .container .flex-items .card:hover img.hideHover {
    display:none;
}

#scalable .container .flex-items .card:hover img.showHover {
    display:block;
}

#scalable .container .flex-items .card p {
    color: #000;
    font-family: var(--inter);
    font-size: var(--textSize);
    font-style: normal;
    font-weight: 400;
    line-height: 195%;
    opacity: 0.7;
}

#scalable .container .flex-items .card a {
    color: #EA7024;
    font-family: var(--inter);
    font-size: var(--textSize);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
    align-items: center;
	margin-top: auto;
}

#scalable .container .flex-items .card a svg {
    transition: var(--transition);
}

#scalable .container .flex-items .card a:hover svg {
    transform: translateX(1rem);
    transition: var(--transition);
}

/* we deliver section */
#weDeliver .container {
    padding-top: 4rem !important;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#weDeliver .container .title {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#weDeliver .container .title h3 {
    color: #071F45;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
	max-width: 25ch;
}

#weDeliver .container .title h3 span {   font-weight: 700;   }

#weDeliver .container .title p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 195%;
    max-width: 92%;
	
	max-width: 50ch;
    margin-left: auto;
}

@media(min-width:1800px){	
	#weDeliver .container .title p {
		font-size: 18px;
	}
}

#weDeliver .container .grid-items {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

#weDeliver .container .grid-items .feature {
    border-radius: 5px;
    border: 1px solid rgba(39, 106, 205, 0.20);
    background: #F3F5FC;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    flex: 1;
    min-height: 200px;
    min-width: 250px;
	position:relative;
}

#weDeliver .container .grid-items .feature a{
	position:absolute;
	width: 100%;
	height:100%;
	top:0;
	left:0;
	transition: var(--transition);
}

#weDeliver .container .grid-items .feature a:hover{
	border-radius: 5px;
	outline: 1px solid #276acd;
	transition: var(--transition);
}

#weDeliver .container .grid-items .feature .svg-container {
    max-width: 40px;
	/*background: #f3f5fc;*/
	border-radius: 50%;
	transition: var(--transition);
	/*outline: 1em solid #f3f5fc;*/
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 40px;
  	min-width: 40px;
	margin-bottom: 2rem;
    margin-top: 3rem;
}


#weDeliver .container .grid-items .feature .svg-container img {
    transition: var(--transition);
    width: 40px;
    height: 40px;

}

#weDeliver .container .grid-items .feature .svg-container img.showHover {
    display:none;
}

#weDeliver .container .grid-items .feature:hover .svg-container {
    transition: var(--transition);
    /*outline: 1em solid #EA702429;
    background: #EA702429;*/
}


#weDeliver .container .grid-items .feature:hover img.hideHover {
    display:none;
}
#weDeliver .container .grid-items .feature:hover img.showHover {
    display:block;
}

/*
#weDeliver .container .grid-items .feature img {
	max-height: 40px;
    max-width: 40px;
    margin-bottom: 2rem;
    margin-top: 3rem;
}
*/
#weDeliver .container .grid-items .feature p {
    color: #071F45;
    text-align: center;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 128.523%;
    max-width: 60%;
}

/*partnering section */
#partnering {
	max-height: 1000px !important;
}

#partnering .container {
    padding-top: 4rem !important;
    padding-bottom: 4rem;
    display: flex;
    gap: 4rem;
}

#partnering .container .title {
    display: flex;
    flex-direction: column;
    width: 40%;
}

#partnering .container .title h3 {
    color: #071F45;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
    max-width: 20ch;
}

#partnering .container .title h3 span {    font-weight: 700; }

#partnering .container .title p {
    color: #071F45;
    font-family: var(--inter);
    font-size: var(--textSize);
    font-style: normal;
    font-weight: 500;
    line-height: 188.023%;
    max-width: 70%;
	max-width: 30ch;
   font-size: clamp(13px, 1vw, 17px);
}

@media(min-width:1800px){
	#partnering .container .title p {
		font-size: 18px;
	}
}

#partnering .container .animatedSection {
    display: flex;
    gap: 3rem;
    justify-content: end;
    width: 50%;
}

#partnering .container .animatedSection .content {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    width: 100%;
}

#partnering .container .animatedSection ol {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

#partnering .container .animatedSection ol .lines {
    width: 15%;
    position: absolute;
    left: 1.3rem;
    top: 1rem;
    height: 85%;
}

#partnering .container .animatedSection ol .lines .dotted {
    position: absolute;
    width: 5px;
    height: 100%;
    border-left: 3px dotted #e7effa;
    left: 0;
}

#partnering .container .animatedSection ol .lines .blue {
    position: absolute;
    width: 5px;
    height: 0%;
    border-left: 3px solid #276ACD;
}

#partnering .container .animatedSection ol li {
    position: relative;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#partnering .container .animatedSection ol li .number {
    color: #276ACD;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.3rem);
    font-style: normal;
    font-weight: 600;
    line-height: 191.523%;
    text-transform: capitalize;
    background: #E7EFFA;
    padding: 0.3em 1em;
    border-radius: 50%;
    height: fit-content;
    transition: var(--transition);
}

#partnering .container .animatedSection ol li.active .number {
    color: #fff;
    background: #EA7024;
    transition: var(--transition);
}

#partnering .container .animatedSection ol li p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.3rem);
    font-style: normal;
    font-weight: 500;
    line-height: 128.523%;
    max-width: 36ch;
}

#partnering .container .animatedSection ol li p span {
    font-weight: 700;
}


/* whereToStart section */
#whereToStart {
    position: relative;
    background-image: url('/wp-content/uploads/2024/04/home123-scaled.webp');
    min-height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whereToStart .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #276ACDE5;
}

#whereToStart .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

#whereToStart .container div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

#whereToStart .container div h3 {
    color: #fff;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    text-align: center;
    max-width: 35ch;
}

#whereToStart .container div h3 span {    font-weight: 700;  }

#whereToStart .container div a {
    padding: 0.8em 4em;
}

@media(min-width:1800px){
	#whereToStart .container div a {
		font-size: 16px;
	}
}

/* contact section */
#contact {
    background: #F3F5FC;
}

#contact .container {
    display: flex;
    padding-top: 4rem !important;
    padding-bottom: 4rem;
    padding-left: 6rem;
    padding-right: 6rem;
    gap: 3rem;
}

#contact .container .title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#contact .container .title div h3 {
    color: #071F45;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
    max-width: 90%;
}

#contact .container .title div h3 span {    font-weight: 700;  }

#contact .container .title div p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.1rem);
    font-style: normal;
    font-weight: 500;
    line-height: 188.023%;
  max-width: 30ch;
  font-size: clamp(13px, 1vw, 17px);
}

@media(min-width:1800px){
	#contact .container .title div p {
		font-size: 18px;
	}
}

#contact .container .title .testimonial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
	
	/* */
	display:none !important;

}

#contact .container .title .testimonial > p {
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) + 0.2rem);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 85%;
}

#contact .container .title .testimonial .testimonial-client {
    display: flex;
    gap: 1rem;
}

#contact .container .title .testimonial .testimonial-client img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

#contact .container .title .testimonial .testimonial-client .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact .container .title .testimonial .testimonial-client .info .info-name {
    padding: 0;
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) - 0.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

#contact .container .title .testimonial .testimonial-client .info .info-position {
    padding: 0;
    max-width: 100%;
    color: #071F45;
    font-family: var(--inter);
    font-size: calc(var(--textSize) - 0.2rem);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.7;
}

#contact .container .form {
    /*width: 55%;*/
    padding: 2rem;
    background: white;
    border-radius: 10px;
	max-width: 700px;
   margin-left: auto;
}

#contact .container .form .gform_heading {
    display: none;
}

#contact .container .form .gform-body > div {
    gap: 1rem;
}

#contact .container .form .gform-body label {
    color: #1D263A;
    font-family: var(--inter);
    font-size: var(--textSize);
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

#contact .container .form .gform-body input,
#contact .container .form .gform-body textarea {
    border-radius: 10px;
    background: #E8EBF496;
    border: 0;
}

#contact .container .form .gform-body input::placeholder {
    color: #1D263A;
    font-family: var(--inter);
    font-size: calc(var(--textSize) - 0.1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* awards section */
#awards {
    position: relative;
}

#awards .container {
    display: flex;
    flex-direction: column;
    padding-top: 4rem !important;
    padding-bottom: 4rem;
    gap: 2rem;
}

#awards .container .title {
    display: flex;
    justify-content: center;
}

#awards .container .title h3 {
    color: #071F45;
    font-family: var(--inter);
    /*font-size: clamp(1.5rem, 4vw, 2rem);*/
	font-size: clamp(1.5rem, 2.2vw, 2.56rem);
    font-style: normal;
    font-weight: 400;
    line-height: 144.523%;
    text-transform: capitalize;
    margin-bottom: 1rem;
    max-width: 45%;
    text-align: center;
	max-width: 25ch;
}

#awards .container .title h3 span {    font-weight: 700;  }

#awards .container .awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

#awards .container .awards-grid .award {
    display: flex;
    flex-direction: column;
    border-radius: 8.376px;
    border: 1px solid rgba(39, 106, 205, 0.20);
    background: #FFF;
    padding: 2rem 1rem;
	min-height: 18rem;
}

#awards .container .awards-grid .award:hover{
	background: #F3F5FC;
}

#awards .container .awards-grid .award:hover img{background: #f3f5fc;  mix-blend-mode: darken;}

#awards .container .awards-grid .award .award-title {
    color: #133B79;
    text-align: center;
    font-family: var(--inter);
    font-size: var(--textSize);
    font-style: normal;
    font-weight: 700;
    line-height: 138.023%;
    text-transform: capitalize;
}

#awards .container .awards-grid .award .award-dates {
    color: #133B79;
    text-align: center;
    font-family: var(--inter);
    font-size: calc(var(--textSize) - 0.1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 168.523%;
    text-transform: capitalize;
	margin-bottom:auto;
}

#awards .container .awards-grid .award img {
    margin-top: auto;
    margin-bottom: 1rem;
    padding-inline: 1rem;
}

#awards .container .awards-grid .award .award-rec {
    color: #133B79;
    text-align: center;
    font-family: var(--inter);
    font-size: calc(var(--textSize) - 0.1rem);
    font-style: italic;
    font-weight: 400;
    line-height: 150.523%;
}

/* MEDIA QUERIES - TABLET AND MOBILE LAYOUT */

@media (max-width: 1000px) {
    #struggling .container {
        flex-direction: column;
    }
	
	#struggling .container > div:first-child, #struggling .container .grid-items{
		width:100%;
		padding:0;
	}
	
	#struggling .container .grid-items{
		margin-left: initial;
	}

    #techEvolving .container {
        gap: 3rem;
    }
	

    #techEvolving .container h3,
    #techEvolving .container p {
        max-width: 100%;
    }

    #scalable .container {
        flex-direction: column;
    }

    #scalable .container .left,
    #scalable .container .right {
        width: 100%;
    }
	
	#scalable .container h3 {max-width:100%; }

    #contact .container {
        padding-left: 0;
        padding-right: 0;
        gap: 2rem;
    }

    #awards .container .title h3 {
        max-width: 100%;
		margin-bottom: 0;
       margin-top: 1rem;
    }

    #awards .container .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 800px) {
    #techEvolving .container {
        flex-direction: column;
        gap: 2rem;
    }

    #techEvolving .container div {
        width: 100%;
    }

    #scalable {
        padding-bottom: 3%;
    }

    #scalable .container .right {
        display: flex;
        flex-direction: column;
    }

    #scalable .container .right .card {
        min-height: auto;
    }

    #weDeliver .container .title {
        grid-template-columns: 1fr;
    }

    #partnering .container {
        flex-direction: column;
    }

    #partnering .container .title,
    #partnering .container .animatedSection {
        width: 100%;
    }

    #partnering .container .title h3,
    #partnering .container .title p {
        max-width: 100%;
    }

    #partnering .container .animatedSection ol p {
        padding-left: 2rem;
        font-size: calc(var(--textSize) + 0.2rem);
    }

    #partnering .container .animatedSection ol li {
        align-items: start;
    }

    #whereToStart .container div h3 {
        padding-bottom: 0;
    }

    #contact .container {
        flex-direction: column;
    }

    #contact .container .title {
        width: 100%;
        gap: 2rem;
    }

    #contact .container .title div h3,
    #contact .container .title div p {
        max-width: 100%;
        margin-bottom: 0;
    }

    #contact .container .form {
        width: 100%;
        padding: 2em 1.5em;
    }

    #awards .container .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
	
	#whereToStart {  background-position-x: -20rem;	}
	
	#partnering .container .animatedSection ol .lines .blue{left: .1rem;}
	
	#struggling .container{padding-block: 2rem !important;}
	#struggling .container h3{padding-bottom:0;}
	
    #struggling .container .grid-items {
        display: flex;
        flex-direction: column;
    }

   #awards .container .awards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	
	/*#awards .container .awards-grid .award{ min-height:auto; }*/
	#awards .container .awards-grid .award img{max-width: 80%;  margin-inline: auto; margin-top: 1.5rem;}
	
	#scalable .container {
        margin-bottom: 4%;
		  padding-top: 10% !important;
		  padding-bottom: 6%;
    }
	
}

