@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
html * {
  font-size: 20px;
  text-decoration: none;
  color: #000000;
  font-family: "Space Grotesk";
}

body {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1240px;
}
@media only screen and (max-width: 1240px) {
  body {
    max-width: 86.1%;
  }
}

h1 {
  font-size: 60px;
  margin: 0px;
}

h2 {
  font-size: 40px;
  margin: 0px;
}

h3 {
  font-size: 30px;
  margin: 0px;
}

h4 {
  margin: 0px;
}

p {
  font-size: 18px;
  margin: 0px;
}

a {
  font-size: 16px;
}

.whiteColor {
  color: #ffffff;
}

.whiteBackColor {
  background-color: #ffffff;
}

.darkBackColor {
  background-color: #191A23;
}

.greenBackColor {
  background-color: #B9FF66;
}

.greyBackColor {
  background-color: #F3F3F3;
}

.imgIllustration {
  width: 100%;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 70px;
}

.headerContainer {
  display: flex;
  flex-direction: row;
  gap: 70px;
}
@media (max-width: 768px) {
  .headerContainer {
    flex-direction: column;
  }
}

.headerDescriptionContainer {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (max-width: 768px) {
  .headerDescriptionContainer .blackButton {
    width: 100%;
  }
}

.transparentButton {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 35px;
  padding-left: 35px;
  border: 1px solid;
  border-color: #000000;
  border-radius: 14px;
}

.blackButton {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 35px;
  padding-left: 35px;
  border: 1px solid;
  border-color: #000000;
  border-radius: 14px;
  background-color: #000000;
  width: fit-content;
}
.blackButton * {
  color: white;
}

.NavigationBar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.NavigationBar .navigationList {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 40px;
}
@media (max-width: 768px) {
  .NavigationBar .navigationList {
    display: none;
  }
}
.NavigationBar .mobileMenu {
  display: none;
  height: fit-content;
  padding-top: 10px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .NavigationBar .mobileMenu {
    display: block;
  }
}

.Logo {
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.LogoList {
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  list-style-type: none;
  filter: grayscale(1);
}

.HeadingAndSubHeading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.HeadingAndSubHeading h2 {
  display: inline;
  background-image: linear-gradient(to right, #B9FF66 0, #B9FF66 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 7px;
  width: fit-content;
  padding: 7px;
}
.HeadingAndSubHeading p {
  max-width: 580px;
}
@media only screen and (max-width: 768px) {
  .HeadingAndSubHeading {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

.serviceContainer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.servicesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .servicesGrid {
    grid-template-columns: auto;
  }
}
.servicesGrid .Card {
  display: flex;
  flex-direction: row;
  border: 1px solid;
  border-color: #000000;
  border-radius: 45px;
  box-shadow: 0px 5px #191A23;
  padding: 50px;
  max-width: 500px;
  justify-content: space-between;
  width: calc(100% - 100px);
}
.servicesGrid .Card .cardContent {
  display: flex;
  flex-direction: column;
  gap: 93px;
}
.servicesGrid .Card .cardContent .cardTitle h3 {
  padding: 0 15px;
  font-size: 30px;
  border-radius: 7px;
}
.servicesGrid .Card .cardContent .learnMore {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.servicesGrid .Card .mobileContainer .ImgMobile {
  display: none;
  width: 41px;
}
@media only screen and (max-width: 768px) {
  .servicesGrid .Card {
    flex-direction: column;
    gap: 27px;
  }
  .servicesGrid .Card .cardContent .learnMore {
    display: none;
  }
  .servicesGrid .Card .mobileContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .servicesGrid .Card .mobileContainer .ImgMobile {
    display: block;
    width: 41px;
  }
  .servicesGrid .Card .mobileContainer .ImgService {
    width: 100%;
  }
}

.titleWhiteBackColor {
  display: inline;
  background-image: linear-gradient(to right, #ffffff 0, #ffffff 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.titleGreenBackColor {
  display: inline;
  background-image: linear-gradient(to right, #B9FF66 0, #B9FF66 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.titleDarkBackColor {
  display: inline;
  background-image: linear-gradient(to right, #191A23 0, #191A23 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.FreeProposal {
  display: flex;
  justify-content: space-between;
  background-color: #F3F3F3;
  border-radius: 45px;
}
.FreeProposal .FreeProposalContent {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 500px;
  padding: 50px;
}
.FreeProposal .FreeProposalContent .blackButton .labelProposal::after {
  content: "Get your free proposal";
}
.FreeProposal .FreeProposalImg {
  margin: -55px 0;
}
@media only screen and (max-width: 768px) {
  .FreeProposal .FreeProposalContent .blackButton .labelProposal::after {
    content: "Get your proposal";
  }
  .FreeProposal .FreeProposalImg {
    display: none;
  }
}

.CaseStudies {
  display: flex;
  flex-direction: row;
  border-radius: 45px;
  padding: 100px;
  width: fit-content;
}
.CaseStudies .CaseStudiesContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.CaseStudies .CaseStudiesContainer p {
  margin: 0px;
  color: #ffffff;
  font-size: 18px;
  min-width: 286px;
}
.CaseStudies .CaseStudiesContainer img {
  max-width: 140px;
}
@media only screen and (max-width: 768px) {
  .CaseStudies {
    gap: 20px;
    background-color: transparent;
    padding: 0px;
  }
  .CaseStudies .CaseStudiesContainer {
    background-color: #191A23;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 42px;
    padding-bottom: 42px;
    border-radius: 45px;
  }
  .CaseStudies .CaseStudiesContainer p {
    min-width: 250px;
    font-size: 16px;
  }
  .CaseStudies hr {
    display: none;
  }
}

.CaseStudiesSplit {
  margin: 0 60px;
}

.OurWorkingProcess {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.OurWorkingProcessCard {
  border-radius: 45px;
  border: 1px solid;
  border-color: #191A23;
  box-shadow: 0px 5px #191A23;
  padding-top: 40px;
  padding-left: 60px;
  padding-bottom: 40px;
  padding-right: 60px;
}
.OurWorkingProcessCard .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.OurWorkingProcessCard .header .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
.OurWorkingProcessCard .header .title p {
  margin: 0px;
  width: fit-content;
  font-weight: 500;
}
.OurWorkingProcessCard .header .title .numberSized {
  font-size: 60px;
}
.OurWorkingProcessCard .header .title .titleSized {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .OurWorkingProcessCard {
    padding: 30px;
  }
  .OurWorkingProcessCard .header {
    align-items: center;
  }
  .OurWorkingProcessCard .header .title .numberSized {
    font-size: 30px;
  }
  .OurWorkingProcessCard .header .title .titleSized {
    font-size: 18px;
    min-width: 203px;
  }
  .OurWorkingProcessCard .header img {
    width: 30px;
    height: 30px;
  }
}

.teamContainer .teamGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.teamContainer .teamGrid .teamCard {
  border-radius: 45px;
  border: 1px solid;
  border-color: #191A23;
  box-shadow: 0px 5px #191A23;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.teamContainer .teamGrid .teamCard .teamHeaderContainer {
  position: relative;
}
.teamContainer .teamGrid .teamCard .teamHeaderContainer .teamHeaderGrid {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: flex-end;
}
.teamContainer .teamGrid .teamCard .teamHeaderContainer .teamHeaderGrid .nameAndPoste * {
  margin: 0px;
}
.teamContainer .teamGrid .teamCard .teamHeaderContainer .TeamLinkedinLink {
  position: absolute;
  top: 10px;
  right: 10px;
}
.teamContainer .teamGrid .teamCard .teamHrSplit {
  margin-top: 28px;
  margin-bottom: 28px;
}
.teamContainer .teamGrid .teamCard .teamDescription {
  margin-bottom: 1;
}
.teamContainer .containerSeeAllTeam {
  display: flex;
  flex-direction: row;
  justify-content: end;
  width: 100%;
  margin-top: 45px;
}
@media only screen and (max-width: 768px) {
  .teamContainer .teamGrid {
    grid-template-columns: 1fr;
  }
  .teamContainer .containerSeeAllTeam .blackButton {
    width: 100%;
  }
}

.testimonialsContainer {
  display: flex;
  flex-direction: column;
  gap: 124px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 100px;
  padding-bottom: 60px;
}
.testimonialsContainer * {
  color: #ffffff;
}
.testimonialsContainer .testimonialsVerticalGrid {
  display: grid;
  gap: 124px;
  width: fit-content;
  justify-content: center;
  align-items: center;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px;
  width: max-content;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card {
  width: fit-content;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble {
  width: fit-content;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble .rectangle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  background: #191A23;
  border: 1px solid;
  border-color: #B9FF66;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble .rectangle p {
  min-width: 270px;
  max-width: 502px;
  margin: 55px;
  font-size: 18px;
}
@media only screen and (max-width: 502px) {
  .testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble .rectangle p {
    max-width: min-content;
    margin: 30px;
  }
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble .triangle {
  position: relative;
  left: 50px;
  bottom: 1px;
  width: 0;
  height: 0;
  border-right: 21px solid transparent;
  border-left: 21px solid transparent;
  border-top: 21px solid #B9FF66;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card .Bubble .triangle .innerTriangle {
  position: relative;
  left: -20px;
  top: -21px;
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #191A23;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card h4 {
  color: #B9FF66;
  width: auto;
  margin-left: 10%;
}
.testimonialsContainer .testimonialsVerticalGrid .CardsGrid .Card p {
  width: 100%;
  margin-left: 10%;
}
.testimonialsContainer .testimonialsNavigationContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 580px;
}
.testimonialsContainer .testimonialsNavigationContainer .testimonialsNavigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.contactUsContainer {
  position: relative;
  background-color: #F3F3F3;
  border-radius: 45px;
  padding-top: 60px;
  padding-right: 100px;
  padding-bottom: 80px;
  padding-left: 100px;
}
.contactUsContainer .ContainerForm {
  max-width: 556px;
}
.contactUsContainer .ContainerForm ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contactUsContainer .ContainerForm ul li {
  display: flex;
  flex-direction: column;
}
.contactUsContainer .ContainerForm ul li .LabelInputContainer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contactUsContainer .ContainerForm ul li .LabelInputContainer input {
  min-height: 59px;
  padding-left: 30px;
}
.contactUsContainer .ContainerForm ul li .LabelInputContainer textarea {
  min-height: 190px;
  padding-left: 30px;
  padding-top: 18px;
  resize: none;
}
.contactUsContainer .ContainerForm ul li .LabelInputContainer .InputForm {
  border-radius: 14px;
  border: 1px solid;
}
.contactUsContainer .ContainerForm ul li .verticalRadioInput {
  display: flex;
  flex-direction: row;
  gap: 35px;
}
.contactUsContainer .ContainerForm ul li .verticalRadioInput .radioWithLabel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.contactUsContainer .ContainerForm ul li .verticalRadioInput .radioWithLabel .customRadio {
  margin: 0px;
  width: 28px;
  height: 28px;
}
.contactUsContainer .ContainerForm ul li .verticalRadioInput .radioWithLabel label {
  font-size: 18px;
}
.contactUsContainer .ContainerForm ul li .blackButton {
  width: 100%;
}
.contactUsContainer .contactUsIllustration {
  position: absolute;
  background-image: url("/images/contactUsImage.svg");
  width: 691px;
  height: 649px;
  right: -325px;
  top: 95px;
}

footer {
  background-color: #191A23;
  border-radius: 45px;
  padding-left: 60px;
  padding-top: 55px;
  padding-right: 60px;
  padding-bottom: 50px;
}
footer .NavigationBarAndContactUsContainer {
  display: flex;
  flex-direction: column;
  gap: 66px;
}
footer .NavigationBarAndContactUsContainer .NavigationBar .navigationList li a {
  font-size: 18px;
  color: white;
  text-decoration: underline;
}
footer .NavigationBarAndContactUsContainer .NavigationBar .ExternalLink {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
footer .NavigationBarAndContactUsContainer .footerContent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer .NavigationBarAndContactUsContainer .footerContent .contactContainer {
  display: flex;
  flex-direction: column;
  gap: 27px;
  max-width: 332px;
}
footer .NavigationBarAndContactUsContainer .footerContent .contactContainer .Heading {
  background-color: #B9FF66;
  width: fit-content;
  border-radius: 7px;
  padding-left: 7px;
  padding-right: 7px;
}
footer .NavigationBarAndContactUsContainer .footerContent .contactContainer .InfoContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .NavigationBarAndContactUsContainer .footerContent .contactContainer .InfoContainer p {
  color: #ffffff;
}
footer .NavigationBarAndContactUsContainer .footerContent .subscribeNewsContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-left: 40px;
  padding-top: 58px;
  padding-right: 40px;
  padding-bottom: 58px;
  width: fit-content;
  background-color: #292A32;
  border-radius: 14px;
}
footer .NavigationBarAndContactUsContainer .footerContent .subscribeNewsContainer .EmailSubscribe {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 35px;
  padding-left: 35px;
  border-radius: 14px;
  background-color: #292A32;
  border: 1px solid;
  border-color: #ffffff;
}
footer .NavigationBarAndContactUsContainer .footerContent .subscribeNewsContainer .EmailSubscribe::placeholder {
  color: #ffffff;
}
footer .NavigationBarAndContactUsContainer .footerContent .subscribeNewsContainer .GreenButton {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 35px;
  padding-left: 35px;
  border: 1px solid;
  border-color: #000000;
  border-radius: 14px;
  background-color: #B9FF66;
  width: fit-content;
}
footer .NavigationBarAndContactUsContainer .footerContent .subscribeNewsContainer .GreenButton * {
  color: #000000;
}
footer .lineAndText {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
footer .lineAndText hr {
  width: 100%;
}
footer .lineAndText .policy {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
footer .lineAndText .policy p {
  font-size: 18px;
  color: #ffffff;
}
footer .lineAndText .policy .underline {
  font-size: 18px;
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
