@import url(https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&display=swap);
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
body {
  background-color: #22242f;
  overflow-x: hidden;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .container {
    width: 95%;
  }
}
.fa-chevron-up {
  background: -o-linear-gradient(347deg, #503e9d 0, #5b7bfb 100%);
  background: linear-gradient(103deg, #503e9d 0, #5b7bfb 100%);
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 38px;
  position: fixed;
  bottom: 10px;
  right: 12px;
  display: none;
  font-size: 1.3rem;
  z-index: 33;
  text-align: center;
}
body.active {
  overflow: hidden;
}
.navbar-up {
  width: 100%;
  z-index: 333;
  position: fixed;
  background-color: #22242f;
}
.navbar-up.resize {
  background-color: #22242f;
  -webkit-box-shadow: #000 0 0 15px -1px;
  box-shadow: #000 0 0 15px -1px;
}
.navbar-up.resize nav {
  padding: 5px 0;
  border-bottom-color: transparent;
}
.navbar-up.resize .nav-logo {
  font-size: 22px;
}
.navbar-up.resize .button a,
.navbar-up.resize .nav-link {
  font-size: 14px !important;
}
@media (max-width: 991.98px) {
  .navbar-up.resize .close {
    top: 17px !important;
  }
  .navbar-up.resize .nav-parent {
    padding: 45px 50px 13px;
  }
}
.navbar-up nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 18px 0;
  position: relative;
}
@media (min-width: 992px) {
  .navbar-up nav {
    border-bottom: 4px solid #615bdb;
  }
}
@media (max-width: 991.98px) {
  .navbar-up nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.navbar-up nav .nav-logo {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
  text-decoration: none;
  font-family: "Dela Gothic One", cursive;
  margin: 8px 0;
}
.navbar-up nav .nav-parent {
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .navbar-up nav .nav-parent {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 60px 50px 50px;
    border-bottom-left-radius: 62px;
    background-color: #22242f;
    -webkit-box-shadow: inset 1px 0 7px 0 #503e9d;
    box-shadow: inset 1px 0 7px 0 #503e9d;
  }
  .navbar-up nav .nav-parent.active {
    top: 0;
  }
}
.navbar-up nav .nav-parent .close {
  cursor: pointer;
  width: 35px;
  height: 30px;
  background-image: url("../img/Small_Icons/Close_Menu_Mobile_Icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 18px;
  top: 32px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar-up nav .nav-parent .nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 991.98px) {
  .navbar-up nav .nav-parent .nav-menu {
    background-color: #22242f;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 100%;
  }
  .navbar-up nav .nav-parent .nav-menu:after {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    height: 5px;
    width: 85%;
    border-radius: 6%;
    background-color: #615bdb;
  }
}
.navbar-up nav .nav-parent .nav-menu .nav-item.active a {
  color: #ffaf26 !important;
}
.navbar-up nav .nav-parent .nav-menu .nav-item:not(:last-of-type) {
  margin-right: 30px;
}
.navbar-up nav .nav-parent .nav-menu .nav-item .nav-link {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .navbar-up nav .nav-parent .nav-menu .nav-item .nav-link {
    padding-left: 0;
  }
}
.navbar-up nav .nav-parent .nav-menu .nav-item .nav-link:hover {
  color: #ffaf26;
}
.navbar-up .bars {
  display: none;
  z-index: 111;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}
@media (max-width: 991.98px) {
  .navbar-up .bars {
    display: block;
    cursor: pointer;
    width: 35px;
    height: 25px;
    background-image: url("../img/Small_Icons/Hamburger_Menu_Mobile_Icon.png");
    background-size: 35px 25px;
    background-repeat: no-repeat;
  }
}
.navbar-up .bars.active {
  opacity: 0;
}
.header {
  padding: 230px 0 50px;
  overflow-x: clip;
  position: relative;
}
@media (max-width: 1399.98px) {
  .header {
    padding-top: 200px;
  }
}
@media (max-width: 991.98px) {
  .header {
    padding-top: 160px;
  }
}
@media (min-width: 992px) {
  .header::after {
    content: "";
    background-image: url("../img/Illustrations/Asset 1@4x.png");
    position: absolute;
    background-size: 60% 686px;
    background-repeat: no-repeat;
    width: 66%;
    height: 100%;
    right: 0;
    top: 150px;
    background-position: top right;
    z-index: -1;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .header::after {
    background-size: 55% 525px;
    top: 153px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header::after {
    font-size: 49px;
    line-height: 64px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header::after {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.header .circle-bg {
  content: "";
  background-image: url("../img/Illustrations/Ellipse.png");
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -418px;
  left: -339px;
  z-index: -1;
  -webkit-filter: blur(16px);
  filter: blur(16px);
  background-size: contain;
}
@media (max-width: 991.98px) {
  .header .circle-bg {
    bottom: 50px;
    right: -253px;
    left: auto;
    height: 60%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-filter: blur(46px);
    filter: blur(46px);
  }
}
@media (max-width: 575.98px) {
  .header .circle-bg {
    background-size: cover;
    background-position: right;
    bottom: -5px;
    right: -201px;
    height: 662px;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
}
@media (max-width: 385px) {
  .header .circle-bg {
    bottom: -1px;
    right: -91px;
    height: 60%;
  }
}
.header .circle-group {
  content: "";
  background-image: url("../img/Illustrations/Mask Group 1.png");
  opacity:0.3;
  position: absolute;
  width: 100%;
  height: 485px;
  background-repeat: no-repeat;
  bottom: -211px;
  left: -179px;
  background-size: 497px 493px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .header .circle-group {
    bottom: -265px;
    left: -197px;
  }
}
@media (max-width: 991.98px) {
  .header .circle-group {
    bottom: 20px;
    right: -83px;
    left: auto;
    background-position: right;
    background-size: 535px 493px;
  }
}
@media (max-width: 575.98px) {
  .header .circle-group {
    bottom: -33px;
    right: -212px;
  }
}
@media (max-width: 385px) {
  .header .circle-group {
    bottom: -23px;
    right: -127px;
    height: 42%;
    background-size: cover;
  }
}
@media (max-width: 991.98px) {
  .header .info {
    text-align: center;
  }
}
.header .info h1 {
  color: #fff;
  font-size: 64px;
  line-height: 74px;
  font-family: "Dela Gothic One", cursive;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.header .info h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 95px;
  background-color: #ffaf26;
}
@media (max-width: 991.98px) {
  .header .info h1:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 97px;
  }
}
@media (max-width: 575.98px) {
  .header .info h1:after {
    width: 64px;
  }
}
@media (max-width: 1399.98px) {
  .header .info h1 {
    font-size: 54px;
    line-height: 71px;
  }
}
@media (max-width: 1199.98px) {
  .header .info h1 {
    font-size: 49px;
    line-height: 64px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .header .info h1 {
    font-size: 40px;
    line-height: 49px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  .header .info h1 {
    font-size: 22px;
    line-height: 37px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.header .info p {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}
@media (max-width: 1399.98px) {
  .header .info p {
    font-size: 27px;
  }
}
@media (max-width: 1199.98px) {
  .header .info p {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  .header .info p {
    font-size: 27px;
  }
}
@media (max-width: 575.98px) {
  .header .info p {
    font-size: 17px;
  }
}
.header .info p ~ img {
  -webkit-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  transform: rotate(8deg);
  max-width: 80%;
  margin-top: 130px;
  width: 100%;
}
.header .info a {
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(347deg, #503e9d 0, #5b7bfb 100%);
  background: linear-gradient(103deg, #503e9d 0, #5b7bfb 100%);
  font-size: 16px;
  padding: 13px 30px;
  margin-top: 100px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  z-index: 3;
}
@media (max-width: 1399.98px) {
  .header .info a {
    margin-top: 90px;
  }
}
@media (max-width: 1199.98px) {
  .header .info a {
    margin-top: 80px;
  }
}
@media (max-width: 575.98px) {
  .header .info a {
    font-size: 13px;
    padding: 13px 20px;
  }
}
.partners .responsive-slicky .slick-slide {
  height: 157px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.partners .responsive-slicky .slick-slide img {
  width: 157px;
}
.partners {
  margin-top: 75px;
  padding-top: 30px;
  position: relative;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .partners {
    text-align: center;
  }
}
.partners h2 {
  color: #fff;
  font-size: 43px;
  line-height: 74px;
  font-family: "Dela Gothic One", cursive;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .partners h2 {
    font-size: 37px;
    line-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .partners h2 {
    font-size: 30px;
    line-height: 49px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .partners h2 {
    font-size: 20px;
    line-height: 37px;
  }
}
.partners p {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 1399.98px) {
  .partners p {
    font-size: 26px;
  }
}
@media (max-width: 1199.98px) {
  .partners p {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .partners p {
    font-size: 14px;
  }
}
.partners .partners-slicky {
  width: 90%;
  margin: 90px auto 25px;
}
@media (max-width: 991.98px) {
  .partners .partners-slicky {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .partners .partners-slicky {
    width: 80%;
  }
}
.partners .partners-slicky .slick-slide {
  height: 157px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .partners .partners-slicky .slick-slide {
    height: 95px;
  }
}
.partners .partners-slicky .slick-slide img {
  width: 157px;
}
@media (max-width: 767.98px) {
  .partners .partners-slicky .slick-slide img {
    max-width: 95px;
    width: 100%;
  }
}
.partners .partners-slicky .slick-dots {
  left: 0;
}
@media (max-width: 767.98px) {
  .partners .partners-slicky .slick-dots {
    bottom: -35px;
  }
}
@media (max-width: 767.98px) {
  .partners .partners-slicky .slick-dots li {
    width: 33px;
  }
}
.partners .counts {
  margin-top: 180px;
  width: 90%;
}
@media (max-width: 991.98px) {
  .partners .counts {
    margin-top: 150px;
  }
}
.partners .counts h3 {
  color: #635ee2;
  font-size: 70px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .partners .counts h3 {
    font-size: 59px;
  }
}
@media (max-width: 575.98px) {
  .partners .counts h3 {
    font-size: 47px;
  }
}
.partners .counts span {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .partners .counts span {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .partners .counts span {
    font-size: 16px;
  }
}
.services {
  margin-top: 90px;
  padding-top: 30px;
  position: relative;
  overflow-x: clip;
}
@media (max-width: 991.98px) {
  .services {
    text-align: center;
  }
}
.services::after {
  content: "";
  background-image: url("../img/Illustrations/Mask Group 1.png");
  opacity:0.3;
  position: absolute;
  width: 100%;
  height: 511px;
  background-repeat: no-repeat;
  top: 95px;
  right: -111px;
  background-size: contain;
  background-position: right;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .services::after {
    background-size: 70% 416px;
    background-position: left;
    top: -67px;
    left: -188px;
    height: 450px;
    right: auto;
  }
}
@media (max-width: 575.98px) {
  .services::after {
    background-size: 70% 336px;
    top: -95px;
    left: -85px;
  }
}
.services .circle-bg {
  content: "";
  background-image: url("../img/Illustrations/Ellipse.png");
  position: absolute;
  width: 100%;
  height: 70%;
  background-repeat: no-repeat;
  position: absolute;
  top: -256px;
  right: -300px;
  z-index: -1;
  -webkit-filter: blur(16px);
  filter: blur(16px);
  background-size: contain;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .services .circle-bg {
    top: -56px;
    left: -176px;
    right: auto;
    height: 53%;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-filter: blur(46px);
    filter: blur(46px);
  }
}
@media (max-width: 575.98px) {
  .services .circle-bg {
    left: -184px;
    height: 448px;
  }
}
.services h2 {
  color: #fff;
  font-size: 43px;
  line-height: 74px;
  font-family: "Dela Gothic One", cursive;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .services h2 {
    font-size: 37px;
    line-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .services h2 {
    font-size: 30px;
    line-height: 49px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .services h2 {
    font-size: 20px;
    line-height: 37px;
    margin-bottom: 20px;
  }
}
.services h2 ~ p {
  margin-bottom: 150px;
}
@media (max-width: 991.98px) {
  .services h2 ~ p {
    margin-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  .services h2 ~ p {
    font-size: 14px;
  }
}
.services p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.services a {
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(347deg, #503e9d 0, #5b7bfb 100%);
  background: linear-gradient(103deg, #503e9d 0, #5b7bfb 100%);
  font-size: 18px;
  padding: 15px 30px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  display: inline-block;
  margin: 100px auto 0;
}
@media (max-width: 991.98px) {
  .services a {
    margin-top: 50px;
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .services a {
    padding: 13px 20px;
  }
}
.services .service {
  text-align: center;
  border-radius: 24px;
  background-color: #505065;
  padding: 10px 35px 45px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services .service {
    padding: 10px 24px 38px;
  }
}
@media (min-width: 992px) {
  .services .service.special {
    margin-top: -50px;
  }
}
@media (max-width: 991.98px) {
  .services .service {
    text-align: left;
    padding: 25px 15px;
    margin: auto;
  }
}
@media (max-width: 575.98px) {
  .services .service {
    padding: 25px 0;
  }
}
.services .service .image {
  max-width: 150px;
  max-height: 150px;
  margin: auto;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services .service .image {
    max-width: 120px;
    max-height: 120px;
  }
}
@media (max-width: 767.98px) {
  .services .service .image {
    max-width: 90%;
    min-width: 110px;
  }
}
.services .service .image img {
  position: relative;
  z-index: 2;
}
.services .service .image:after {
  content: "";
  background-color: #5b7bfb;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 100%;
  border-radius: 50%;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.services .service h3 {
  font-size: 22px;
  line-height: 29px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: 5px;
  position: relative;
}
.services .service h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: #5a75f2;
}
@media (max-width: 991.98px) {
  .services .service h3:after {
    width: 215px;
  }
}
@media (max-width: 767.98px) {
  .services .service h3:after {
    width: 135px;
  }
}
@media (max-width: 575.98px) {
  .services .service h3:after {
    width: 95px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services .service h3 {
    font-size: 17px;
    line-height: 22px;
  }
}
@media (max-width: 991.98px) {
  .services .service h3 {
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .services .service h3 {
    font-size: 20px;
    line-height: 27px;
  }
}
@media (max-width: 575.98px) {
  .services .service h3 {
    font-size: 14px;
    line-height: 21px;
  }
}
.services .service p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  width: 90%;
  margin: auto;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services .service p {
    font-size: 12px;
    line-height: 17px;
    width: 95%;
  }
}
@media (max-width: 991.98px) {
  .services .service p {
    margin: 0;
    padding-right: 5px;
  }
}
@media (max-width: 767.98px) {
  .services .service p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 575.98px) {
  .services .service p {
    margin: 0;
    font-size: 10px;
    line-height: 16px;
  }
}
.services .service h3,
.services .service p {
  position: relative;
  z-index: 1;
}
.projects {
  margin-top: 90px;
  padding-top: 30px;
  position: relative;
  overflow-x: clip;
}
@media (max-width: 991.98px) {
  .projects {
    text-align: center;
  }
}
.projects::after {
  content: "";
  background-image: url("../img/Illustrations/Mask Group 1.png");
  opacity:0.3;
  position: absolute;
  width: 100%;
  height: 511px;
  background-repeat: no-repeat;
  top: -55px;
  left: -95px;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .projects::after {
    height: 569px;
    top: 25px;
    right: -150px;
    background-position: right;
    left: auto;
  }
}
@media (max-width: 767.98px) {
  .projects::after {
    height: 496px;
    top: 32px;
  }
}
@media (max-width: 575.98px) {
  .projects::after {
    height: 358px;
    top: 25px;
    right: -116px;
  }
}
.projects .circle-bg {
  content: "";
  background-image: url("../img/Illustrations/Ellipse.png");
  position: absolute;
  width: 100%;
  height: 102%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -309px;
  left: -294px;
  z-index: -1;
  -webkit-filter: blur(16px);
  filter: blur(16px);
  background-size: contain;
}
@media (max-width: 991.98px) {
  .projects .circle-bg {
    bottom: -776px;
    right: -200px;
    left: auto;
    height: 90%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-filter: blur(46px);
    filter: blur(46px);
  }
}
@media (max-width: 575.98px) {
  .projects .circle-bg {
    bottom: -584px;
    height: 460px;
    background-size: cover;
  }
}
.projects h2 {
  color: #fff;
  font-size: 43px;
  line-height: 74px;
  font-family: "Dela Gothic One", cursive;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .projects h2 {
    font-size: 37px;
    line-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .projects h2 {
    font-size: 30px;
    line-height: 49px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .projects h2 {
    font-size: 20px;
    line-height: 37px;
    margin-bottom: 20px;
  }
}
.projects h2 ~ p {
  margin-bottom: 90px;
}
@media (max-width: 991.98px) {
  .projects h2 ~ p {
    margin-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  .projects h2 ~ p {
    font-size: 14px;
  }
}
.projects p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.projects .projects-slicky {
  margin: 40px auto 25px;
  border-radius: 24px;
  background-image: -o-linear-gradient(344deg, #5141a2 0, #5a77f5 100%);
  background-image: linear-gradient(106deg, #5141a2 0, #5a77f5 100%);
  padding: 50px 170px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .projects .projects-slicky {
    padding: 50px 80px;
  }
}
@media (max-width: 991.98px) {
  .projects .projects-slicky {
    text-align: center;
    padding: 25px 25px 40px;
  }
}
.projects .projects-slicky h3 {
  font-size: 31px;
  line-height: 35px;
  color: #fff;
  font-family: "Dela Gothic One";
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .projects .projects-slicky h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 767.98px) {
  .projects .projects-slicky h3 {
    font-size: 25px;
    line-height: 29px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-slicky h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.projects .projects-slicky p {
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .projects .projects-slicky p {
    padding-right: 121px;
  }
}
@media (max-width: 767.98px) {
  .projects .projects-slicky p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-slicky p {
    font-size: 13px;
    line-height: 18px;
  }
}
.projects .projects-slicky .slick-slide {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "header header image image image image" "desc desc image image image image";
  grid-gap: 10px;
}
.projects .projects-slicky .slick-slide h3 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: header;
}
.projects .projects-slicky .slick-slide img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  -ms-grid-column-span: 7;
  grid-area: image;
}
.projects .projects-slicky .slick-slide p {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: desc;
}
@media (max-width: 991.98px) {
  .projects .projects-slicky .slick-slide p {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .projects .projects-slicky .slick-slide p {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .projects .projects-slicky .slick-slide {
    grid-gap: 5px;
  }
}
@media (max-width: 991.98px) {
  .projects .projects-slicky .slick-slide {
    grid-template-areas: "header header header header header header" "image image image image image image" "desc desc desc desc desc desc";
  }
  .projects .projects-slicky .slick-slide img {
    margin: auto;
  }
  .projects .projects-slicky .slick-slide h3 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
  }
  .projects .projects-slicky .slick-slide img {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
  }
  .projects .projects-slicky .slick-slide p {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
  }
}
.projects .projects-slicky .slick-dots {
  left: 0;
}
@media (max-width: 767.98px) {
  .projects .projects-slicky .slick-dots {
    bottom: -35px;
  }
}
@media (max-width: 767.98px) {
  .projects .projects-slicky .slick-dots li {
    width: 29px;
  }
}
.projects .projects-slicky .slick-prev {
  left: 75px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .projects .projects-slicky .slick-prev {
    left: 29px;
  }
}
.projects .projects-slicky .slick-next {
  right: 75px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .projects .projects-slicky .slick-next {
    right: 29px;
  }
}
.contact-us {
  margin-top: 130px;
  padding-top: 50px;
}
@media (max-width: 991.98px) {
  .contact-us {
    text-align: center;
    margin-top: 130px;
    padding-top: 20px;
  }
}
.contact-us h2 {
  color: #fff;
  font-size: 43px;
  line-height: 74px;
  font-family: "Dela Gothic One", cursive;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .contact-us h2 {
    font-size: 37px;
    line-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .contact-us h2 {
    font-size: 30px;
    line-height: 49px;
  }
}
@media (max-width: 575.98px) {
  .contact-us h2 {
    font-size: 20px;
    line-height: 37px;
  }
}
.contact-us h2 ~ p {
  margin-bottom: 90px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .contact-us h2 ~ p {
    margin-bottom: 60px;
    font-size: 17px;
  }
}
@media (max-width: 575.98px) {
  .contact-us h2 ~ p {
    font-size: 12.2px;
  }
}
.contact-us ul .email,
.contact-us ul a,
.contact-us ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .contact-us ul li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.contact-us .social-media {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .contact-us .social-media {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.contact-us .social-media a {
  width: 45px;
  height: 45px;
}
.contact-us .social-media a:not(:last-of-type) {
  margin-right: 20px;
}
@media (max-width: 991.98px) {
  .contact-us .social-media a {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 575.98px) {
  .contact-us .social-media a {
    width: 30px;
    height: 30px;
  }
}
.contact-us .social-media ~ img {
  display: block;
  margin: 80px 0;
  width: 600px;
}
.contact-us .footer-text {
  font-size: 14px;
  color: #fff;
  border-top: 4px solid #5a75f2;
  padding: 45px 0;
}
@media (max-width: 1399.98px) {
  .contact-us .footer-text {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .contact-us .footer-text {
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    font-weight: 300;
  }
}
@media (max-width: 575.98px) {
  .contact-us .footer-text {
    font-size: 10px;
    margin-top: 70px;
    padding: 30px 0;
  }
}
.contact-us .footer-text a {
  font-weight: 500;
  color: #5a75f2;
}
.contact-us form {
  border-radius: 12px;
  background-color: #505065;
  padding: 45px 45px 30px;
}
@media (max-width: 991.98px) {
  .contact-us form {
    margin-bottom: 60px;
  }
}
.contact-us form input,
.contact-us form input:focus,
.contact-us form textarea,
.contact-us form textarea:focus {
  border-radius: 12px;
  -webkit-filter: drop-shadow(2.828px 2.828px 11.5px rgba(120, 104, 190, 0.16));
  filter: drop-shadow(2.828px 2.828px 11.5px rgba(120, 104, 190, 0.16));
  background-color: #22242f;
  font-size: 16px;
  letter-spacing: 0;
  color: #f5f5ff;
  font-weight: 500;
  border: none;
  outline: 0;
  padding: 20px 30px;
}
@media (max-width: 1199.98px) {
  .contact-us form input,
  .contact-us form input:focus,
  .contact-us form textarea,
  .contact-us form textarea:focus {
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .contact-us form input,
  .contact-us form input:focus,
  .contact-us form textarea,
  .contact-us form textarea:focus {
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .contact-us form input,
  .contact-us form input:focus,
  .contact-us form textarea,
  .contact-us form textarea:focus {
    font-size: 10.2px;
  }
}
.contact-us form input {
  margin-bottom: 30px;
}
.contact-us form input::-webkit-input-placeholder,
.contact-us form textarea::-webkit-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-moz-placeholder,
.contact-us form textarea::-moz-placeholder {
  color: #f5f5ff;
}
.contact-us form input:-ms-input-placeholder,
.contact-us form textarea:-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-ms-input-placeholder,
.contact-us form textarea::-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-webkit-input-placeholder,
.contact-us form textarea::-webkit-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-moz-placeholder,
.contact-us form textarea::-moz-placeholder {
  color: #f5f5ff;
}
.contact-us form input:-ms-input-placeholder,
.contact-us form textarea:-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-ms-input-placeholder,
.contact-us form textarea::-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-webkit-input-placeholder,
.contact-us form textarea::-webkit-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-moz-placeholder,
.contact-us form textarea::-moz-placeholder {
  color: #f5f5ff;
}
.contact-us form input:-ms-input-placeholder,
.contact-us form textarea:-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::-ms-input-placeholder,
.contact-us form textarea::-ms-input-placeholder {
  color: #f5f5ff;
}
.contact-us form input::placeholder,
.contact-us form textarea::placeholder {
  color: #f5f5ff;
}
.contact-us form input:focus,
.contact-us form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact-us form textarea {
  resize: none;
  height: 355px;
}
.contact-us form button {
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(347deg, #503e9d 0, #5b7bfb 100%);
  background: linear-gradient(103deg, #503e9d 0, #5b7bfb 100%);
  font-size: 18px;
  padding: 15px 30px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  border: none;
  margin-top: 45px;
}
@media (max-width: 767.98px) {
  .contact-us form button {
    padding: 11px 25px;
    font-size: 12px;
    margin-top: 30px;
  }
}
.error-404 {
  padding: 170px 0 80px;
  text-align: center;
  position: relative;
  overflow: clip;
  min-height: 100vh;
}
@media (max-width: 575.98px) {
  .error-404 {
    font-size: 54px;
    padding: 105px 0 50px;
  }
}
.error-404 h2 {
  color: #fff;
  font-size: 64px;
  font-family: "Dela Gothic One", cursive;
}
@media (max-width: 575.98px) {
  .error-404 h2 {
    font-size: 54px;
  }
}
.error-404 span {
  display: block;
  font-size: 36px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 600;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .error-404 span {
    font-size: 20px;
  }
}
.error-404 .image {
  width: 100%;
  max-width: 699px;
  margin: auto;
}
.error-404 a {
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(347deg, #503e9d 0, #5b7bfb 100%);
  background: linear-gradient(103deg, #503e9d 0, #5b7bfb 100%);
  font-size: 18px;
  padding: 13px 30px;
  margin-top: 100px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  display: inline-block;
  min-width: 210px;
}
@media (max-width: 575.98px) {
  .error-404 a {
    font-size: 16px;
    margin-top: 50px;
  }
}
.error-404 .circle-bg {
  content: "";
  background-image: url("../img/Illustrations/Ellipse.png");
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  -webkit-filter: blur(16px);
  filter: blur(16px);
  background-size: contain;
  bottom: -353px;
  left: -350px;
}
@media (max-width: 991.98px) {
  .error-404 .circle-bg {
    height: 92%;
  }
}
@media (max-width: 767.98px) {
  .error-404 .circle-bg {
    bottom: -342px;
    left: -304px;
  }
}
@media (max-width: 575.98px) {
  .error-404 .circle-bg {
    bottom: -337px;
    height: 662px;
    left: -150px;
  }
}
.error-404::after {
  content: "";
  background-image: url("../img/Illustrations/Mask Group 1.png");
  opacity:0.3;
  position: absolute;
  width: 100%;
  height: 540px;
  background-repeat: no-repeat;
  bottom: -55px;
  left: -118px;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .error-404::after {
    height: 476px;
    bottom: -61px;
  }
}
@media (max-width: 767.98px) {
  .error-404::after {
    bottom: -118px;
  }
}
@media (max-width: 575.98px) {
  .error-404::after {
    height: 409px;
  }
}
