@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

:root {
  --main-color: rgb(22, 118, 255);
  --secondary-color: rgb(66, 133, 244);
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  position: relative;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

/* start header */

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 10px;
  padding: 10px 0px;
  position: relative;
  height: 100px;
}

.header .container .logo {
  display: flex;
  position: relative;
}

.header .container .logo .img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%, -35%);
}

.toggle {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.header .container .links {
  display: flex;
}

.header .container .links ul {
  display: flex;
  text-align: center;
  align-items: center;
}

.header .container .links ul li {
  margin: 0 30px;
}

.header .container .links ul li a {
  font-size: 32px;
  font-weight: 800;
  position: relative;
}

.header .container .links ul li a::before {
  content: "";
  position: absolute;
  background-color: var(--secondary-color);
  width: 0px;
  height: 5px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  transition: width 0.3s ease-in;
}

.header .container .links ul li a.active::before {
  width: 30px;
}

.header .container .links ul li a.active:hover::before,
.header .container .links ul li a:hover::before {
  width: 100%;
}

.header .container .buttons {
  display: flex;
  margin-left: 20px;
}

.header .container .buttons .login,
.header .container .buttons .newacc {
  margin: 0 10px 0 0;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.header .container .buttons .login {
  background-color: var(--main-color);
  color: white;
}

.header .container .buttons .newacc {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.menu-toggle {
  display: none;
}

@media (min-width: 993px) and (max-width: 1080px) {
  .toggle {
    gap: 45px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .toggle {
    gap: 45px;
  }

  .header .container .links ul li {
    margin: 0;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .toggle {
    transform: scale(0);
    transition: transform 0.3s ease-out;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: 10px;
    padding: 0;
    margin: 0 5px;
    gap: 0;
  }

  .header .container .buttons,
  .header .container .links ul {
    flex-direction: column;
    align-items: flex-start;
    margin: 5px 0;
  }

  .header .container .links ul li,
  .header .container .buttons .login,
  .header .container .buttons .newacc {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  .header .container .links ul li a {
    color: white;
  }

  .header .container .links ul li a::before {
    background-color: white;
  }

  .active1 {
    transform: scale(1);
    transition: transform 0.3s ease-in;
    z-index: 2;
    color: white;
    background-color: var(--secondary-color);
    width: calc(100% - 20px);
    border-radius: 10px;
    padding-right: 10px;
  }

  .header .container .buttons .newacc {
    border: 1px solid white;
    color: white;
  }
}
/* end header */

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

.landing .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 80px 10px;
  position: relative;
}

.landing .container h1 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  margin: 10px 0;
}

.landing .container h1:nth-of-type(2) {
  color: rgba(0, 0, 0, 0.68);
}

.landing .imgs img:nth-of-type(1) {
  position: absolute;
  right: 20%;
  bottom: 100%;
}

.landing .imgs img:nth-of-type(2) {
  position: absolute;
  left: 20%;
  bottom: 100%;
}

.landing .imgs img:nth-of-type(3) {
  position: absolute;
  right: 10%;
  top: 10%;
}

.landing .imgs img:nth-of-type(4) {
  position: absolute;
  left: 10%;
  top: 10%;
}

.landing .container span {
  color: var(--main-color);
}

.landing .container .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.landing .container .arrow img {
  position: relative;
  margin: 10px 90px 0;
}

.landing .container .cards {
  display: flex;
  gap: 50px;
  position: relative;
  text-align: center;
}

.landing .container .cards .Rcard,
.landing .container .cards .Lcard {
  width: 50%;
  margin: 0 30px;
  position: relative;
}

.landing .container .cards .Rcard .title,
.landing .container .cards .Lcard .title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 1px 5px 1px #bebdbd;
  border-radius: 10px;
}

.landing .container .cards .Rcard .title p,
.landing .container .cards .Lcard .title p {
  font-weight: 600;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.69);
  margin-right: 30px;
}

.landing .container .cards .Rcard .title img,
.landing .container .cards .Lcard .title img {
  width: 60px;
  height: 55px;
}

.landing .container .cards .Rcard .informations,
.landing .container .cards .Lcard .informations {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 10px;
  height: 270px;
}

.landing .container .cards .Rcard .informations p,
.landing .container .cards .Lcard .informations p {
  font-weight: 800;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
}

.landing .container .cards .Rcard .informations p {
  padding: 15px 100px;
}

.landing .container .cards .Lcard .informations p {
  padding: 15px 80px;
}

.landing .container .joinNowButtons {
  display: flex;
}

.landing .container .joinNow,
.landing .container .joinNowButtons .company,
.landing .container .joinNowButtons .search,
.landing .container .joinNowButtons .mediator {
  margin: 20px;
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  border-radius: 15px;
}

.landing .container .joinNow {
  background-color: var(--main-color);
  color: white;
  padding: 10px 100px;
  cursor: pointer;
}

.landing .container .joinNowButtons .company,
.landing .container .joinNowButtons .search,
.landing .container .joinNowButtons .mediator {
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  cursor: pointer;
}

.landing .container .joinNowButtons .company,
.landing .container .joinNowButtons .mediator {
  padding: 10px 80px;
}

.landing .container .joinNowButtons .search {
  padding: 10px 40px;
}
/* end landing */

/* start landing1 */

.landing1 .container {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 80px 10px 0;
  position: relative;
}

.landing1 .container > .text {
  position: relative;
  box-shadow: 8px 8px 2px rgba(66, 133, 244, 0.09);
}

.landing1 .container .text h1,
h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 54px;
}

.landing1 .container .text img {
  position: absolute;
}

.landing1 .container .text img:nth-of-type(1) {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.landing1 .container .text img:nth-of-type(2) {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.landing1 .container .text2 {
  margin: 80px 30px;
  display: flex;
  justify-content: space-between;
  text-align: right;
  align-items: center;
}

.landing1 .container .text2 .text,
.landing1 .container .text2 .img {
  width: 50%;
}

.landing1 .container .text2 .text h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
}

.landing1 .container .text2 .text p {
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  color: var(--secondary-color);
  padding: 0 0 0 100px;
}

.landing1 .container .text2 .img {
  position: relative;
}

.landing1 .container .text2 .img img:nth-of-type(1) {
  margin: 150px 25px 0 0;
  filter: drop-shadow(7px 1px 1px #ddd);
}

.landing1 .container .text2 .img img:nth-of-type(2) {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(200%, -80%);
}

.landing1 .container .text2 .img img:nth-of-type(3) {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-100%, 200%);
}

.landing1 .container .text2 .img img:nth-of-type(4) {
  position: absolute;
  top: 20%;
  left: 100%;
  transform: translate(-100%, 0%);
}

.landing1 .container .text2 .img img:nth-of-type(5) {
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(100%, 100%);
}

/* end landing1 */

/* start landing2 */

.landing2 .container {
  display: flex;
  flex-direction: column;
  margin: 0px 10px;
}

.landing2 .container h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 80px;
  width: fit-content;
  padding-right: 25px;
}

.landing2 .container .text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing2 .container .text h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  color: var(--main-color);
  padding: 0;
}

.landing2 .container .grid {
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing2 .container .grid .card {
  background-color: rgba(22, 118, 255, 1);
  color: white;
  text-align: center;
  height: 250px;
  width: 280px;
  border-radius: 10px;
  position: relative;
}

.landing2 .container .grid .card .head {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  padding: 20px;
}

.landing2 .container .grid .card .text {
  margin: 50px auto;
  font-size: 36px;
  line-height: 54px;
  font-weight: 800;
}

/* end landing2 */

/* start person */
.person {
  margin: 80px 10px;
  position: relative;
}

.person p {
  font-size: 36px;
  line-height: 54px;
  font-weight: 800;
  text-align: center;
  padding: 0 250px;
}

.person span {
  color: var(--main-color);
}

.person .stars img:nth-of-type(1) {
  position: absolute;
  right: 0%;
  bottom: 50%;
  transform: translate(-100%, 0%);
}

.person .stars img:nth-of-type(2) {
  position: absolute;
  right: 0%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.person .stars img:nth-of-type(3) {
  position: absolute;
  right: 0%;
  bottom: 50%;
  transform: translate(-150%, 50%);
}

.person .stars img:nth-of-type(4) {
  position: absolute;
  left: 0%;
  bottom: 50%;
  transform: translate(100%, 0%);
}

.person .stars img:nth-of-type(5) {
  position: absolute;
  left: 0%;
  bottom: 50%;
  transform: translate(50%, 50%);
}

.person .stars img:nth-of-type(6) {
  position: absolute;
  left: 0%;
  bottom: 50%;
  transform: translate(150%, 50%);
}

/* end person */

.question {
  margin: 80px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.question .text {
  width: 650px;
  height: 465px;
  border: 4px solid var(--main-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.question p {
  font-size: 36px;
  line-height: 54px;
  padding: 30px;
}

.question img:nth-of-type(1) {
  position: absolute;
  right: 50px;
  top: 50px;
  transform: rotate(220deg);
}

.question img:nth-of-type(2) {
  position: absolute;
  right: 150px;
  bottom: 150px;
  transform: rotate(150deg);
}

.question img:nth-of-type(3) {
  position: absolute;
  left: 50px;
  top: 50px;
  transform: rotate(220deg);
}

.question img:nth-of-type(4) {
  position: absolute;
  left: 150px;
  bottom: 150px;
  transform: rotate(150deg);
}

/* end questions */

.why .container {
  margin: 80px 10px 0;
  display: flex;
  flex-direction: column;
}

.why .container h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  width: fit-content;
  padding-right: 25px;
}

.why .container .cont {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin: 40px auto;
}

.why .container .cont .info {
  text-align: center;
  box-shadow: 8px 8px 2px rgba(66, 133, 244, 0.09);
  width: 600px;
  height: 350px;
}

.why .container .cont .info h4,
.why .container .cont .info p {
  font-size: 36px;
  line-height: 54px;
  font-weight: 800;
}

.why .container .cont .info h4 {
  color: var(--main-color);
  margin-bottom: 10px;
}

.why .container .cont .info p {
  padding: 0 110px;
}
/* end why */

.answers .container {
  margin: 0px 10px;
}

.answers .container h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 80px;
  width: fit-content;
  padding-right: 25px;
}

.answers .container .answer .content {
  display: flex;
  flex-direction: column;
  margin: 0 50px 50px 0px;
}

.answers .container .answer .content header {
  display: flex;
  border-radius: 15px;
  padding: 30px 60px;
  color: var(--main-color);
  box-shadow: 4px 4px 2px #bebdbd;
  margin-left: 50px;
}

.answers .container .answer .active header {
  background-color: var(--main-color);
  color: white;
  box-shadow: 4px 4px 2px var(--main-color);
}

.answers .container .answer .content header img {
  margin-left: 30px;
}

.answers .container .answer .content p {
  margin: 10px;
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 1.5px;
  display: none;
  color: black;
  padding: 0 60px;
}

/* end answers */

.footer .container {
  margin: 80px 10px 0;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 10px;
  gap: 100px;
  position: relative;
}

.footer .container .info,
.footer .container .links,
.footer .container .contact {
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  width: 33%;
  /* align-items: center; */
}

.footer .container .info .txt {
  margin: 0 50px 50px 0;
}

.footer .container .info .txt p {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: rgba(52, 52, 52, 1);
}

.footer .container .info .iconss i {
  margin: 0px 20px 0 20px;
  color: var(--main-color);
  font-size: 30px;
}

.footer .container .links h2 {
  padding: 16px;
  font-weight: bolder;
  font-size: 30px;
  line-height: 28px;
}

.footer .container .links ul {
  padding: 10px 16px;
}

.footer .container .links ul li {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  padding: 12px 0;
}

.footer .container .links ul li a {
  color: rgba(52, 52, 52, 1);
}

.footer .container .contact h2 {
  padding: 16px;
  font-weight: bolder;
  font-size: 30px;
  line-height: 28px;
}

.footer .container .contact .contt {
  display: flex;
  margin: 16px;
  align-items: center;
}

.footer .container .contact i {
  color: var(--main-color);
  font-size: 30px;
  margin-left: 30px;
}

.footer .container .contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.copy {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.copy p {
  font-size: 30px;
  font-weight: 600;
}

.copy span {
  color: var(--main-color);
}

.up {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 4px 4px 2px #bebdbd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.up img {
  width: 40px;
  height: 40px;
}
