#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
}
#popup #popupContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 80px 3%;
  border-radius: 15px;
  text-align: center;
}
#popup #popupContent h2 {
  margin-bottom: 20px;
  font-size: 25px;
  font-family: "Inter", sans-serif;
  color: red;
}
#popup #popupContent p {
  font-weight: 600;
}
#popup #popupContent button {
  margin-top: 20px;
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 15px;
  transition: all 300ms;
}
#popup #popupContent button:hover {
  background-color: rgb(206, 0, 0);
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
section.home {
  height: 100%;
}
section.home .homeContainer {
  display: flex !important;
  height: 470px;
  width: 100%;
}
section.home .homeContainer .homeBoxLeft {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0 3%;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle {
  padding: 50px 0;
  text-align: center;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
  font-size: 45px;
  font-family: "Inter", sans-serif;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle .title1 {
  margin-bottom: 15px;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle .title2 {
  font-size: 38px;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
  margin-top: 10px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
  font-size: 45px;
  color: var(--colorBlueFonce);
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
section.home .homeContainer .homeBoxLeft .homeBoxTitle .span2 {
  color: var(--colorBlueClair);
}
section.home .homeContainer .homeBoxLeft .homeButton {
  text-align: center;
  margin-top: 30px;
}
section.home .homeContainer .homeBoxLeft .homeButton a {
  display: inline-block;
  font-size: 15px;
  background-color: var(--colorBlueFonce);
  color: var(--colorWhite);
  padding: 13px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 250ms ease-in-out;
}
section.home .homeContainer .homeBoxLeft .homeButton a:hover {
  background-color: #1b4eae;
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.1);
}
section.home .homeContainer .imgWrapper {
  display: flex;
  justify-content: center;
  width: 50%;
}
section.home .homeContainer .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 {
  width: 100%;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url("../../app/images/interview_copy.jpeg") !important;
  background-position-y: 35%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: filter 300ms ease-in-out;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer:hover {
  filter: grayscale(50%);
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer:hover .imgWrapperBoxTitle h2 {
  color: #d4d4d4 !important;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer:hover .imgWrapperBoxTitle .imgWrapperBoxPlay {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer:hover .imgWrapperBoxTitle .imgWrapperBoxPlay .imgWrapperBoxIcon {
  background-color: #cfcfcf !important;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 40px;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle h2 {
  font-size: 40px;
  color: #fff;
  transition: color 300ms ease-in-out;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle .imgWrapperBoxPlay {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 10px 20px 10px 15px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin-top: 30px;
  transition: all 300ms ease-in-out;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle .imgWrapperBoxPlay .imgWrapperBoxIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle .imgWrapperBoxPlay .imgWrapperBoxIcon i {
  font-size: 14px;
  color: rgba(71, 71, 71, 0.7);
}
section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle .imgWrapperBoxPlay p {
  color: #fff;
  font-size: 14px;
}
section.home .homeContainer .imgWrapper .imgWrapperChange2 {
  width: 100%;
}
section.home .homeContainer .imgWrapper .imgWrapperChange2 img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
section.home .solution {
  width: 100%;
  border-top: 1px #d4d4d4 solid;
  border-bottom: 1px #d4d4d4 solid;
}
section.home .solution .solutionBox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
section.home .solution .solutionBox .solutionLeft, section.home .solution .solutionBox .solutionRight {
  display: flex;
  justify-content: center;
}
section.home .solution .solutionBox .homeSolutionBox {
  margin: 20px;
  width: 100%;
}
section.home .solution .solutionBox .homeSolutionBox:hover {
  color: var(--colorBlueFonce);
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent .homeSolutionIcon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--first-color-lighten);
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent:hover i {
  color: var(--colorBlueFonce);
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent:hover p {
  color: var(--colorBlueFonce);
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent i {
  font-size: 23px;
  transition: all 250ms ease-in-out;
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent img {
  height: 27px;
}
section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent p {
  font-size: 14px;
  font-weight: 600;
  transition: all 250ms ease-in-out;
}
section.home .solution .solutionBox .homeSolutionBox p {
  font-size: 14px;
}
section.home .homePartner {
  width: 100%;
  padding: 10px 3%;
}
section.home .homePartner .homePartnerContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
section.home .homePartner .homePartnerContainer .partnerLeft {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex {
  display: flex;
  align-items: center;
  gap: 40px;
}
section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerLogo img {
  height: 110px;
}
section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent h1 {
  color: var(--colorBlueFonce);
  font-size: 17px;
  font-family: "Inter", sans-serif;
  margin-bottom: 5px;
}
section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent p {
  font-size: 13px;
  color: var(--colorBlueFonce);
}
section.home .homePartner .homePartnerContainer .partnerRight {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
}
section.home .homePartner .homePartnerContainer .partnerRight h1 {
  color: var(--colorBlueFonce);
  font-size: 17px;
  font-family: "Inter", sans-serif;
  margin-bottom: 5px;
}
section.home .homePartner .homePartnerContainer .partnerRight img {
  height: 80px;
}

section.services {
  padding: 50px 5%;
  background-color: #fbf9f7;
}
section.services h1 {
  font-size: 25px;
  margin-bottom: 30px;
}
section.services .serviceContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
section.services .serviceContainer .serviceBox {
  border-radius: 30px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 5px 25px #e0e1e6;
  transition: all 250ms ease-in-out;
}
section.services .serviceContainer .serviceBox:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 25px #c5c6cb;
}
section.services .serviceContainer .serviceBox:hover .serviceIcon {
  background-color: #2769e5;
}
section.services .serviceContainer .serviceBox:hover .serviceTitle h2 {
  color: #2769e5;
}
section.services .serviceContainer .serviceBox .serviceIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  height: 45px;
  width: 45px;
  background-color: #000;
  transition: all 250ms ease-in-out;
}
section.services .serviceContainer .serviceBox .serviceIcon i {
  color: #fff;
}
section.services .serviceContainer .serviceBox .serviceContent .serviceTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
  gap: 15px;
}
section.services .serviceContainer .serviceBox .serviceContent .serviceTitle i {
  font-size: 30px;
  color: #2769e5;
}
section.services .serviceContainer .serviceBox .serviceContent .serviceTitle h2 {
  transition: all 250ms ease-in-out;
}
section.services .serviceContainer .serviceBox .serviceContent .serviceText p {
  line-height: 25px;
  font-size: 15px;
}

@media screen and (max-width: 1510px) {
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 42px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 18px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 42px;
  }
  section.home .homeContainer .homeBoxLeft .homeButton a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1360px) {
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 36px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 17px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 36px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle .span3 {
    font-size: 20px;
  }
  section.home .homeContainer .homeBoxLeft .homeButton a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1170px) {
  section.home .homeContainer {
    flex-direction: column;
    height: 100%;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: center;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 900px;
    margin: 0 auto;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 45px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 20px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 45px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle .span3 {
    font-size: 25px;
  }
  section.home .homeContainer .video {
    width: 100%;
    height: 300px;
  }
  section.home .homeContainer .imgWrapper {
    width: 100%;
    height: 300px;
  }
  section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer {
    border-radius: 0;
  }
  section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  section.home .homeContainer .imgWrapperChange2 img {
    border-radius: 0 !important;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
  section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer:hover .imgWrapperBoxTitle h2 {
    margin-bottom: 0;
  }
  section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox .imgWrapperBoxTitle h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 850px) {
  section.home .solution .solutionBox {
    display: block !important;
  }
}
@media screen and (max-width: 910px) {
  section.home .homeContainer {
    flex-direction: column;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: center;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 800px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 36px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 17px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 35px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle .span3 {
    font-size: 20px;
  }
  section.home .homeContainer .homeBoxRight {
    width: 100%;
    height: 50%;
    height: 100%;
  }
  section.home .solution .solutionBox {
    display: block !important;
  }
  section.home .solution .solutionBox .homeSolutionBox .homeSolutionContent p {
    font-size: 13px;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent h1 {
    font-size: 15px;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent p {
    font-size: 13px;
  }
  section.home .homePartner .homePartnerContainer .partnerRight .partnerFlex h1 {
    font-size: 15px;
  }
  section.home .homePartner .homePartnerContainer .partnerRight .partnerFlex img {
    height: 70px;
  }
  section.services .serviceContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 850px) {
  #popup #popupContent h2 {
    font-size: 20px;
  }
  #popup #popupContent p {
    font-size: 15px;
  }
}
@media screen and (max-width: 680px) {
  section.home .homeContainer .imgWrapper .imgWrapperChange1 .imgWrapperContainer .imgWrapperBox {
    padding: 40px 5%;
  }
  section.services .serviceContainer {
    grid-template-columns: repeat(1, 1fr);
  }
  section.services .serviceContainerBottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 605px) {
  #popup #popupContent h2 {
    font-size: 20px;
  }
  #popup #popupContent p {
    font-size: 14px;
  }
}
@media screen and (max-width: 730px) {
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 31px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 17px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 31px;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent h1 {
    font-size: 15px;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent p {
    font-size: 13px;
  }
  section.home .homePartner .homePartnerContainer .partnerRight .partnerFlex h1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 605px) {
  section.home .homeContainer {
    flex-direction: column;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: center;
  }
  section.home .homeContainer .homeBoxRight {
    display: none;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerLogo {
    margin-right: 0px;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerLogo img {
    height: 90px !important;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex {
    justify-content: center;
  }
  section.home .homePartner .homePartnerContainer .partnerLeft .partnerFlex .partnerContent {
    display: none;
  }
  section.home .homePartner .homePartnerContainer .partnerRight .partnerFlex h1 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 450px;
    margin: 0;
    text-align: center;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 31px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 31px;
  }
  section.home .homeContainer .homeBoxRight {
    width: 100%;
    height: 50%;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
}
@media screen and (max-width: 470px) {
  section.home .homeContainer {
    flex-direction: column;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: start;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 450px;
    margin: 0;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 28px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 15px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 28px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle .span3 {
    font-size: 17px;
    font-style: italic;
    color: #000;
  }
  section.home .homeContainer .homeBoxRight {
    width: 100%;
    height: 50%;
  }
  section.home .solution .solutionBox .solutionLeft .homeSolutionBox .homeSolutionIcon, section.home .solution .solutionBox .solutionRight .homeSolutionBox .homeSolutionIcon {
    width: 45px;
    height: 45px;
  }
  section.home .solution .solutionBox .solutionLeft .homeSolutionBox .homeSolutionIcon i, section.home .solution .solutionBox .solutionRight .homeSolutionBox .homeSolutionIcon i {
    font-size: 17px;
  }
  section.home .solution .solutionBox .solutionLeft .homeSolutionBox p, section.home .solution .solutionBox .solutionRight .homeSolutionBox p {
    font-size: 12px;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
}
@media screen and (max-width: 430px) {
  section.home .homeContainer {
    flex-direction: column;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: start;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 450px;
    margin: 0;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 26px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 14px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 26px;
  }
  section.home .homeContainer .homeBoxRight {
    width: 100%;
    height: 50%;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
}
@media screen and (max-width: 400px) {
  section.home .homeContainer {
    flex-direction: column;
  }
  section.home .homeContainer .homeBoxLeft {
    width: 100%;
    text-align: start;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle {
    max-width: 450px;
    margin: 0;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h1 {
    font-size: 25px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle h2 {
    font-size: 14px;
  }
  section.home .homeContainer .homeBoxLeft .homeBoxTitle span {
    font-size: 25px;
  }
  section.home .homeContainer .homeBoxRight {
    width: 100%;
    height: 50%;
  }
  section.home .homePartner {
    padding: 10px 3%;
  }
}/*# sourceMappingURL=home.css.map */