/*  typography */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Poppins:300,400,500,600,700&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #6c6c86;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

p {
  font-weight: 400;
  color: #6c6c86;
  font-size: 15px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

.lead {
  font-size: 18px;
}

.display-1 {
  font-size: 100px;
}
@media (max-width: 575px) {
  .display-1 {
    font-size: 50px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  font-size: 44px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 36px;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 14px;
}

.icon-lg {
  font-size: 50px;
}

.icon {
  font-size: 40px;
}

.icon-sm {
  font-size: 30px;
}

.icon-xs {
  font-size: 20px;
}

/* Button style */
.box-btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 13px 25px;
  font-weight: 600;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  scale: 1.75;
}
.btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 13px 45px;
  border-radius: 35px;
  font-weight: 600;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}

.box-btn:hover,
.box-btn:active,
.box-btn:focus {
  outline: 0;
  box-shadow: none !important;
  box-shadow: 0px 18px 18px 0px rgba(20, 28, 91, 0.19);
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
  box-shadow: 0px 18px 18px 0px rgba(20, 28, 91, 0.19);
}

.btn-lg {
  font-size: 20px;
  padding: 20px 90px;
}

.btn-primary {
  background: linear-gradient(37deg, #756ab6 1%, #c21292 100%);
  color: #fff;
  border: 0;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary.active {
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  ) !important;
  color: #fff;
  border: 0;
}

.btn-outline-primary {
  background: transparent;
  color: #f7463a;
  border-color: #f7463a;
}
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary.active {
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  ) !important;
  color: #fff;
  border-color: #f7463a;
}

.btn-secondary {
  background: #07085d;
  color: #fff;
  border: 0;
}
.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary.active {
  background: #07085d !important;
  color: #fff;
  border: 0;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:active,
.btn-outline-light:hover,
.btn-outline-light.focus,
.btn-outline-light.active {
  background: #fff !important;
  color: #000;
  border-color: #fff;
}

.btn-transparent {
  color: #f7463a;
  border: 0;
  padding-left: 0;
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-transparent:active,
.btn-transparent:hover,
.btn-transparent.focus,
.btn-transparent.active {
  color: #f7463a;
  border: 0;
  padding-left: 0;
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
  text-decoration: underline;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #a367b1;
  color: #fff;
}

::selection {
  background: #a367b1;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #f7463a;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.hover-text-underline:hover {
  text-decoration: underline;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #f7463a;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 110px;
  padding-bottom: 100px;
}
.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-lg {
  padding-top: 170px;
  padding-bottom: 170px;
}

.section-border {
  height: 9px;
  width: 220px;
  background: linear-gradient(37deg, #756ab6 1%, #c21292 100%);
  border-radius: 5px;
  margin: 40px auto 90px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #d2d2e2 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.overlay-primary {
  position: relative;
}
.overlay-primary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #f7463a;
  opacity: 0.8;
}
.overlay-secondary {
  position: relative;
}
.overlay-secondary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #5d3587;
  opacity: 0.8;
}
.overlay-secondary-half {
  position: relative;
}
.overlay-secondary-half::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #07085d 60%, transparent);
}
.overlay-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #f7463a !important;
}

.bg-secondary {
  background: #392467 !important;
}

.text-primary {
  color: #f7463a !important;
}

.text-secondary {
  color: #07085d !important;
}

.text-gradient-primary {
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-light {
  color: #b7b8f1 !important;
}

.text-color {
  color: #6c6c86 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.top-100 {
  top: 100px;
}

.overflow-hidden {
  overflow: hidden !important;
}

.font-primary {
  font-family: "Poppins", sans-serif !important;
}

.font-secondary {
  font-family: "Noto Sans", sans-serif !important;
}

.shadow {
  box-shadow: 0px 46px 65px 0px rgba(181, 188, 236, 0.16) !important;
}

.bg-gradient-primary {
  background: linear-gradient(37deg, #a367b1 1%, #392467 100%) !important;
}

.transition {
  transition: 0.3s ease;
}

.vertical-align-middle {
  vertical-align: middle;
}

/* form control */
.form-control {
  height: 50px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d2d2e2;
}
.form-control:focus {
  box-shadow: none !important;
  border-color: #f7463a;
}

textarea.form-control {
  height: 150px;
}

/* /form control */
/* page-title */
.page-title {
  padding: 170px 0 190px;
}

/* /page-title */
/* list style */
.list-styled {
  padding-left: 0;
}
.list-styled li {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}
.list-styled li::before {
  position: absolute;
  content: "\e65d";
  font-family: "themify";
  font-size: 14px;
  left: 0;
  top: 0px;
  color: #07085d;
  transition: 0.3s ease;
}

/* social icons */
.social-icons a {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  background: #07085d;
  color: #fff;
  text-align: center;
}

/* /social icons */
.navigation {
  padding: 10px 100px;
  transition: 0.3s ease;
}
.navigation.nav-bg {
  background-color: #392467;
  padding: 15px 100px;
}
@media (max-width: 991px) {
  .navigation.nav-bg {
    padding: 15px 10px;
  }

  .navbar-brand img {
    width: 275px;
  }
}
@media (max-width: 767px) {
  .navigation.nav-bg {
    padding: 10px 5px;
  }

  .navbar-brand img {
    width: 225px;
  }
}
@media (max-width: 991px) {
  .navigation {
    padding: 10px;
    background: #392467;
  }
}

.navbar .nav-item .nav-link {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  font-size: 18px;
}
.navbar .nav-item.active {
  font-weight: bold;
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: calc(100% - 2px);
  left: -10px;
  border-radius: 0;
  background: #fff;
}
.navbar .dropdown-menu.show {
  display: block !important;
}
.navbar .dropdown-item {
  position: relative;
  color: #000;
  transition: 0.2s ease;
  font-family: "Poppins", sans-serif;
  padding: 10px;
  text-decoration: none;
  margin-bottom: 0 !important;
}
.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.banner {
  min-height: 100vh;
}

.content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover-bg-secondary {
  transition: 0.2s ease;
}
.hover-bg-secondary * {
  transition: inherit;
}
.hover-bg-secondary:hover {
  background: #392467;
}
.hover-bg-secondary:hover * {
  color: #fff;
}
.hover-bg-secondary.active {
  background: #392467;
}
.hover-bg-secondary.active * {
  color: #fff;
}

.hover-bg-primary {
  transition: 0.2s ease;
}
.hover-bg-primary * {
  transition: inherit;
}
.hover-bg-primary:hover {
  background: #f7463a;
}
.hover-bg-primary:hover * {
  color: #fff;
}
.hover-bg-primary.active {
  background: #f7463a;
}
.hover-bg-primary.active * {
  color: #fff;
}

.icon-box {
  height: 100px;
  width: 100px;
  line-height: 100px;
}

.icon-box-sm {
  height: 80px;
  width: 80px;
  line-height: 80px;
}

.icon-watermark {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  transition: inherit;
}

.card:hover .icon-watermark {
  transform: translate(-50%, -50%) scale(1.5);
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
}
.bg-image img {
  height: 100%;
  max-width: 100%;
}
@media (max-width: 991px) {
  .bg-image img {
    display: none;
  }
}
@media (max-width: 767px) {
  .bg-image img {
    display: block;
    height: auto;
  }
}

.hover-shadow::before {
  transition: 0.3s ease;
  position: absolute;
  height: 100%;
  box-shadow: 0px 33px 49px 0px rgba(190, 193, 228, 0.31);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  opacity: 0;
}
.hover-shadow:hover::before {
  opacity: 1;
}

/* pricing */
.bottom-shape {
  position: relative;
  overflow: hidden;
}
.bottom-shape * {
  position: relative;
  z-index: 1;
}
.bottom-shape::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  transform: rotate(40deg);
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, #ffd1e3 100%);
  left: 0;
  top: 60%;
  opacity: 0.5;
}
.bottom-shape::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  transform: rotate(40deg);
  background: linear-gradient(37deg, #ffd1e3 1%, #392467 100%);
  left: 20%;
  top: 55%;
}

/* /pricing */
/* project */
.project-item {
  position: relative;
}
.project-item:hover .project-hover {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}

.project-hover {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: rotateX(90deg);
  transition: 0.3s ease;
  transform-origin: bottom;
}
.project-hover i {
  height: 55px;
  width: 55px;
  line-height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  display: block;
}
.project-hover i:hover {
  border-color: #f7463a;
}

/* /project */
/* footer */
footer .overlay-image {
  height: 80%;
  width: 80%;
  left: 10%;
  top: 10%;
}

/* progressbar */
.progress-block .progress {
  height: 8px;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: visible;
  position: relative;
  box-shadow: 0px 9px 24px 0px rgba(19, 5, 44, 0.21);
}
.progress-block .progress-bar {
  background: linear-gradient(
    37deg,
    rgb(180, 62, 121) 1%,
    rgb(247, 70, 58) 100%
  );
  width: 0;
  transition: all 3s ease-in-out;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
}
.progress-block .progress-bar .skill-number {
  position: absolute;
  top: -22px;
  right: 0px;
}

/* /progressbar */
/* video */
.video-player iframe {
  width: 100%;
  height: 100%;
}
.video-player .play-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* ripple animation */
.ripple {
  border-radius: 50%;
  position: absolute;
  height: 130%;
  width: 130%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ripple::after {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.ripple::before {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
/* /video */
/* card slider */
@media (max-width: 991px) {
  .ui-card-slider .left-slide::before {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .ui-card-slider .left-slide::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .ui-card-slider .right-slide::before {
    right: -100px;
  }
}
@media (max-width: 767px) {
  .ui-card-slider .right-slide::before {
    display: none;
  }
}

/* /card slider */
/* google map */
.map {
  height: 750px;
}

/* /google map */
/* team */
.img-thumb-circle {
  border-radius: 50%;
  overflow: hidden;
  max-height: 260px;
  max-width: 260px;
}

.card {
  border: 0;
  border-radius: 0;
}
.card-img-top {
  border-radius: 0;
}
.card-header {
  border: 0;
}
.card-body {
  border: 0;
  border-radius: 0;
}
.card-footer {
  border: 0;
}
.venue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.gmap {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 1rem 2rem;
}
.gmap .left {
  width: 50%;
}
.gmap .right {
  padding: 1rem 4rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gmap .right .content-box h2 {
  margin-bottom: 2.5rem;
}
.gmap .right .content-box .lead {
  line-height: 10px;
}
.gmap .right .content-box .head {
  font-weight: 700;
}
@media (max-width: 991px) {
  .gmap {
    flex-direction: column;
  }
  .gmap .right {
    width: 100%;
    padding: 1rem 1rem;
  }
  .gmap .left {
    width: 100%;
  }
}

#accordion .card-header a:hover {
  color: #a367b1 !important;
}

.list-inline-item {
  position: relative;
  background-color: #7e30e1;
  border-radius: 999px;
  bottom: 0px;
  transition-property: background, bottom;
  transition-duration: 500ms;
}
.list-inline-item:hover {
  background-color: #451952;
  bottom: 4px;
}

.list-inline-item {
  position: relative;
  background-color: #7e30e1;
  border-radius: 999px;
  bottom: 0px;
  transition-property: background, bottom;
  transition-duration: 500ms;
}
.list-inline-item:hover {
  background-color: #451952;
  bottom: 4px;
}

.speaker-card {
  position: relative;
  overflow: hidden;
}

.speaker-socials {
  position: absolute;
  display: flex;
  flex-direction: row;
  background-color: #000;
  border-bottom-right-radius: 4px;
  height: 3rem;
  top: -3rem;
  transition: all;
  transition-duration: 350ms;
}

.speaker-card:hover > .speaker-socials {
  top: 0rem;
}

/* Custom Form CSS  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  justify-content: space-evenly;
}

* {
  box-sizing: border-box;
}

@media (max-width: 770px) {
  .col-md-6 {
    width: 100%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-4 {
    width: 100%;
  }
}

.home_bg {
  background: rgba(0, 0, 0, 0.3) url(../images/reg-form-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  background-blend-mode: darken;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* position: sticky; */
  z-index: 1;
  /* padding: 60px 0 40px 0; */
}
@media (max-width: 770px) {
  .form_heading svg text {
    font-size: 1rem;
  }
}
.btn {
  border-color: #114a96;
  background-color: #7e30e1;
  transition: 0.3s all linear;
}
.btn:hover {
  background: #451952;
  /* letter-spacing: 2px; */
}

.box-btn {
  border-color: #114a96;
  background-color: #114a96;
  transition: 0.3s all linear;
}
.box-btn:hover {
  background: #102f58;
  /* letter-spacing: 2px; */
}

.register-btn {
  display: flex;
  /* margin-top: 55%;
  margin-left: 15%; */
}

.img-height {
  height: 420px;
}

.bg-media {
  background-image: url("../images/Landing-page-bg.gif");
  position: absolute;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .bg-media {
    background-image: url("../images/landing-mobile-bg.png");
  }

  .register-btn {
    scale: 1;
    margin-left: 30%;
    margin-top: 120%;
  }

  .img-height {
    height: 390px;
  }
}

.day-1-time {
  padding: 5% 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.2rem;
  list-style-type: circle;
}

@media screen and (max-width: 767px) {
  .day-1-time {
    flex-direction: column;
    justify-content: center;
  }
}

.highlights {
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.2rem;
  list-style-type: circle;
}

@media screen and (max-width: 767px) {
  .highlights {
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
  }
}

.text-gradient-highlights {
  background: linear-gradient(
    37deg,
    rgb(245, 113, 179) 1%,
    rgb(167, 14, 3) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Section */

#footer img {
  max-width: 100%;
}

#footer {
  max-width: 100%;
  text-align: center;
  padding-bottom: 1em;
  /* font-size: 1.25rem; */
  line-height: 1.5;
  background: #392467;
  color: #fff;
}

#footer h2 {
  padding-bottom: 0.25em;
  color: #fff;
}

.footer-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 3em 0 0;
}

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

.footer-content {
  max-width: 25%;
  align-self: center;
}

.footer-content ul li {
  margin-top: 0.5em;
}

.footer-container-2 {
  text-align: center;
}

#footer ul {
  list-style: none;
}

#footer ul li {
  font-size: 1.25rem;
}

#footer a {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  color: #1792d2;
}

.sci {
  display: flex;
  gap: 0.75em;
  justify-content: center;
  padding-top: 0.25em;
  font-size: 1.5rem;
}

.one-p {
  text-align: center;
  font-size: 1.25rem;
}

@media (max-width: 800px) {
  .footer-container-1 {
    flex-direction: column;
    font-size: 1.25rem;
    gap: 2em;
  }

  .footer-content {
    max-width: 100%;
  }
}
