/*//////////////////////////////// GENERAL CSS #020E1E #E90708 //////////////////////////////////////////////*/

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sofia+Sans:ital,wght@0,1;0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,1;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%; /*1rem = 10px; 10px/16px = 62.5%*/
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  background: linear-gradient(105.37deg, #faebcd 0%, #f7c873 100%);
  overflow: hidden;
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  color: rgba(52, 63, 82, 1);
}

a {
  text-decoration: none;
  color: rgba(67, 67, 67, 1);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 150rem;
  padding-left: 5rem;
  padding-right: 5rem;
  margin: 0 auto;
}

.nav-container, .footer-container {
  max-width: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  margin: 0 auto;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  padding: 5px;
  z-index: 700;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: rgb(153, 153, 153);
  margin: 3px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {    
  display: none;
  background-color: rgba(67, 67, 67, 1);    
  position: fixed;
  padding-top: 10rem;    
  top: 0;
  left: 0;    
  width: 100%;
  height: 100%;    
  flex-direction: column;
  align-items: center;    
  z-index: 300;
  /* border-radius: 0 0 34.8rem 0; */
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  padding: 10px 0;
  color: rgba(250, 235, 205, 1);
  font-size: 2.9rem;
  line-height: 3.5rem;
  font-weight: 600;
}

.hamburger.active .bar:first-child {    
  transform: rotate(-45deg) translate(-6px, 8px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:last-child {
  transform: rotate(45deg) translate(-5px, -6px);
}

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

.flag-content {
  display: none;
}

.flag-content.active {
  display: block;
  background: #ffffff;
  position: fixed;
  border-radius: 8px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 3000;
  padding-right: 2rem;
  padding-bottom: 2rem;
  overflow: auto;
  color: #312f2f;
}

#flag-container.active {
  background-color: white;
}

#closeLangButton {
  font-size: 5rem;
  position: absolute;
  top: -2rem;
  right: 0;
  padding-right: 5rem;
  cursor: pointer;
}

.textLeftHero {
  position: relative;
}

.eclipseOne {
  position: absolute;
  right: -15rem;
  top: 13rem;
  z-index: -1;
}

.eclipseTwo {
  position: absolute;
  left: 15rem;
  top: 95rem;
  z-index: -1;
}

.eclipseThree {
  position: absolute;
  z-index: -1;
  right: 15rem;
}

/*///////////////////// FLAGS ///////////////////////////*/

.langTitle {
  margin-left: 2rem;
  margin-top: 2rem;
}

.langTitle h6 {
  font-size: 2.4rem;
  line-height: 2.9rem;
  font-weight: 500;
}

.flagsBox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}

.flagsBox img {
  max-width: 100%;
  max-height: 100%;
}

.leftFlagMobile {
  display: flex;
  gap: 2rem;
}

.rightFlagMobile {
  display: flex;
  gap: 2rem;
}

.lineOne {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bulgarianBox {
  display: flex;
  gap: 1rem;
}

.chineseBox {
  display: flex;
  gap: 1rem;
}

.czechBox {
  display: flex;
  gap: 1rem;
}

.danishBox {
  display: flex;
  gap: 1rem;
}

.dutchBox {
  display: flex;
  gap: 1rem;
}

.englishBox {
  display: flex;
  gap: 1rem;
}

.estonianBox {
  display: flex;
  gap: 1rem;
}

.finnishBox {
  display: flex;
  gap: 1rem;
}

.lineTwo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.frenchBox {
  display: flex;
  gap: 1rem;
}

.germanBox {
  display: flex;
  gap: 1rem;
}

.greekBox {
  display: flex;
  gap: 1rem;
}

.hungarianBox {
  display: flex;
  gap: 1rem;
}

.indonesianBox {
  display: flex;
  gap: 1rem;
}

.italianBox {
  display: flex;
  gap: 1rem;
}

.japaneseBox {
  display: flex;
  gap: 1rem;
}

.koreanBox {
  display: flex;
  gap: 1rem;
}

.lineThree {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.latvianBox {
  display: flex;
  gap: 1rem;
}

.lithuanianBox {
  display: flex;
  gap: 1rem;
}

.norwegianBox {
  display: flex;
  gap: 1rem;
}

.polishBox {
  display: flex;
  gap: 1rem;
}

.portugeseBox {
  display: flex;
  gap: 1rem;
}

.romanianBox {
  display: flex;
  gap: 1rem;
}

.russianBox {
  display: flex;
  gap: 1rem;
}

.slovakBox {
  display: flex;
  gap: 1rem;
}

.lineFour {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slovenianBox {
  display: flex;
  gap: 1rem;
}

.spanishBox {
  display: flex;
  gap: 1rem;
}

.swedishBox {
  display: flex;
  gap: 1rem;
}

.swerishBox {
  display: flex;
  gap: 1rem;
}

.turkishBox {
  display: flex;
  gap: 1rem;
}

.ukranianBox {
  display: flex;
  gap: 1rem;
}

/*///////////////////// NAVBAR ///////////////////////////*/

.navbarWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.hamburgerWrapper {
  display: none;
}

.navLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.navLinks a {
  color: rgba(67, 67, 67, 1);
  font-size: 2.4rem;
  font-weight: 700;
}

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

.companyLogoFooter {
  max-width: 100%;
  text-align: center;
}

.companyLogoFooter img {
  max-width: 100%;
  height: auto;
}

.navBtns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logInBtn {
  background: rgba(247, 200, 115, 1);
  padding: 1.4rem 3.7rem 1.4rem 3.7rem;
  display: inline-block;
  text-align: center;
  border-radius: 0.8rem;
}

.logInBtn p {
  color: rgba(67, 67, 67, 1);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6%;
}

.joinNowBtn {
  background: #e90708;
  padding: 1.4rem 2.5rem 1.4rem 2.5rem;
  display: inline-block;
  text-align: center;
  border: 2px solid #e90708;
}

.joinNowBtn p {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 6%;
}

.signUpBtn {
  padding: 1.4rem 3.7rem 1.4rem 3.7rem;
  display: inline-block;
  text-align: center;
  background: rgba(67, 67, 67, 1);
  border-radius: 0.8rem;
}

.signUpBtn p {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.blurCircleGreen {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(30, 195, 176, 0.3384);
  border-radius: 50%;
  overflow: hidden;
  top: -15rem;
  left: -15rem;
  z-index: -1;
  filter: blur(50px);
}

.blurCirclePurple {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(152, 30, 195, 0.5112);
  border-radius: 50%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(50px);
}

.imgRightHero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*////////////////// HERO SECTION ///////////////////////////
*/

.heroSection {    
  padding-top: 130px;
  padding-bottom: 13rem;    
  position: relative;
  max-width: 140rem;    
  margin: auto;
}

.heroImgLeft {
  flex: 0 0 60%;
}

.heroImgLeft img {
  max-width: 100%;
  height: auto;
}

.heroWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 4rem;
}

.heroTextRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  padding-top: 10rem;
}

.textLeftHero {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  max-width: 110rem;
  padding-top: 5rem;
}

.textLeftHero h1 {
  font-size: 5.6rem;
  line-height: 6.7rem;
  font-weight: 900;
  text-align: center;
  color: rgba(67, 67, 67, 1);
}

.subheading {
  font-size: 3.5rem;
  line-height: 4.2rem;
  font-weight: 700;
  max-width: 85rem;
  text-align: center;
  color: rgba(52, 63, 82, 1);
}

.textLeftHero img {
  padding-top: 7rem;
}

.startBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2.5rem 1.4rem 2.5rem;
  background: rgba(247, 200, 115, 1);
  border-radius: 0.8rem;
  max-width: 30rem;
  cursor: pointer;
}

.startBtn p {
  color: rgba(67, 67, 67, 1);
  font-size: 2rem;
  font-weight: 700;
}
/*////////////////// INFO SECTION ///////////////////////////
*/

.infoSection {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(254, 254, 254, 1);
}

.infoSectionWrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.infoSectionTextLeft {
  max-width: 60rem;
}

.infoSectionTextLeft h3 {
  font-size: 3.5rem;
  line-height: 4.2rem;
  font-weight: 700;
  padding-bottom: 3rem;
}

.infoSectionTextLeft p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 500;
}

/*////////////////// FEATURES AI SECTION ///////////////////////////
*/

.featuresAiSection {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(250, 235, 205, 1);
}

.featuresAiSection h2 {
  text-align: center;
  font-size: 5.2rem;
  line-height: 6.2rem;
  max-width: 110rem;
  margin: auto;
}

.featuresWrapper {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.featuresCardUpper {
  display: flex;
  gap: 2rem;
}

.featuresCardLower {
  display: flex;
  gap: 2rem;
}

.featuresCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-radius: 6.6rem 0.8rem 0.8rem 0.8rem;
  padding: 5.6rem 2.4rem 2.4rem 2.4rem;
  position: relative;
  max-width: 44rem;
}

.featuresCard h4 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 3.8rem;
  padding-bottom: 2rem;
}

.featuresCard p {
  font-size: 2rem;
  line-height: 2.8rem;
}

.featuresCard img {
  padding-bottom: 2rem;
}

.circleFeatures {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(152, 30, 195, 0.5112);
  border-radius: 50%;
  overflow: hidden;
  top: 0;
  left: 30rem;
  z-index: -1;
  filter: blur(50px);
}

.dividerImgAi {
  padding-top: 10rem;
  text-align: center;
}

.dividerImgAi img {
  width: 100%;
}

/*////////////////// INFO SECTION ///////////////////////////
*/

.infoReverseSection {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(254, 254, 254, 1);
}

.infoReverseSectionWrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.infoReverseSectionTextLeft {
  max-width: 60rem;
}

.infoReverseSectionTextLeft h3 {
  font-size: 3.5rem;
  line-height: 4.2rem;
  font-weight: 700;
  padding-bottom: 3rem;
}

.infoReverseSectionTextLeft p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 500;
}
/*////////////////// SMALL SECTION ///////////////////////////
*/

.smallSection {
  padding-top: 20rem;
  padding-bottom: 15rem;
}

.smallSectionWrapper {
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100rem;
  margin: auto;
}

.smallSectionWrapper h3 {
  font-size: 3.8rem;
  line-height: 4.6rem;
  text-align: center;
}

.smallSectionWrapper p {
  font-size: 2.4rem;
  line-height: 2.9rem;
  text-align: center;
  font-weight: 600;
}

/*////////////////// DATA SECTION ///////////////////////////
*/

.dataSectionWrapper {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
}

.dataSectionTextRight {
  max-width: 58rem;
}

.dataSectionTextRight h3 {
  font-size: 3.8rem;
  line-height: 4.6rem;
  padding-bottom: 3rem;
}

.dataSectionTextRight p {
  font-size: 2rem;
  line-height: 2.8rem;
}

/*////////////////// TESTIMONIALS SECTION ///////////////////////////
*/

.testimonialsSection h3 {
  text-align: center;
  padding-bottom: 5rem;
  font-size: 3.8rem;
  line-height: 4.6rem;
}

.testimonialsSection {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.testimonialsSectionWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonialsCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 8px;
  padding: 3.2rem;
  max-width: 40rem;
}

.testimonialsCard h4 {
  font-size: 3.2rem;
  line-height: 3.8rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.testimonialsCard p {
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
}

.jobTitle {
  padding-bottom: 2rem;
}

/*////////////////// PRICING SECTION ///////////////////////////
*/

.pricingSection {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(253, 253, 253, 1);
}

.pricingTitle {
  text-align: center;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 4.9rem;
  color: rgba(52, 63, 82, 1);
}

.pricingCardsWrapper {
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 5rem;
}

.pricingCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 0rem 0rem 1.6rem 0rem;
  background: transparent;
  position: relative;
  color: #ffffff;
  border: 2px solid rgba(247, 200, 115, 1);
  border-radius: 8px;
  width: fit-content;
}

.otherPartCard {
  padding: 4rem;
}

.registerBtn {
  background: rgba(247, 200, 115, 1);
  padding: 1.4rem 2.5rem 1.4rem 2.5rem;
  border-radius: 0.8rem;
  position: absolute;
  bottom: 10rem;
  left: 6rem;
}

.registerBtn p {
  color: rgba(67, 67, 67, 1);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.pricingCardPrice {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bigPrice {
  font-size: 5.6rem;
  line-height: 6rem;
  font-weight: 900;
  color: rgba(67, 67, 67, 1);
  text-align: left;
}

.daysAcess {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-align: left;
  color: rgba(52, 63, 82, 1);
}

.daysTrial {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 600;
  text-align: left;
  color: rgba(52, 63, 82, 1);
  padding-bottom: 4rem;
}

.custom-bullet-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.custom-bullet-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  color: rgba(52, 63, 82, 1);
  white-space: nowrap;
}

.custom-bullet-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(247, 200, 115, 1);
  background-size: 20px 20px;
  margin-right: 10px;
}

.noBullet {
  opacity: 0;
}

.packageOne {
  background: rgba(67, 67, 67, 1);
  padding: 0.6rem 1.2rem 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  max-width: 50%;
}

.packageOne h5 {
  font-size: 2rem;
  line-height: 3.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.packageTwo {
  background: rgba(67, 67, 67, 1);
  padding: 0.6rem 1.2rem 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  max-width: 100%;
}

.packageTwo h5 {
  font-size: 2rem;
  line-height: 3.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.packageThree {
  background: rgba(67, 67, 67, 1);
  padding: 0.6rem 1.2rem 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  max-width: 50%;
}

.packageThree h5 {
  font-size: 2rem;
  line-height: 3.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.pricingCardFeatures {
  padding-bottom: 5rem;
}

/*////////////////// FOOTER SECTION ///////////////////////////
*/

footer {
  border-top: #ffffff 1px solid;
  background: rgba(250, 235, 205, 1);
}

.footerWrapper {
  display: flex;
  color: rgba(67, 67, 67, 1);
  gap: 5rem;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.usefulLinks {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.usefulLinks h5 {
  font-size: 2.9rem;
  line-height: 3.5rem;
  font-weight: 600;
}

.usefulLinks a {
  font-size: 2.4rem;
  line-height: 2.9rem;
  font-weight: 500;
  color: rgba(67, 67, 67, 1);
}

.contactInformation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contactInformation h5 {
  font-size: 2.9rem;
  line-height: 3.5rem;
  font-weight: 600;
}

.contactInformation p {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.companyLogoFooter img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.visaFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footerText {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: rgba(67, 67, 67, 1) solid 1px;
}

.footerText p {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: rgba(67, 67, 67, 1);
}

/*////////////////// ABOUT US CSS ///////////////////////////
*/

.titleAboutUsWrapper {
  position: relative;
}

.blurCircleGreenAboutUs {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(30, 195, 176, 0.3384);
  border-radius: 50%;
  overflow: hidden;
  top: -20rem;
  left: -60rem;
  z-index: -1;
  filter: blur(50px);
}

.blurCirclePurpleAboutUs {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(152, 30, 195, 0.5112);
  border-radius: 50%;
  overflow: hidden;
  top: 20rem;
  left: 50rem;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(50px);
}

.aboutUsTitle {
  font-size: 6.4rem;
  font-weight: 800;
  text-align: center;
  color: rgba(67, 67, 67, 1);
}

.aboutUsContentWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 15rem;
}

.leftTextBox {
  flex: 1;

  box-sizing: border-box;
}

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

.ourStoryBox h5 {
  font-size: 3.5rem;
  line-height: 4.2rem;
  color: rgba(67, 67, 67, 1);
  padding-bottom: 2rem;
}

.ourStoryBox ul {
  font-size: 1.8rem;
  line-height: 2.5rem;
  padding-bottom: 2rem;
  color: rgba(67, 67, 67, 1);
  font-weight: 500;
  padding-left: 3rem;
}

.ourMissionBox h5 {
  font-size: 2.9rem;
  line-height: 3.5rem;
  color: #fbd600;
  padding-bottom: 2rem;
}

.ourMissionBox p {
  font-size: 2rem;
  line-height: 2.4rem;
}

.ourStoryBox,
.ourMissionBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 60rem;
}

.imgRightBox img {
  max-width: 100%;
  max-height: 100%;
}

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

.reverseTextBox {
  border-radius: 8px;
  color: rgba(67, 67, 67, 1);
  max-width: 60rem;
}

.reverseTextBox h5 {
  font-size: 3.5rem;
  line-height: 4.2rem;
  padding-bottom: 2rem;
}

.reverseTextBox p {
  font-size: 2rem;
  line-height: 2.4rem;
}

.reverseImgBox img {
  max-width: 100%;
  max-height: 100%;
}

.reverseImgBox {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.reverseTextBox {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.footerWrapperAboutUs {
  display: flex;
  color: #ffffff;
  gap: 5rem;
  justify-content: space-between;
  margin-bottom: 5rem;
  padding-top: 3rem;
}

/*////////////////// CONTACT US CSS ///////////////////////////
*/

.mainSection {
  padding-top: 3rem;
  background: rgba(255, 255, 255, 1);
}

.cardImgAndTitle {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: rgba(49, 47, 47, 1);
}

.cardInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(96, 105, 123, 1);
  padding-left: 5.5rem;
}

.contactUsTitle {
  font-size: 6rem;
  line-height: 7.2rem;
  font-weight: 800;
  text-align: center;
}

.imgAndTitle {
  display: flex;

  gap: 0.4rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.contactUsContentWrapper {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.upperWrapper {
  display: flex;
  gap: 3rem;
}

.lowerWrapper {
  display: flex;
  gap: 3rem;
}

.cardContact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  text-align: center;
  background: transparent;
  overflow: hidden;
  color: #ffffff;
  max-width: 45rem;
  margin: auto;
  border-radius: 8px;
  padding: 2.4rem;

  height: 20rem;
}

.cardContact h4 {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
  text-align: left;
}

.cardContact p {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 500;
  text-align: left;
}

/*/////////////// FORM /////////*/

.formWrapper {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.formName {
  color: rgba(67, 67, 67, 1);
  text-align: center;
  font-size: 3.5rem;
  line-height: 4.2rem;
  font-weight: 600;
  margin-top: 5rem;
  padding-bottom: 4rem;
}

form {
  justify-content: center;
  max-width: 80rem;
  margin: auto;
  border: 1px solid #ffffff;
  padding: 4.8rem 3.2rem 4.8rem 3.2rem;
  border-radius: 2.4rem;
  background: rgba(250, 235, 205, 1);
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.input-group {
  flex: 1;
  margin: 5px;
  padding: 1rem;
  border-radius: 5px;
}

label {
  display: block;
  color: rgba(67, 67, 67, 1);
  font-weight: 600;
}

.field,
.message {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(247, 200, 115, 1);
  border-radius: 5px!important;
  background: rgba(253, 253, 253, 1);
  margin-top: 5px;
}

.field:focus,
.message:focus {
  outline: none;
  box-shadow: 0px 0px 7px 0px #fdbc8c;
}

.message {
  height: 120px;
  resize: none;
  width: 100%;
}

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

.formBtn {
  display: inline-block;
  background: rgba(67, 67, 67, 1);
  padding: 1.4rem 2.5rem;
  color: #ffffff;
  border-radius: 0.8rem;
  cursor: pointer;
}

::placeholder {
  color: rgba(67, 67, 67, 1);
}

/*////////////////// MOBILE DESIGN ///////////////////////////
*/

@media (max-width: 1024px) {
  .infoReverseSectionWrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .infoSectionWrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .subheading {
    font-size: 2.6rem;
    line-height: 3.1rem;
  }

  .textLeftHero h1 {
    font-size: 4rem;
    line-height: 4.8rem;
  }

  .dataSectionWrapper {
    flex-direction: column;
  }

  .testimonialsSectionWrapper {
    flex-direction: column;
  }

  .ourStoryBox p {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }

  .reverseTextBox h5 {
    padding-top: 3rem;
  }

  .reverseTextBox p {
    padding-bottom: 3rem;
  }

  .featuresAiSection h2 {
    font-size: 3.8rem;
    line-height: 4.6rem;
  }

  .textLeftHero h1 {
    font-size: 5.6rem;
    line-height: 6.7rem;
    font-weight: 800;
  }

  .dividerImgs {
    flex-direction: column;
  }

  .featuresWrapper {
    gap: 5rem;
  }

  .featuresCardUpper {
    gap: 5rem;
  }

  .featuresCardLower {
    gap: 5rem;
  }

  .featuresCardUpper {
    flex-direction: column;
  }

  .featuresCardLower {
    flex-direction: column;
  }

  .heroWrapper {
    flex-direction: column;
  }

  .heroTextRight {
    padding-top: 0rem;
  }

  .heroTextRight h1 {
    font-size: 4rem;
    line-height: 5.2rem;
  }

  .aboutUsTitle {
    font-size: 4rem;
    line-height: 5.2rem;
  }

  .contactUsTitle {
    font-size: 4rem;
    line-height: 5.2rem;
  }

  .dividerContentWrapper {
    flex-direction: column;
  }

  .imgGallery {
    flex-direction: column;
  }

  .flagsBox {
    flex-direction: column;
  }

  .lineTwo {
    margin-left: 1rem;
  }

  .hamburgerWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

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

  .hamburger {
    display: flex;
  }

  .navLinks {
    display: none;
  }

  .flag {
    display: none;
  }

  .logInBtn {
    display: none;
  }

  .signUpBtn {
    display: none;
  }

  .logInBtnMobile {
    padding: 1.4rem 2.5rem 1.4rem 2.5rem;
    background: rgba(247, 200, 115, 1);
    border-radius: 0.8rem;
  }

  .logInBtnMobile p {
    color: rgba(67, 67, 67, 1);
  }

  .signUpBtnMobile {
    padding: 1.4rem 2.5rem 1.4rem 2.5rem;
    background: rgba(247, 200, 115, 1);
    border-radius: 0.8rem;
  }

  .signUpBtnMobile p {
    color: rgba(67, 67, 67, 1);
  }

  .whyusCardsWrapper {
    display: flex;
    flex-direction: column;
  }

  .dividerWrapper {
    display: flex;
    flex-direction: column;
  }

  .dividerSection {
    margin-bottom: 5rem;
  }

  .dividerSectionWrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pricingCardsWrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .footerWrapper {
    flex-direction: column;
  }

  .companyLogoFooter {
    max-width: 15rem;
  }

  .aboutUsContentWrapper {
    flex-direction: column-reverse;
  }

  .vectorRemove {
    display: none;
  }

  .aboutUsReverseContentWrapper {
    flex-direction: column;
  }

  .upperWrapper {
    flex-direction: column;
  }

  .lowerWrapper {
    flex-direction: column;
  }

  .cardContact {
    min-width: 100%;
    padding: 2.4rem;
  }

  .footerWrapperAboutUs {
    flex-direction: column;
  }

  .aboutUsContentWrapper {
    flex-direction: column;
  }

  .aboutUsReverseContentWrapper {
    flex-direction: column-reverse;
  }

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

  .rightSideImgBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .rightSideImgUp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .rightSideImgDown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 913px) {
    .mainTitle h1 {
      font-size: 4rem;
      line-height: 4.8rem;
    }

    .subTitle h4 {
      font-size: 2.6rem;
      line-height: 3.1rem;
    }

    .imgHero img {
      max-width: 100%;
      max-height: 100%;
    }

    .orangeVector {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 120%;
      height: 15%;
    }

    .whyUsTitle h5 {
      font-size: 2.4rem;
      line-height: 2.9rem;
    }

    .whyUsTitle h2 {
      font-size: 3.6rem;
      line-height: 4.3rem;
    }

    .smallBox h5 {
      font-size: 2.4rem;
      line-height: 2.9rem;
    }

    .smallBox h2 {
      font-size: 3.6rem;
      line-height: 4.3rem;
    }
  }

  @media (max-width: 674px) {
    .noLineBreak {
      white-space: nowrap;
    }

    .pricingCard {
      width: 30rem;
      height: auto;
    }

    .container {
      margin-left: 1rem;
      margin-right: 1rem;
    }

    .financialText {
      max-width: 100%;
    }

    .containerHero {
      margin-top: 5rem;
      margin-left: 4rem;
      margin-right: 4rem;
    }

    .orangeVector {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 180%;
      height: 13%;
    }

    .rightSideImgBox {
      width: 100%;
    }

    .rightSideImgBox img {
      max-width: 100%;
      max-height: 100%;
    }

    .companyLogo img {
      max-width: 80%;
    }

    .input-row {
      flex-direction: column;
    }

    .input-group {
      flex: none;
      width: 100%;
    }
  }

  @media (max-width: 400px) {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .financialText {
      max-width: 100%;
    }

    .containerHero {
      margin-top: 2rem;
      margin-left: 1rem;
      margin-right: 1rem;
    }
  }
}
div#home {    position: fixed;
  top: 0;    left: 0;
  width: 100%;    z-index: 99;
  padding-bottom: 16px;    background-image: linear-gradient(105.37deg, #faebcd 0%, #F9D89B 100%);
}
@media all and (max-width: 1199px) {.navLinks a {
  font-size: 2rem;}
}
