@charset "UTF-8";
body,
* {
  color: #090e36;
  margin: 0;
  padding: 0;
}

body,
html {
  overflow-x: hidden !important;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: white;
}

header .desktop-nav {
  display: flex;
  padding-bottom: 40px;
  padding-top: 40px;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  header .desktop-nav {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1200px) {
  header .desktop-nav {
    display: none;
  }
}

header .desktop-nav .left .logo-container {
  width: 100px;
}

header .desktop-nav .left .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

header .desktop-nav .right {
  flex: 5;
}

header .desktop-nav .right nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

header .desktop-nav .right nav ul a li {
  margin-left: 40px;
  font-weight: 500;
}

header .desktop-nav .right nav ul a .btn {
  padding: 10px 40px;
  background: #FF715B;
  color: white;
  border-radius: 5px;
}

header .desktop-nav .right nav ul a .border-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #FF715B;
  border-radius: 5px;
  color: #FF715B;
}

header .desktop-nav .right nav ul a .border-btn .icon-container {
  margin-right: 10px;
  height: 20px;
  width: 20px;
}

header .desktop-nav .right nav ul a .border-btn .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav {
  display: none;
  border-bottom: 1px solid #d1d1d1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  header .mobile-nav {
    display: flex;
  }
}

@media screen and (min-width: 481px) and (max-width: 1200px) {
  header .mobile-nav {
    display: flex;
  }
}

header .mobile-nav .left {
  flex: 1;
}

header .mobile-nav .left a .logo-container {
  height: 100px;
  width: 100px;
}

header .mobile-nav .left a .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav .right {
  display: grid;
  place-items: center;
  border: none;
}

header .mobile-nav .right svg {
  height: 60px;
  position: absolute;
  width: 60px;
  z-index: 2;
  cursor: pointer;
  border: none;
}

header .mobile-nav .right svg path {
  fill: #090e36;
}

header .mobile-nav .right .plates {
  display: flex;
  flex-wrap: wrap;
  max-height: 160px;
  justify-content: flex-end;
}

header .mobile-nav .right .plate {
  height: 50px;
  width: 50px;
}

header .mobile-nav .right .burger {
  filter: url(#gooeyness);
}

header .mobile-nav .right .x {
  transform: scale(0);
  transition: transform 400ms;
}

header .mobile-nav .right .line {
  fill: none;
  stroke: #090e36;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50%;
  transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

header .mobile-nav .right .x .line {
  stroke-width: 5.5px;
}

header .mobile-nav .right .active .x {
  transform: scale(1);
  transition: transform 400ms 350ms;
}

header .mobile-nav .right .plate2 .line1 {
  stroke-dasharray: 21 185.62753295898438;
  transition-delay: 0;
}

header .mobile-nav .right .plate2 .line2 {
  stroke-dasharray: 21 178.6514129638672;
  transition-delay: 30ms;
}

header .mobile-nav .right .plate2 .line3 {
  stroke-dasharray: 21 197.92425537109375;
  transition-delay: 60ms;
}

header .mobile-nav .right .plate2 .line4 {
  stroke-dasharray: 21 190.6597137451172;
  transition-delay: 90ms;
}

header .mobile-nav .right .plate2 .line5 {
  stroke-dasharray: 21 208.52874755859375;
  transition-delay: 120ms;
}

header .mobile-nav .right .plate2 .line6 {
  stroke-dasharray: 21 186.59703063964844;
  transition-delay: 150ms;
}

header .mobile-nav .right .active.plate2 .line1 {
  stroke-dasharray: 5 185.62753295898438;
  stroke-dashoffset: -141px;
}

header .mobile-nav .right .active.plate2 .line2 {
  stroke-dasharray: 5 178.6514129638672;
  stroke-dashoffset: -137px;
}

header .mobile-nav .right .active.plate2 .line3 {
  stroke-dasharray: 5 197.92425537109375;
  stroke-dashoffset: -176px;
}

header .mobile-nav .right .active.plate2 .line4 {
  stroke-dasharray: 5 190.6597137451172;
  stroke-dashoffset: -159px;
}

header .mobile-nav .right .active.plate2 .line5 {
  stroke-dasharray: 5 208.52874755859375;
  stroke-dashoffset: -139px;
}

header .mobile-nav .right .active.plate2 .line6 {
  stroke-dasharray: 5 186.59703063964844;
  stroke-dashoffset: -176px;
}

header .mobile-nav .right .active.plate2 .x {
  transition: transform 400ms 250ms;
}

header .mobile-nav .mobile-nav-container {
  position: fixed;
  height: 100vh;
  top: 0;
  right: -500px;
  transition: all 0.5s ease;
  z-index: 1;
  background: white;
  width: 0%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .mobile-nav .mobile-nav-container nav {
  width: fit-content;
}

header .mobile-nav .mobile-nav-container nav ul {
  padding: 0 40px;
  margin-top: 100px;
  list-style: none;
}

header .mobile-nav .mobile-nav-container nav ul a {
  text-decoration: none;
  font-weight: 500;
}

header .mobile-nav .mobile-nav-container nav ul a li {
  padding-bottom: 20px;
  font-size: 1rem;
  color: #090e36;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper {
  height: 50px;
  width: 50px;
  border: 1px solid;
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.5s;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper:hover .icon-container {
  height: 30px;
  width: 30px;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper .icon-container {
  height: 25px;
  width: 25px;
  transition: all 0.2s;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav .mobile-nav-container nav ul a .social-wrapper .icon-container svg path {
  fill: #1D1D1F;
  transition: all 0.5s;
}

header .mobile-nav .mobile-nav-container nav ul a .icon-container {
  height: 30px;
  width: 30px;
}

header .mobile-nav .mobile-nav-container nav ul a .icon-container svg {
  position: static;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav .mobile-nav-container nav ul a .btn {
  padding: 10px 40px;
  background: #FF715B;
  color: white;
  border-radius: 5px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

header .mobile-nav .mobile-nav-container nav ul a .border-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #FF715B;
  border-radius: 5px;
  color: #FF715B;
}

header .mobile-nav .mobile-nav-container nav ul a .border-btn .icon-container {
  margin-right: 10px;
  height: 20px;
  width: 20px;
}

header .mobile-nav .mobile-nav-container nav ul a .border-btn .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav .mobile-nav-container nav ul a .border-btn .icon-container svg path {
  fill: #FF715B;
}

header .mobile-nav .mobile-nav-container nav ul .social-list {
  display: flex;
}

header .mobile-nav .mobile-nav-container nav ul .social-list a .icon-container {
  margin-right: 20px;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  margin-bottom: 20px;
  color: white;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown li {
  display: flex;
  align-items: center;
  font-weight: 500;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown li .icon-container {
  height: 20px;
  width: 20px;
  margin-left: 5px;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown li .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
  position: static;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown li .icon-container svg path {
  fill: white;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content {
  cursor: pointer;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  margin-top: 20px;
  overflow-y: scroll;
  color: white;
  height: 200px;
  overflow: scroll;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  margin-left: 10px;
  padding: 0;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left ul .title {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left ul .title .icon-container {
  margin-right: 5px;
  height: 10px;
  width: 10px;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left ul .title .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .left ul li {
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  justify-content: flex-start;
  font-size: 1rem;
  color: grey;
  transition: none;
}

header .mobile-nav .mobile-nav-container nav ul .mobile-dropdown .mobile-dropdown-content .right {
  flex: 1;
}

header .mobile-nav .mobile-nav-container-active {
  right: 0%;
  width: 70%;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  header .mobile-nav .mobile-nav-container-active {
    width: 40%;
  }
}

footer {
  background-color: #ececec;
  margin-top: 200px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  footer {
    margin-top: 100px;
  }
}

footer .footer-container {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-container {
    flex-direction: column;
  }
}

footer .footer-container * {
  color: #090e36;
}

footer .footer-container .left {
  flex: 2;
}

footer .footer-container .left .logo-container {
  width: 150px;
}

footer .footer-container .left .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

footer .footer-container .left p {
  margin-top: 20px;
  text-align: justify;
  font-size: 0.9rem;
}

footer .footer-container .right {
  flex: 5;
  display: flex;
  justify-content: space-evenly;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-container .right {
    flex-direction: column;
  }
}

footer .footer-container .right ul {
  margin: 0;
  margin-left: 40px;
  list-style: none;
  flex: 1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-container .right ul {
    margin-left: 0;
    margin-top: 20px;
  }
}

footer .footer-container .right ul .title {
  font-weight: 800;
  margin-bottom: 10px;
}

footer .footer-container .right ul a li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

footer .footer-container .right ul form {
  font-size: 0.9rem;
}

footer .footer-container .right ul form input {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 5px;
  border: 1px solid #dddddd;
  outline: none;
}

footer .footer-container .right ul form .submit {
  background-color: #FF715B;
  color: white;
  font-weight: 800;
  border: none;
}

.banner-section {
  display: flex;
  min-height: 80vh;
  padding-top: 50px;
}

.banner-section .left {
  flex: 1;
  margin: auto;
  margin-right: 40px;
}

.banner-section .left .content h5 {
  font-weight: 600;
  color: #FF715B;
}

.banner-section .left .content h1 {
  font-size: 3rem;
  line-height: 50px;
}

.banner-section .left .content p {
  margin-top: 20px;
  text-align: justify;
}

.banner-section .left .content p span {
  font-weight: 900;
}

.banner-section .left form {
  display: flex;
  width: 100%;
  margin-top: 40px;
}

.banner-section .left form input {
  padding: 20px 20px;
  background-color: #F5F5F5;
  color: #090e36;
  border: 1px solid #cccccc;
  border-radius: 5px;
  width: 100%;
  outline: none;
}

.banner-section .left form .submit {
  background-color: #FF715B;
  color: white;
  border: none;
  font-weight: bold;
  width: fit-content;
  cursor: pointer;
}

.banner-section .right {
  flex: 1;
  position: relative;
  background-color: #ff715b3f;
  padding: 30px;
  padding-bottom: 0;
  border-radius: 50%;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .banner-section .right {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .banner-section .right {
    display: none;
  }
}

.banner-section .right .banner-img {
  height: 80vh;
}

.banner-section .right .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-section .right .img {
  position: absolute;
  box-shadow: rgba(46, 59, 70, 0.15) 0px 5px 30px 0px;
  border-radius: 15px;
}

.banner-section .right .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-section .right .img-1 {
  top: 10%;
  right: 5%;
  height: 200px;
  width: 200px;
}

.banner-section .right .img-2 {
  top: 40%;
  right: 5%;
}

.banner-section .right .img-3 {
  top: 50%;
  left: 5%;
}

.banner-section .right .img-4 {
  top: 70%;
  left: 5%;
}

.process-section .process-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .process-section .process-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 20px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .process-section .process-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.process-section .process-container .process {
  padding: 20px;
  border-radius: 10px;
  border: 1px dotted lightgray;
  transition: all 0.5s ease;
  position: relative;
}

.process-section .process-container .process .content {
  z-index: 2;
  position: relative;
  width: 70%;
}

.process-section .process-container .process .content .title {
  font-weight: 700;
}

.process-section .process-container .process .content p {
  font-size: 0.8rem;
  margin: 0;
  margin-top: 5px;
  text-align: justify;
}

.process-section .process-container .process .number {
  position: absolute;
  font-size: 6rem;
  top: 0;
  bottom: 0;
  right: 0;
  height: fit-content;
  width: fit-content;
  z-index: 0;
  font-weight: 900;
  color: #ececec;
}

.process-section .process-container .process:hover {
  background-color: #090e36;
  cursor: pointer;
  border: 0;
}

.process-section .process-container .process:hover .content .title {
  color: white;
}

.process-section .process-container .process:hover .content p {
  color: white;
}

.process-section .process-container .process:hover .number {
  opacity: 0.2;
}

.skill-section .skill-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .skill-section .skill-grid {
    margin-top: 20px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .skill-section .skill-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.skill-section .skill-grid .skill-card {
  border: 1px solid lightgray;
  border-radius: 5px;
}

.skill-section .skill-grid .skill-card .content {
  padding: 20px;
}

.skill-section .skill-grid .skill-card .content .title {
  font-weight: 600;
  font-size: 1.2rem;
}

.skill-section .skill-grid .skill-card .content .description {
  margin-top: 10px;
}

.skill-section .skill-grid .skill-card .content .description p {
  margin: 0;
  font-size: 0.8rem;
}

.skill-section .skill-grid .skill-card .content .salary-range {
  color: #FF715B;
  font-weight: 600;
}

.skill-section .skill-grid .skill-card .content .salary-range .subtitle {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.skill-section .skill-grid .skill-card .content .skill-required .subtitle {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.skill-section .skill-grid .skill-card .content .skill-required .skills {
  max-width: 100%;
  overflow: hidden;
}

.skill-section .skill-grid .skill-card .content .skill-required .skills .skills-container {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.skill-section .skill-grid .skill-card .content .skill-required .skills .skill {
  padding: 5px 10px;
  background-color: #9fa3c565;
  color: #090e36;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin: 5px;
}

@media screen and (max-width: 480px) {
  .skill-section .skill-grid .skill-card .content .skill-required .skills .skills-container {
    max-width: 100%;
    padding: 10px;
  }
}

.about-us-section .about-us-container {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-us-section .about-us-container {
    flex-direction: column;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .about-us-section .about-us-container {
    flex-direction: column;
  }
}

.about-us-section .about-us-container .left {
  flex: 1;
}

.about-us-section .about-us-container .left .subtitle {
  font-weight: 700;
  color: #FF715B;
  font-size: 18px;
}

.about-us-section .about-us-container .left h3 {
  font-size: 4rem !important;
  color: #090e36;
  margin: 0;
}

.about-us-section .about-us-container .left p {
  font-size: 2rem;
  color: #090e36;
  font-weight: 800;
  margin: 0;
}

.about-us-section .about-us-container .left .content {
  margin-top: 10px;
}

.about-us-section .about-us-container .left .content p {
  font-size: 1rem;
  font-weight: normal;
  text-align: justify;
}

.about-us-section .about-us-container .right {
  flex: 1;
  margin-left: 40px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-us-section .about-us-container .right {
    margin: 0;
    margin-top: 40px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .about-us-section .about-us-container .right {
    margin: 0;
    margin-top: 40px;
  }
}

.about-us-section .about-us-container .right .chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-us-section .about-us-container .right .chart-grid .chart {
  padding: 20px;
  box-shadow: rgba(46, 59, 70, 0.15) 0px 5px 30px 0px;
  border-radius: 5px;
  display: grid;
  place-items: center;
}

.about-us-section .about-us-container .right .chart-grid .chart .img-container {
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-us-section .about-us-container .right .chart-grid .chart .img-container {
    height: 100px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .about-us-section .about-us-container .right .chart-grid .chart .img-container {
    height: 100px;
  }
}

.about-us-section .about-us-container .right .chart-grid .chart .img-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.about-us-section .about-us-container .right .chart-grid .chart .name {
  margin-top: 30px;
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  line-height: 20px;
  color: #090e36;
}

.about-us-section .about-us-container .right .chart-grid .chart .name span {
  font-weight: normal;
  font-size: 1rem;
}

.client-section .client-slider {
  margin-top: 40px;
  /* the slides */
  /* the parent */
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .client-section .client-slider {
    margin-top: 20px;
  }
}

.client-section .client-slider .slick-slide {
  margin: 0 27px;
}

.client-section .client-slider .slick-list {
  margin: 0 -27px;
}

.client-section .client-slider .client {
  padding-bottom: 30px;
}

.client-section .client-slider .client .content {
  position: relative;
  display: grid;
  place-items: center;
}

.client-section .client-slider .client .content .client-img {
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.client-section .client-slider .client .content .client-img .name-profile {
  width: 100%;
  height: 100%;
  font-family: "Signika Negative", sans-serif;
  font-size: 48px;
  font-weight: bold;
  padding: 15px;
  background-color: #FF715B;
  color: #090e36;
}

.client-section .client-slider .client .content .white-box {
  padding: 40px;
  padding-top: 60px;
  margin-top: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  position: relative;
}

.client-section .client-slider .client .content .white-box .client-name {
  font-weight: 800;
  font-size: 1rem;
}

.client-section .client-slider .client .content .white-box .member-status {
  font-size: 0.8rem;
  color: grey;
}

.client-section .client-slider .client .content .white-box .star-container {
  margin-top: 10px;
  display: flex;
}

.client-section .client-slider .client .content .white-box .review {
  font-size: 0.8rem;
  text-align: center;
  font-style: italic;
}

.client-section .client-slider .client .content .white-box .comma {
  position: absolute;
  top: 20px;
  left: 40px;
}

.client-section .arrow-container {
  display: flex;
  margin-top: 0px;
  margin-right: 0;
  width: fit-content;
  float: right;
  align-items: center;
}

.client-section .arrow-container .arrow {
  width: 50px;
  cursor: pointer;
}

.client-section .arrow-container .arrow svg {
  width: 100%;
  object-fit: contain;
  display: block;
}

.pricing-section .pricing-card-container {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  gap: 20px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .pricing-section .pricing-card-container {
    flex-direction: column;
    margin-top: 20px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .pricing-section .pricing-card-container {
    flex-direction: column;
  }
}

.pricing-section .pricing-card-container .card {
  border-radius: 10px;
  min-height: 700px;
  position: relative;
  border: 1px solid #cfcfcf;
}

.pricing-section .pricing-card-container .card .content {
  padding: 40px;
}

.pricing-section .pricing-card-container .card .content .plan-type {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.pricing-section .pricing-card-container .card .content .plan-type .icon-container {
  height: 60px;
  width: 60px;
  margin-right: 20px;
}

.pricing-section .pricing-card-container .card .content .plan-type .icon-container svg {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.pricing-section .pricing-card-container .card .content .description {
  margin-top: 20px;
  font-size: 0.8rem;
}

.pricing-section .pricing-card-container .card .content .price {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 1000;
}

.pricing-section .pricing-card-container .card .content .feature {
  margin-top: 20px;
}

.pricing-section .pricing-card-container .card .content .feature span {
  font-weight: 600;
}

.pricing-section .pricing-card-container .card .content .feature ul {
  list-style: none;
  margin-top: 10px;
}

.pricing-section .pricing-card-container .card .content .feature ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.pricing-section .pricing-card-container .card .content .feature ul li .icon-container {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.pricing-section .pricing-card-container .card .content .feature ul li .icon-container svg {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.pricing-section .pricing-card-container .card .content .get-started a {
  margin-top: 40px;
  width: 100%;
  padding: 20px 20px;
  text-align: center;
  background-color: #FF715B;
  color: white;
  font-weight: 800;
  border-radius: 5px;
  position: absolute;
  left: 40px;
  right: 40px;
  width: 80%;
  bottom: 40px;
}

.pricing-section .pricing-card-container .premium {
  background-color: #FF715B;
  border: none;
}

.pricing-section .pricing-card-container .premium .content * {
  color: white;
}

.pricing-section .pricing-card-container .premium .content .get-started a {
  color: #FF715B;
  background-color: white;
}

.pricing-section .pricing-card-container .recommended {
  font-size: 12px;
  font-style: italic;
}

.faq-section .faq-container .accordion-container {
  margin-top: 20px;
  border-bottom: 1px solid #090e36;
}

.faq-section .faq-container .accordion-container .accordion__item:not(:last-child) {
  border-bottom: 1px solid black;
}

.faq-section .faq-container .accordion-container .accordion__item {
  padding: 10px 0;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .faq-section .faq-container .accordion-container .accordion__item {
    padding: 10px 0;
  }
}

.faq-section .faq-container .accordion-container .accordion__caption {
  font-weight: 600;
  font-size: 1.2rem;
  width: 80%;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .faq-section .faq-container .accordion-container .accordion__caption {
    font-size: 1rem;
    width: 90%;
  }
}

.faq-section .faq-container .accordion-container .accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 0;
  outline: none;
  border: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
  background-color: white;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .faq-section .faq-container .accordion-container .accordion__btn {
    font-size: 0.8rem;
  }
}

.faq-section .faq-container .accordion-container .accordion__btn:hover {
  color: var(--color-purple);
}

.faq-section .faq-container .accordion-container .accordion__item--active .accordion__btn {
  color: var(--color-purple);
  border-bottom: 2px solid var(--color-purple);
}

.faq-section .faq-container .accordion-container .fa-lightbulb {
  padding-right: 1rem;
}

.faq-section .faq-container .accordion-container .accordion__icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}

.faq-section .faq-container .accordion-container .accordion__item--active .accordion__icon {
  transform: rotate(135deg);
}

.faq-section .faq-container .accordion-container .accordion__content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
  font-size: 1rem;
  color: #000000;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .faq-section .faq-container .accordion-container .accordion__content {
    font-size: 0.8rem;
  }
}

.faq-section .faq-container .accordion-container .accordion__content p {
  padding: 1rem 1.8rem;
}

.faq-section .faq-container .accordion-container .accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}

.course-banner-section {
  display: flex;
  padding-top: 50px;
}

.course-banner-section .left {
  flex: 1;
  flex: 1;
  margin: auto;
  margin-right: 40px;
}

.course-banner-section .left .content h5 {
  font-weight: 600;
  color: #FF715B;
}

.course-banner-section .left .content h1 {
  font-size: 3rem;
  line-height: 50px;
}

.course-banner-section .left .content p {
  margin-top: 20px;
  text-align: justify;
}

.course-banner-section .left .content p span {
  font-weight: 900;
}

.course-banner-section .right {
  flex: 1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .course-banner-section .right {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .course-banner-section .right {
    display: none;
  }
}

.course-banner-section .right .course-banner-img {
  height: 500px;
  width: 100%;
}

.course-banner-section .right .course-banner-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.course-section .course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .course-section .course-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .course-section .course-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.course-section .course-grid .course-card {
  padding: 40px;
  border: 1px solid lightgray;
  border-radius: 5px;
}

.course-section .course-grid .course-card .content .course-img {
  height: 200px;
  width: 100%;
  background-color: #ebebeb;
}

.course-section .course-grid .course-card .content .course-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.course-section .course-grid .course-card .content .course-title {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 900;
}

.course-section .course-grid .course-card .content .course-title span {
  font-size: 0.8rem;
  font-weight: normal;
}

.course-section .course-grid .course-card .content .course-description {
  margin-top: 10px;
  font-size: 1rem;
}

.course-section .course-grid .course-card .content .course-description p {
  margin: 0;
}

.course-section .course-grid .course-card .content .ratings {
  display: flex;
  align-items: center;
  font-weight: 900;
  margin-top: 10px;
}

.course-section .course-grid .course-card .content .ratings .star-container {
  display: flex;
}

.course-section .course-grid .course-card .content .ratings .star-container .star {
  height: 20px;
  width: 20px;
}

.course-section .course-grid .course-card .content .ratings .star-container .star svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.course-section .course-grid .course-card .content a .cta {
  margin-top: 20px;
  background-color: #FF715B;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 900;
}

.about-us-banner-section {
  display: flex;
  align-items: center;
  padding-top: 50px;
}

.about-us-banner-section .left {
  flex: 1;
}

.about-us-banner-section .left h5 {
  font-size: 1.2rem;
  color: #FF715B;
}

.about-us-banner-section .left h3 {
  font-size: 4rem;
  line-height: 80px;
}

.about-us-banner-section .left p {
  font-size: 2rem;
}

.about-us-banner-section .right {
  flex: 1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-us-banner-section .right {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .about-us-banner-section .right {
    display: none;
  }
}

.about-us-banner-section .right .img-container {
  height: 700px;
  width: 100%;
}

.about-us-banner-section .right .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.what-is-mypm-section {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .what-is-mypm-section {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.what-is-mypm-section .left {
  flex: 1;
}

.what-is-mypm-section .right {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .what-is-mypm-section .right {
    justify-content: flex-start;
  }
}

.what-is-mypm-section .right ul {
  list-style: none;
  padding: 20px 0;
  padding-left: 20px;
  border-left: 2px solid #090e36;
}

.what-is-mypm-section .right ul .title h1 {
  font-size: 2rem;
  line-height: 40px;
  text-transform: uppercase;
  color: #FF715B;
}

.what-is-mypm-section .right ul li {
  margin: 10px 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.issues-section .title {
  margin-bottom: 40px;
}

.issues-section .issue-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .issues-section .issue-container {
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
}

.issues-section .issue-container .left {
  flex: 1;
}

.issues-section .issue-container .left .issue-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.issues-section .issue-container .left p {
  text-align: justify;
}

.issues-section .issue-container .right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.issues-section .issue-container .right .img-container {
  border-radius: 50%;
  background-color: #ff715b48;
  height: 400px;
}

.issues-section .issue-container .right .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.issues-section .issue-container:nth-child(odd) {
  flex-direction: row-reverse;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .issues-section .issue-container:nth-child(odd) {
    flex-direction: column-reverse;
  }
}

.issues-section .issue-container:nth-child(last) {
  margin-bottom: 0;
}

.result-section .industry-name {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .industry-name {
    flex-direction: column;
    align-items: start;
  }
}

.result-section .industry-name .name {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 900;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .industry-name form {
    margin-top: 20px;
  }
}

.result-section .industry-name form .form-group-container {
  margin: 0;
}

.result-section .industry-name form .form-group-container .form-group {
  display: flex;
  flex-direction: row;
}

.result-section .result-container .section-1 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.result-section .result-container .section-1 .card-1 {
  border: 1px solid lightgray;
  padding: 40px;
  border-radius: 5px;
  text-align: center;
}

.result-section .result-container .section-1 .card-1 h2 {
  line-height: auto;
  color: #FF715B;
}

.result-section .result-container .section-1 .card-1 h2 span {
  font-size: 1rem;
  font-weight: 600;
  color: #838383;
}

.result-section .result-container .section-2 {
  display: flex;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .result-container .section-2 {
    flex-direction: column;
    width: 100%;
  }
}

.result-section .result-container .section-2 .donut-chart {
  padding: 40px;
  border-radius: 5px;
  border: 1px solid lightgray;
  position: relative;
  flex: 1;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .result-container .section-2 .donut-chart {
    width: 100%;
    overflow: scroll;
    padding: 20px;
  }
}

.result-section .result-container .section-2 .donut-chart a .btn {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #FF715B;
  width: fit-content;
  border-radius: 5px;
  color: white;
  font-weight: 600;
}

.result-section .result-container .section-2 .qualification {
  flex: 2;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid lightgray;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .result-container .section-2 .qualification {
    flex: 1;
    overflow-x: auto;
    width: 100%;
    padding: 20px;
  }
}

.result-section .result-container .section-2 .qualification .title {
  font-weight: 900;
  font-size: 1.2rem;
}

.result-section .result-container .section-2 .qualification table {
  font-size: 1rem;
  margin-top: 15px;
  border-collapse: collapse;
  overflow-y: scroll;
}

.result-section .result-container .section-2 .qualification table th {
  font-weight: 500;
}

.result-section .result-container .section-2 .qualification table td {
  padding: 10px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid lightgray;
}

.result-section .result-container .section-2 .qualification table td a .btn {
  text-align: center;
  padding: 10px;
  background-color: #FF715B;
  border-radius: 5px;
  color: white;
  font-weight: 600;
}

.result-section .result-container .section-3 {
  margin-top: 40px;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid lightgray;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .result-section .result-container .section-3 {
    padding: 20px;
  }
}

.result-section .result-container .section-3 .title {
  font-weight: 900;
  font-size: 1.2rem;
}

.indemand-skills {
  position: relative;
}

.indemand-skills .skill-slider {
  margin-top: 40px;
  /* the slides */
  /* the parent */
}

.indemand-skills .skill-slider .slick-slide {
  margin: 0 27px;
}

.indemand-skills .skill-slider .slick-list {
  margin: 0 -27px;
}

.indemand-skills .skill-slider .skill-card {
  border: 1px solid lightgray;
  border-radius: 5px;
}

.indemand-skills .skill-slider .skill-card .content {
  padding: 20px;
}

.indemand-skills .skill-slider .skill-card .content .title {
  font-weight: 600;
  font-size: 1.2rem;
}

.indemand-skills .skill-slider .skill-card .content .description {
  margin-top: 10px;
}

.indemand-skills .skill-slider .skill-card .content .description p {
  margin: 0;
  font-size: 0.8rem;
}

.indemand-skills .skill-slider .skill-card .content .salary-range {
  color: #FF715B;
  font-weight: 600;
}

.indemand-skills .skill-slider .skill-card .content .salary-range .subtitle {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.indemand-skills .skill-slider .skill-card .content .skill-required .subtitle {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.indemand-skills .skill-slider .skill-card .content .skill-required .skills {
  max-width: 100%;
  overflow: hidden;
}

.indemand-skills .skill-slider .skill-card .content .skill-required .skills .skills-container {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.indemand-skills .skill-slider .skill-card .content .skill-required .skills .skill {
  padding: 5px 10px;
  background-color: #9fa3c565;
  color: #090e36;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin: 5px;
}

@media screen and (max-width: 480px) {
  .indemand-skills .skill-slider .skill-card .content .skill-required .skills .skills-container {
    max-width: 100%;
    padding: 10px;
  }
}

.indemand-skills .arrow-container {
  display: flex;
  margin-top: 0px;
  margin-right: 0;
  width: fit-content;
  float: right;
  align-items: center;
}

.indemand-skills .arrow-container .arrow {
  width: 50px;
  cursor: pointer;
}

.indemand-skills .arrow-container .arrow svg {
  width: 100%;
  object-fit: contain;
  display: block;
}

.contact-section .contact-container {
  display: flex;
  margin-top: 40px;
  gap: 120px;
  position: relative;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .contact-section .contact-container {
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 481px) and (max-width: 1200px) {
  .contact-section .contact-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.contact-section .contact-container::after {
  content: '';
  height: 100%;
  position: absolute;
  background: #090e36;
  width: 2px;
  top: 0;
  left: 35%;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .contact-section .contact-container::after {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1200px) {
  .contact-section .contact-container::after {
    display: none;
  }
}

.contact-section .contact-container .left {
  flex: 1;
}

.contact-section .contact-container .right {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.contact-section .contact-container .right .contact-details {
  max-width: 500px;
}

.contact-section .contact-container .right .contact-details .detail {
  margin-bottom: 20px;
}

.contact-section .contact-container .right .contact-details .detail .icon-container {
  height: 30px;
  width: 30px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .contact-section .contact-container .right .contact-details .detail .icon-container {
    height: 20px;
    width: 20px;
  }
}

.contact-section .contact-container .right .contact-details .detail .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.contact-section .contact-container .right .map-container {
  height: 300px;
  width: 100%;
}

.contact-section .contact-container .right .map-container iframe {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain;
}

.service-section .journery {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  position: relative;
}

.service-section .journery .left {
  flex: 1;
}

.service-section .journery .left svg {
  overflow: visible;
  object-fit: contain;
}

.service-section .journery .left .ball {
  fill: #FF715B;
  height: 40px;
  width: 40px;
}

.service-section .journery .left .line {
  fill: none;
  stroke: #090e36;
  stroke-width: 2px;
  width: 100%;
}

.service-section .journery .left text {
  fill: #090e36;
  font-size: 15px;
  font-family: "Signika Negative", sans-serif;
  visibility: hidden;
}

.service-section .journery .right {
  flex: 1;
  top: 0;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.service-section .journery .right p {
  visibility: hidden;
}

.service-section .journery .right p span {
  color: #FF715B;
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.timeline-section .time-line-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-section .time-line-container .time-frame {
  display: flex;
  margin-top: 200px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame {
    flex-direction: column;
    margin-top: 100px;
  }
}

.timeline-section .time-line-container .time-frame:first-child {
  margin: 0;
}

.timeline-section .time-line-container .time-frame:last-child .left:after {
  content: "";
  height: calc(100%);
  width: 1px;
  background-color: #cdcdcd;
  position: absolute;
  right: 0;
  top: 0;
}

.timeline-section .time-line-container .time-frame .left {
  flex: 2;
  display: flex;
  position: relative;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .left {
    justify-content: flex-start;
  }
}

.timeline-section .time-line-container .time-frame .left .year {
  font-size: 1.5rem;
  position: sticky;
  top: 15%;
  height: fit-content;
  width: 100%;
  padding-right: 50px;
}

.timeline-section .time-line-container .time-frame .left .year span {
  font-size: 1rem;
  color: #FF715B;
  font-weight: 600;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .left .year {
    font-size: 1rem;
  }
}

.timeline-section .time-line-container .time-frame .left .year::after {
  content: "––";
  color: #cdcdcd;
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .left .year::after {
    display: none;
    margin: 0;
  }
}

.timeline-section .time-line-container .time-frame .left:after {
  content: "";
  height: calc(100% + 200px);
  width: 1px;
  background-color: #cdcdcd;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .left:after {
    display: none;
  }
}

.timeline-section .time-line-container .time-frame .right {
  flex: 5;
  display: flex;
  justify-content: flex-start;
  margin-left: 50px;
  align-items: flex-start;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .right {
    flex-direction: column-reverse;
    margin: 0;
  }
}

.timeline-section .time-line-container .time-frame .right .text-container {
  flex: 1;
  margin-top: 20px;
  text-align: justify;
}

.timeline-section .time-line-container .time-frame .right .text-container .title {
  font-size: 2rem;
  font-weight: 500;
}

.timeline-section .time-line-container .time-frame .right .text-container .subtitle {
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 10px;
}

.timeline-section .time-line-container .time-frame .right .text-container .subtitle:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 50%;
  bottom: 0;
  left: 0;
  background-color: #090e36;
}

.timeline-section .time-line-container .time-frame .right .text-container p {
  font-weight: 300;
  text-align: justify;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .right .text-container p {
    margin-left: 0;
    margin-right: 0;
  }
}

.timeline-section .time-line-container .time-frame .right .img-container {
  flex: 1;
  height: 500px;
  width: 200px;
  margin-left: 20px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .right .img-container {
    margin: 0;
  }
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .timeline-section .time-line-container .time-frame .right .img-container {
    height: 500px;
    width: 100%;
  }
}

.timeline-section .time-line-container .time-frame .right .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.blog-banner-section .content h5 {
  font-weight: 600;
  color: #FF715B;
}

.blog-banner-section .content h1 {
  font-size: 3rem;
  line-height: 50px;
}

.blog-banner-section .content p {
  margin-top: 20px;
  text-align: justify;
}

.blog-banner-section .content p span {
  font-weight: 900;
}

.blog-container {
  margin-top: 50px;
  display: flex;
  position: relative;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container {
    flex-direction: column;
  }
}

.blog-container .left {
  flex: 1;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .left form {
    display: none;
  }
}

.blog-container .left form .search-container {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #bebebe;
  border-radius: 5px;
  font-size: 0.8rem;
}

.blog-container .left form .search-container .icon-container {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.blog-container .left form .search-container .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.blog-container .left form .search-container .icon-container svg path {
  stroke: #bebebe;
}

.blog-container .left form .search-container input {
  padding: 10px 0;
  border: none;
  outline: none;
  font-size: 0.8rem;
}

.blog-container .left form .search-container input::placeholder {
  color: #bebebe;
}

.blog-container .left ul {
  margin-top: 20px;
  list-style: none;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .left ul {
    margin-bottom: 5px;
  }
}

.blog-container .left ul span {
  font-weight: 500;
  color: #090e36;
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.blog-container .left ul a li {
  padding: 10px 20px;
  color: #909090;
  margin-top: 20px;
  font-size: 0.8rem;
  border-radius: 5px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .left ul a li {
    display: none;
  }
}

.blog-container .left ul a .active {
  color: #090e36;
  background-color: #f8f8f8;
}

.blog-container .left select {
  display: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #bebebe;
  font-size: 0.8rem;
  outline: none;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .left select {
    display: block;
  }
}

.blog-container .right {
  flex: 5;
  margin-left: 50px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right {
    margin: 0;
    margin-top: 50px;
  }
}

.blog-container .right .feature-blog {
  display: flex;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog {
    flex-direction: column;
  }
}

.blog-container .right .feature-blog .left {
  flex: 2;
}

.blog-container .right .feature-blog .left .blog-img {
  height: 300px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .left .blog-img {
    height: 300px;
  }
}

.blog-container .right .feature-blog .left .blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-container .right .feature-blog .right {
  flex: 2;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right {
    margin-top: 10px;
  }
}

.blog-container .right .feature-blog .right .tag {
  display: flex;
}

.blog-container .right .feature-blog .right .tag .category {
  padding: 10px;
  cursor: pointer;
}

.blog-container .right .feature-blog .right .tag .category,
.blog-container .right .feature-blog .right .tag .read-time {
  padding: 5px;
  border-radius: 10px;
  background-color: #FF715B;
  color: white;
  font-size: 0.7rem;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right .tag .category,
.blog-container .right .feature-blog .right .tag .read-time {
    padding: 5px;
  }
}

.blog-container .right .feature-blog .right .tag .read-time {
  background-color: #ff715b23;
  color: #FF715B;
  margin-left: 10px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right .tag .read-time {
    margin-left: 10px;
  }
}

.blog-container .right .feature-blog .right .blog-title {
  margin-top: 20px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right .blog-title {
    margin-top: 10px;
  }
}

.blog-container .right .feature-blog .right .blog-title h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #090e36;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right .blog-title h2 {
    font-size: 1.5rem;
  }
}

.blog-container .right .feature-blog .right .blog-short-description p,
.blog-container .right .feature-blog .right .blog-short-description ul,
.blog-container .right .feature-blog .right .blog-short-description li,
.blog-container .right .feature-blog .right .blog-short-description ol {
  font-size: 0.8rem;
  color: #636363;
}

.blog-container .right .feature-blog .right .readmore {
  padding: 10px;
  border: 1px solid #090e36;
  border-radius: 5px;
  color: #090e36;
  width: fit-content;
  cursor: pointer;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .feature-blog .right .readmore {
    font-size: 0.8rem;
    padding: 10px;
  }
}

.blog-container .right .blog-grid-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.blog-container .right .blog-grid-container .blog-card .blog-img {
  height: 200px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .blog-img {
    height: 300px;
  }
}

.blog-container .right .blog-grid-container .blog-card .blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-container .right .blog-grid-container .blog-card .tag {
  display: flex;
  margin-top: 20px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .tag {
    margin-top: 10px;
  }
}

.blog-container .right .blog-grid-container .blog-card .tag .category,
.blog-container .right .blog-grid-container .blog-card .tag .read-time {
  padding: 5px;
  border-radius: 10px;
  background-color: #FF715B;
  color: white;
  font-size: 0.7rem;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .tag .category,
.blog-container .right .blog-grid-container .blog-card .tag .read-time {
    padding: 5px;
  }
}

.blog-container .right .blog-grid-container .blog-card .tag .read-time {
  background-color: #ff715b23;
  color: #FF715B;
  margin-left: 10px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .tag .read-time {
    margin-left: 10px;
  }
}

.blog-container .right .blog-grid-container .blog-card .blog-title {
  margin-top: 20px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .blog-title {
    margin-top: 10px;
  }
}

.blog-container .right .blog-grid-container .blog-card .blog-title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #090e36;
}

.blog-container .right .blog-grid-container .blog-card .blog-short-description {
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card .blog-short-description {
    display: block;
  }
}

.blog-container .right .blog-grid-container .blog-card .blog-short-description p {
  font-size: 0.8rem;
  color: #bbbbbb;
}

.blog-container .right .blog-grid-container .blog-card a .readmore {
  margin-top: 20px;
  padding: 5px 10px;
  border: 1px solid #090e36;
  border-radius: 5px;
  color: #090e36;
  width: fit-content;
  cursor: pointer;
  font-size: 0.8rem;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
  .blog-container .right .blog-grid-container .blog-card a .readmore {
    font-size: 0.8rem;
    padding: 10px;
  }
}

/* Blog Cover Styles */
.blog-cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 80%;
  /* Set a max width for the cover container */
  margin: 0 auto;
  /* Center align the cover container */
}

.blog-cover img {
  width: 100%;
  height: auto;
  /* Allow the image to maintain its aspect ratio */
  display: block;
  /* Remove any residual spacing */
  margin: 0 auto;
  /* Center align the image within the container */
}

/* Blog Content Styles */
.blog-content {
  padding: 0 20px;
  /* Add left and right padding */
  background-color: #f7f7f7;
}

.blog-content .blog-title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
}

.blog-content .blog-description {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .blog-content {
    padding: 0 10px;
    /* Adjust left and right padding */
  }
  .blog-content .blog-title {
    font-size: 24px;
    margin: 10px 0;
  }
  .blog-content .blog-description {
    font-size: 16px;
  }
}

.blog-detail {
  border: 1px solid #ddd;
  padding: 2rem;
  text-align: center;
}

.blog-detail .blog-detail img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.blog-detail .content {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .blog-detail {
    padding: 1rem;
  }
}

.payment-section {
  display: flex;
  border: 1px solid whitesmoke;
  border-radius: 5px;
  padding: 10px 20px;
  gap: 40px;
  align-items: center;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .payment-section {
    flex-direction: column-reverse;
    padding: 0;
    align-items: inherit;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .payment-section {
    flex-direction: column-reverse;
    padding: 0;
    align-items: inherit;
  }
}

.payment-section .left {
  flex: 2;
  border-right: 1px solid #B9B9B9;
  position: relative;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .payment-section .left {
    border: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
  .payment-section .left {
    border: 0;
  }
}

.payment-section .left .card {
  border-radius: 10px;
  min-height: 500px;
  position: relative;
  display: none;
}

.payment-section .left .card .content {
  padding: 40px;
}

.payment-section .left .card .content .plan-type {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.payment-section .left .card .content .plan-type .icon-container {
  height: 60px;
  width: 60px;
  margin-right: 20px;
}

.payment-section .left .card .content .plan-type .icon-container svg {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.payment-section .left .card .content .description {
  margin-top: 20px;
  font-size: 0.8rem;
}

.payment-section .left .card .content .price {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 1000;
}

.payment-section .left .card .content .feature {
  margin-top: 20px;
}

.payment-section .left .card .content .feature span {
  font-weight: 600;
}

.payment-section .left .card .content .feature ul {
  list-style: none;
  margin-top: 10px;
}

.payment-section .left .card .content .feature ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.payment-section .left .card .content .feature ul li .icon-container {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.payment-section .left .card .content .feature ul li .icon-container svg {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.payment-section .left .card .content .get-started a {
  margin-top: 40px;
  width: 100%;
  padding: 20px 20px;
  text-align: center;
  background-color: #FF715B;
  color: white;
  font-weight: 800;
  border-radius: 5px;
  position: absolute;
  left: 40px;
  right: 40px;
  width: 80%;
  bottom: 40px;
}

.payment-section .left .active {
  display: block;
}

.payment-section .left .payment-footer {
  border-top: 1px solid #ebebeb;
  margin: 20px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.payment-section .left .payment-footer a {
  color: #3a3a3a;
  transition: all 0.5s ease;
}

.payment-section .left .payment-footer a:hover {
  color: #FF715B;
}

.payment-section .left .payment-footer .support a {
  display: flex;
  align-items: center;
}

.payment-section .left .payment-footer .support .img-container {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.payment-section .left .payment-footer .support .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.payment-section .right {
  flex: 3;
  padding: 40px;
}

.payment-section .right .title h3 {
  font-size: 2rem;
}

.payment-section .right .form-group-container {
  display: flex;
  align-items: center;
}

.payment-section .right .form-group-container button {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  background: #030B2A;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.payment-section .right .form-group-container button span {
  color: white;
  font-weight: 600;
  font-style: italic;
}

.payment-section .right .form-group-container button .icon-container {
  height: 20px;
  margin-left: 10px;
}

.payment-section .right .form-group-container button .icon-container svg {
  height: 100%;
  object-fit: contain;
}

.payment-section .right .form-group-container .cancel-btn {
  padding: 10px 20px;
  border-radius: 5px;
  color: #636363;
  background-color: #ebebeb;
}

.payment-section .right .disclaimer {
  margin-top: 20px;
  color: #090e36;
  font-weight: 600;
}

.payment-section .right .disclaimer span {
  color: #858383;
  font-size: 0.8rem;
}

.payment-section .right .disclaimer span a {
  color: #FF715B;
}

section {
  margin-top: 150px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  section {
    margin-top: 80px;
  }
}

.title .subtitle {
  font-weight: 700;
  color: #FF715B;
  font-size: 18px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .title .subtitle {
    font-size: 14px;
  }
}

.title h2 {
  font-weight: 700;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .title h2 {
    line-height: 30px;
  }
}

.title h6 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #090e36;
}

.cta {
  margin-top: 20px;
}

.cta a {
  display: flex;
  align-items: center;
  color: #FF715B;
  font-weight: 600;
}

.cta a .icon-container {
  margin-left: 20px;
  width: 30px;
  transition: all 0.5s ease;
}

.cta a .icon-container svg {
  height: 100%;
  width: 100%;
  display: block;
}

.cta a:hover .icon-container {
  margin-left: 40px;
}

.btn-container {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.btn-container a .border-btn {
  font-weight: 600;
  color: #FF715B;
  border: 1px solid #FF715B;
  color: #FF715B;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-container a .blue-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
  background-color: #090e36;
}

form .form-group-container {
  margin-bottom: 20px;
}

form .form-group-container .form-group {
  display: flex;
  flex-direction: column;
}

form .form-group-container .form-group:focus-within label {
  color: #FF715B;
}

form .form-group-container .form-group:focus-within input,
form .form-group-container .form-group:focus-within textarea {
  border-color: #FF715B;
}

form .form-group-container .form-group label {
  margin-bottom: 5px;
  color: #090e36;
}

form .form-group-container .form-group input,
form .form-group-container .form-group textarea {
  padding: 10px 20px;
  border: 1px solid #B9B9B9;
  outline: none;
  border-radius: 5px;
  color: #090e36;
  width: 100%;
}

form .form-group-container .form-group .submit {
  width: fit-content;
  color: white;
  font-weight: 600;
  background-color: #FF715B;
  border: none;
  cursor: pointer;
}

.thankyou-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}

.thankyou-container .thank-you-content {
  text-align: center;
  max-width: 400px;
  padding: 30px;
  padding-top: 30vh;
}

.thankyou-container .thank-you-content h2 {
  font-size: 36px;
}

.thankyou-container .thank-you-content p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .thank-you-content {
    padding: 20px;
  }
  .thank-you-content h2 {
    font-size: 24px;
  }
  .thank-you-content p {
    font-size: 16px;
  }
}
