@import url("https://fonts.googleapis.com/css2?family=Fira+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&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

.btn {
  border-radius: 84px;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid;
  font-weight: 500;
}
.btn.secondary {
  border: none;
  color: #ffffff;
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
}

nav {
  user-select: none;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
}
@media (max-width: 992px) {
  nav {
    padding: 10px 15px;
  }
}
@media (min-width: 993px) {
  nav {
    padding: 15px 50px;
  }
}
nav .container {
  max-width: 1600px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  padding: 15px 0;
  justify-content: space-between;
}
@media (max-width: 992px) {
  nav .container {
    position: relative;
  }
}
nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
nav .logo img {
  margin-right: 5px;
  display: block;
  user-select: none;
  width: 45px;
}
nav .logo .logo-title {
  font-size: 30px;
  font-weight: 500;
  color: #2323FF;
  text-decoration: none;
  text-transform: capitalize;
}
nav .logo .logo-title span {
  font-weight: 350;
}
@media (max-width: 800px) {
  nav .btn {
    font-size: 18px;
    padding: 12px 25px;
  }
}
nav .burger-menu {
  width: 40px;
  height: 39px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
}
@media (min-width: 993px) {
  nav .burger-menu {
    display: none;
  }
}
nav .burger-menu.active span:first-child {
  opacity: 0;
}
nav .burger-menu.active span:nth-child(2) {
  transform: rotate(-45deg);
}
nav .burger-menu.active span:nth-child(3) {
  display: block;
  transform: rotate(45deg);
}
nav .burger-menu.active span:last-child {
  opacity: 0;
}
nav .burger-menu span {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
}
nav .burger-menu span:first-child {
  top: 0;
  transition: opacity 0.25s;
}
nav .burger-menu span:nth-child(2), nav .burger-menu span:nth-child(3) {
  top: 13px;
  transform-origin: center center;
  transition: transform 0.25s;
}
nav .burger-menu span:last-child {
  top: 26px;
  transition: opacity 0.25s;
}
nav .custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
}
nav .custom-modal {
  position: fixed;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-image: linear-gradient(to right, #2323FF, #151599, #EC4899), url("../images/Shapes.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding: 35px 20px 20px 20px;
  z-index: 100;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
@media (max-width: 600px) {
  nav .custom-modal {
    max-width: 400px;
  }
}
@media (max-width: 450px) {
  nav .custom-modal {
    max-width: 350px;
  }
}
nav .custom-modal .content {
  margin: 15px auto;
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  nav .custom-modal .content {
    width: 100%;
  }
}
nav .custom-modal.active {
  bottom: 50%;
  transform: translate(-50%, 50%);
  opacity: 1;
}
nav .modal-content {
  position: relative;
}
nav .modal-content h2 {
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}
nav .modal-content p {
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  padding: 0px 50px;
  color: #ffffff;
}
nav .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.btn-wrapper {
  margin-bottom: 0 !important;
}

.custom-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
}
.custom-input span {
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
}
.custom-input .name-input {
  border: none;
  border-radius: 10px;
  padding: 10px;
}
.custom-input .name-input:focus {
  outline: none;
}
.custom-input .name-input::placeholder {
  color: #6B7280;
  font-size: 15px;
  font-weight: 300;
}
.custom-input .input-btn {
  margin-top: 10px;
  border: none;
  background-color: #F27FB8;
  font-size: 15px;
  padding: 10px;
  color: #ffffff;
  border-radius: 20px;
  cursor: pointer;
}

.waitlist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  width: 450px;
  padding: 5px;
  background-color: #ffffff;
  border: 1px solid #2323FF;
  border-radius: 50px;
}
.waitlist input {
  width: 70%;
  border: none;
  padding: 10px;
}
.waitlist input:focus {
  outline: none;
}
.waitlist input::placeholder {
  color: #D1D5DB;
  font-size: 15px;
  font-weight: 300;
}
.waitlist .btn {
  width: 30%;
  font-size: 15px;
  padding: 15px;
}
@media (max-width: 991px) {
  .waitlist {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .waitlist {
    width: 100%;
  }
}

.hero {
  background-color: #F2F2FF;
  padding: 200px 0 0;
}
@media (max-width: 500px) {
  .hero {
    padding-top: 100px;
  }
}
.hero .container {
  margin: auto;
  max-width: 1700px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .hero .container {
    max-width: 1400px;
  }
}
@media (max-width: 991px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
}
.hero .container .left {
  padding: 50px 0;
  width: 80%;
  justify-content: left;
}
@media (min-width: 992px) and (max-width: 1800px) {
  .hero .container .left {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .hero .container .left {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero .container .left .top-sparkles {
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 30px;
}
.hero .container .left .top-sparkles img {
  margin-right: 10px;
  display: block;
  user-select: none;
}
.hero .container .left .top-sparkles .title {
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .hero .container .left .top-sparkles {
    margin: auto;
  }
}
.hero .container .left .mid {
  user-select: none;
  padding: 20px 0px;
}
.hero .container .left .mid .title {
  font-size: 100px;
  line-height: 100px;
  font-weight: 1000;
}
.hero .container .left .mid .title span {
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .hero .container .left .mid .title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1023px) {
  .hero .container .left .mid .title {
    font-size: 55px;
    line-height: 55px;
  }
}
@media (max-width: 800px) {
  .hero .container .left .mid .title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 600) {
  .hero .container .left .mid .title {
    font-size: 40px;
    line-height: 40px;
  }
}
.hero .container .left .mid .sub-title {
  margin-top: 15px;
  width: 50%;
  font-size: 22.5px;
  line-height: 27px;
  font-weight: 200;
  color: #6B7280;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .hero .container .left .mid .sub-title {
    font-size: 18px;
    line-height: 20px;
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1023px) {
  .hero .container .left .mid .sub-title {
    font-size: 18px;
    line-height: 20px;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .hero .container .left .mid .sub-title {
    margin: 20px auto;
    width: 80%;
  }
}
@media (min-width: 400px) and (max-width: 991px) {
  .hero .container .left .mid .sub-title {
    font-size: 18px;
    line-height: 18px;
  }
}
.hero .container .right {
  display: flex;
  justify-content: center;
  width: 40%;
  padding-right: 50px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .hero .container .right img {
    width: 550px;
    height: 500px;
  }
}
@media (max-width: 991px) {
  .hero .container .right {
    padding-right: unset;
  }
  .hero .container .right img {
    width: 450px;
    height: 500px;
  }
}
@media (max-width: 700px) {
  .hero .container .right {
    padding-right: unset;
  }
}

.top {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background-color: #ffffff;
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: transparent;
  border: 1px solid #2323FF;
  border-radius: 30px;
  border: none;
  position: relative;
}
.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 1.4px;
  z-index: 1;
  border-radius: 30px;
  background-color: #ffffff;
}
.top .top-title {
  text-transform: capitalize;
  z-index: 2;
  background: linear-gradient(to right, #2323FF, #151599, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us {
  background-color: #ffffff;
  padding: 70px 0 0;
}
.about-us .container {
  border-top-right-radius: 76px;
  background-image: url("../images/BlueBackground.png");
}
.about-us .container .wrapper {
  padding: 70px 0 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  gap: 20px;
}
@media (max-width: 992px) {
  .about-us .container .wrapper {
    flex-direction: column;
  }
}
.about-us .container .left {
  padding: 50px 0;
  width: 50%;
  justify-content: left;
}
@media (max-width: 1800px) {
  .about-us .container .left {
    padding-left: 30px;
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .about-us .container .left {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: unset;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .about-us .container .left {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-us .container .left .mid {
  width: 500px;
  padding: 20px 0px;
}
.about-us .container .left .mid .title {
  color: #ffffff;
  font-size: 90px;
  line-height: 90px;
  font-weight: 600;
}
@media (min-width: 1201px) and (max-width: 1800px) {
  .about-us .container .left .mid .title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .about-us .container .left .mid .title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 992px) {
  .about-us .container .left .mid {
    width: 100%;
  }
  .about-us .container .left .mid .title {
    font-size: 50px;
    line-height: 50px;
  }
}
.about-us .container .left .bottom {
  margin-top: 15px;
}
.about-us .container .left .bottom .sub-title {
  margin: 15px 0px;
  font-size: 22.5px;
  line-height: 27px;
  font-weight: 200;
  color: #ffffff;
}
@media (min-width: 1200px) and (max-width: 1800px) {
  .about-us .container .left .bottom .sub-title {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1199px) {
  .about-us .container .left .bottom .sub-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.about-us .container .right {
  display: flex;
  justify-content: center;
  width: 50%;
}
@media (max-width: 1800px) {
  .about-us .container .right {
    align-items: end;
  }
  .about-us .container .right img {
    width: 550px;
    height: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-us .container .right {
    align-items: end;
  }
  .about-us .container .right img {
    width: 450px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .about-us .container .right {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .about-us .container .right img {
    width: 450px;
    height: 400px;
  }
}
@media (max-width: 500px) {
  .about-us .container .right img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 400px) {
  .about-us .container .right img {
    width: 350px;
    height: 350px;
  }
}

.features {
  background-color: #ffffff;
  padding: 70px 0 0;
}
.features .container {
  border-top-right-radius: 100px;
  background-image: url("../images/PinkBackground.png");
  background-size: cover;
}
@media (min-width: 1030px) {
  .features .container {
    border-top-right-radius: 55px;
  }
}
.features .container .wrapper {
  padding: 70px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
}
.features .container .left {
  padding: 50px 0;
  width: 100%;
  justify-content: left;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .features .container .left {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .features .container .left {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 500px) {
  .features .container .left {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features .container .left .mid {
  padding: 20px 0px;
}
.features .container .left .mid .title {
  text-transform: capitalize;
  color: #ffffff;
  font-size: 90px;
  line-height: 90px;
  font-weight: 600;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .features .container .left .mid .title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .features .container .left .mid .title {
    font-size: 50px;
    line-height: 50px;
  }
}
.features .container .left .bottom {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1500px;
}
@media (max-width: 1024px) {
  .features .container .left .bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .features .container .left .bottom {
    flex-direction: column;
    align-items: center;
  }
}
.features .container .left .bottom .box {
  border-radius: 20px;
  background-color: rgba(35, 35, 255, 0.6);
  width: 33.33%;
  padding: 50px 35px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .features .container .left .bottom .box {
    padding: 35px 25px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .features .container .left .bottom .box {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 923px) {
  .features .container .left .bottom .box {
    max-width: 600px;
  }
}
@media (max-width: 550px) {
  .features .container .left .bottom .box {
    padding: 30px 25px;
  }
}
.features .container .left .bottom .box .image-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 100%;
  display: grid;
  place-content: center;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .features .container .left .bottom .box .image-wrapper {
    width: 60px;
    height: 60px;
  }
}
.features .container .left .bottom .box .image-wrapper img {
  width: 40px;
}
@media (min-width: 1024px) and (max-width: 1800px) {
  .features .container .left .bottom .box .image-wrapper img {
    width: 30px;
  }
}
.features .container .left .bottom .box .title {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .features .container .left .bottom .box .title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 1023px) {
  .features .container .left .bottom .box .title {
    font-size: 25px;
    line-height: 30px;
  }
}
.features .container .left .bottom .box .description {
  color: #ffffff;
  font-size: 27px;
  line-height: 40px;
  font-weight: 200;
  text-align: left;
}
@media (max-width: 1800px) {
  .features .container .left .bottom .box .description {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 1023px) {
  .features .container .left .bottom .box .description {
    font-size: 18px;
    line-height: 27px;
  }
}

.easy {
  background-color: #ffffff;
  padding: 70px 0 0;
}
.easy .container {
  border-top-right-radius: 90px;
  background-image: url("../images/BlueBackground.png");
}
.easy .container .top-wrapper {
  padding: 70px 0 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  gap: 20px;
}
@media (max-width: 992px) {
  .easy .container .top-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 500px) {
  .easy .container .top-wrapper {
    padding-top: 40px;
  }
}
.easy .container .top-wrapper .top {
  width: 125px;
}
.easy .container .top-wrapper .title {
  font-size: 50px;
  line-height: 50px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .easy .container .top-wrapper .title {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .easy .container .top-wrapper .title {
    font-size: 40px;
    line-height: 40px;
  }
}
.easy .container .top-wrapper .description {
  font-size: 22px;
  line-height: 27px;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  width: 50%;
}
@media (max-width: 992px) {
  .easy .container .top-wrapper .description {
    width: 70%;
    font-size: 18px;
    line-height: 27px;
  }
}
.easy .container .flex-one, .easy .container .flex-two {
  max-width: 1400px;
  padding: 10px 100px;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: auto;
}
@media (max-width: 992px) {
  .easy .container .flex-one, .easy .container .flex-two {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .easy .container .flex-one, .easy .container .flex-two {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 500px) {
  .easy .container .flex-one, .easy .container .flex-two {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.easy .container .flex-one .flexbox-one, .easy .container .flex-two .flexbox-one {
  border-radius: 10px;
  padding: 20px;
  background-color: #EC4899;
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .easy .container .flex-one .flexbox-one, .easy .container .flex-two .flexbox-one {
    margin: auto;
    width: 100%;
    max-width: 600px;
  }
}
.easy .container .flex-one .flexbox-one .img-wrapper, .easy .container .flex-two .flexbox-one .img-wrapper {
  border-radius: 10px;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 350px;
  background-color: #FBCCFF;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .easy .container .flex-one .flexbox-one .img-wrapper, .easy .container .flex-two .flexbox-one .img-wrapper {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .easy .container .flex-one .flexbox-one .img-wrapper, .easy .container .flex-two .flexbox-one .img-wrapper {
    height: 250px;
  }
}
.easy .container .flex-one .flexbox-one .img-wrapper img, .easy .container .flex-two .flexbox-one .img-wrapper img {
  display: block;
  user-select: none;
  width: 65%;
}
.easy .container .flex-one .flexbox-one .content, .easy .container .flex-two .flexbox-one .content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.easy .container .flex-one .flexbox-one .content .title, .easy .container .flex-two .flexbox-one .content .title {
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
}
@media (max-width: 1800px) {
  .easy .container .flex-one .flexbox-one .content .title, .easy .container .flex-two .flexbox-one .content .title {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 1023px) {
  .easy .container .flex-one .flexbox-one .content .title, .easy .container .flex-two .flexbox-one .content .title {
    font-size: 20.5px;
  }
}
.easy .container .flex-one .flexbox-one .content .description, .easy .container .flex-two .flexbox-one .content .description {
  font-size: 20px;
  line-height: 25px;
  font-weight: 200;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 1800px) {
  .easy .container .flex-one .flexbox-one .content .description, .easy .container .flex-two .flexbox-one .content .description {
    font-size: 20px;
    line-height: 27px;
  }
}
@media (max-width: 1023px) {
  .easy .container .flex-one .flexbox-one .content .description, .easy .container .flex-two .flexbox-one .content .description {
    font-size: 18px;
  }
}
.easy .container .flex-one .flexbox-one:nth-child(2), .easy .container .flex-two .flexbox-one:nth-child(2) {
  background-color: #2323FF;
}
.easy .container .flex-one .flexbox-one:nth-child(2) .img-wrapper, .easy .container .flex-two .flexbox-one:nth-child(2) .img-wrapper {
  background-color: #CDCDFF;
}
.easy .container .flex-two {
  padding-bottom: 70px;
}
.easy .container .flex-two .flexbox-one {
  background-color: #2323FF;
}
.easy .container .flex-two .flexbox-one .img-wrapper {
  background-color: #CDCDFF;
}
.easy .container .flex-two .flexbox-one:nth-child(2) {
  background-color: #EC4899;
}
.easy .container .flex-two .flexbox-one:nth-child(2) .img-wrapper {
  background-color: #FBCCFF;
}

.footer {
  background-color: #ffffff;
  padding: 70px 0 0;
}
.footer .container {
  border-top-right-radius: 90px;
  background-image: url("../images/PinkBackground.png");
}
.footer .container .top-wrapper {
  padding: 70px 0 100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer .container .top-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .container .top-wrapper .top {
  width: 125px;
}
.footer .container .top-wrapper .title {
  font-size: 50px;
  line-height: 50px;
  color: #ffffff;
}
@media (max-width: 600px) {
  .footer .container .top-wrapper .title {
    font-size: 40px;
    line-height: 40px;
  }
}
.footer .container .top-wrapper .description {
  font-size: 22px;
  line-height: 27px;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  width: 50%;
}
@media (max-width: 1800px) {
  .footer .container .top-wrapper .description {
    font-size: 18px;
    line-height: 27px;
    width: 30%;
  }
}
@media (max-width: 1023px) {
  .footer .container .top-wrapper .description {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .footer .container .top-wrapper .description {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
