@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500&display=swap");

:root {
  --just-orange: #f4785a;
  --just-blue: #4397b0;
  --just-purple: #725994;
  --just-black: #464a4d;
}

* {
  font-family: "Open sans";
}

body {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.nav-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.website-title {
  margin-right: auto;
}

.nav-container > div a {
  text-decoration: none;
  color: var(--just-black);
  padding: 10px 25px;
}

.add-padding {
  border-right: 2px solid var(--just-purple);
}

.menulist a {
  color: var(--just-purple);
}

.purple-color-divider {
  width: 100%;
  height: 5px;
  background-color: var(--just-purple);
}

.feature {
  width: 100%;
  min-height: 80vh;
  max-height: 120vh;
  position: relative;
}

.feature-here {
  background-image: url(/Images/main-image.jpg);
  background-size: cover;
}

.overlay {
  background-color: rgba(210, 215, 211, 0.75);
  width: 100%;
  min-height: 80vh;
  max-height: 120vh;
}

.feature-container2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-left,
.feature-right {
  flex: 1;
}

.purple {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 10px solid var(--just-purple);
  border-radius: 100%;
  top: -10%;
  left: 10%;
  animation: purpleT 3s;
}

.blue {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 10px solid var(--just-blue);
  border-radius: 100%;
  top: -10px;
  right: -150px;
  animation: blueT 3s;
}

.orange {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 10px solid var(--just-orange);
  border-radius: 100%;
  top: -70px;
  right: -20px;
  animation: orangeT 2s;
}

.feature-right {
  background: var(--just-purple);
  padding: 40px 0 40px 30px;
  color: #fff;
  font-size: 1.1em;
}

.explain {
  width: 100%;
  margin: 0 auto;
}

.explain-h2 {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.explain-container {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  align-content: center;
}

.explain-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.explain-flex > div i {
  font-size: 4.5em;
}

#explain1 > div i,
#get-hired h2 {
  color: var(--just-orange);
}

#explain2 > div i,
#get-hired1 h2 {
  color: var(--just-blue);
}

#explain3 > div i,
#get-hired2 h2 {
  color: var(--just-purple);
}

.explain-flex > div p a {
  text-decoration: none;
  color: var(--just-blue);
}

.arrow-down {
  text-align: center;
}

.arrow-down i {
  margin-top: 30px;
  font-size: 5em;
  color: var(--just-purple);
}

.arrow-down h2 {
  color: var(--just-black);
  font-size: 2em;
  margin-bottom: 25px;
}

.connect-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}

.connect-container > div > div img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.connect-left,
.connect-right {
  flex: 1;
}

.connecting {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.connecting-image,
.connecting1 {
  flex: 1;
}

.text1,
.text2 {
  padding-left: 80px;
  padding-right: 80px;
}

.connect-left {
  border-top: 15px solid var(--just-orange);
}

.connect-right {
  border-top: 15px solid var(--just-blue);
}

.text1 h2 {
  color: var(--just-orange);
  font-size: 2em;
}

.text2 h2 {
  color: var(--just-blue);
  font-size: 2em;
}

.text-here2 a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--just-orange);
  border-radius: 10px;
}

.text-here3 a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--just-blue);
  border-radius: 10px;
}

.quotation-container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 3em;
}

.quotation-content p i {
  color: var(--just-purple);
}

.marketing-container {
  width: 100%;
  margin: 0 auto;
  min-height: 40vh;
  max-height: 80vh;
  background-color: var(--just-purple);
  display: flex;
  justify-content: center;
  align-items: center;
}

.marketing-text {
  width: 60%;
  color: #fff;
  line-height: 2em;
  font-size: 1em;
  text-align: center;
  letter-spacing: 0.05em;
}

footer {
  border-top: 10px solid var(--just-blue);
}

.footer-container {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .website-title {
    margin-left: auto;
    text-align: center;
  }

  .feature-left {
    visibility: hidden;
  }

  .feature-container {
    flex-direction: column;
  }

  .add-padding {
    border-right: 0px;
  }

  .menulist {
    font-weight: bold;
  }

  .connect-container {
    flex-direction: column;
  }

  .connecting {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 1500px) {
  .add-padding {
    border-right: 0px;
  }

  .nav-container {
    width: 95%;
  }

  .website-title {
    text-align: center;
  }

  .nav-container > div a {
    padding: 5px 10px;
  }

  .connect-container {
    flex-direction: column;
  }
}

.header-image img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  border-top: 10px solid var(--just-orange);
}

.content-container {
  width: 70%;
  margin: 0 auto;
  font-size: 1.3em;
}

.content-all h2 {
  color: var(--just-orange);
  font-size: 2em;
}

.feature-right {
  animation: moving 2s;
}

@keyframes moving {
  0% {
    opacity: 0;
    margin-right: -100%;
  }

  100% {
    opacity: 1;
    margin-right: 0;
  }
}

@keyframes orangeT {
  0% {
    opacity: 0;
    margin-top: -100%;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes blueT {
  0% {
    opacity: 0;
    margin-bottom: -100%;
  }
  100% {
    opacity: 1;
    margin-bottom: 0;
  }
}

@keyframes purpleT {
  0% {
    opacity: 0;
    margin-left: -100%;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}
