body {
  font-family: "Inter", sans-serif;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  /* padding: 15px 0; */
  /* top: 40px; */
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

/* #header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
} */

#header .logo a {
  color: #2c4964;
}
/* 
#header .logo img {
  max-height: 40px;
} */

/**
* Apply Button *
*/
.apply-btn {
  margin-left: 25px;
  background: #5e17eb;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  padding: 15px 25px;
  white-space: nowrap;
  transition: 0.3s;
  /* font-size: 14px; */
  /* display: inline-block; */
  text-align: center;
  text-decoration: none;
}

.apply-btn:hover {
  background: white;
  color: #5e17eb;
}

@media (max-width: 800px) {
  .apply-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/**
* Appointment GREEN Button *
*/
/* .appointment-Gbtn {
  margin-left: 25px;
  background: #a9d043;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-Gbtn:hover {
  background: #00c2cb;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-Gbtn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
} */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar-layout {
  display: grid;
  grid-template-columns: 33% 50% 17%;
  /* align-items: center; */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: black;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #5e17eb;
  border-color: #5e17eb;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #00c2cb;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle .bx-dots-vertical-rounded {
  color: #fff;
}

@media (max-width: 800px) {
  .mobile-nav-toggle {
    /* display: block !important; */
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #00c2cb;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #00c2cb;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@media screen and (max-width: 800px) {
  .navbar-layout {
    display: grid;
    /* grid-template-columns: 60% 20% 20%; */
  }
}

/* 
-----------------------------
PROGRAMS TAB
----------------------------- */
.program-tab {
  background-color: rgb(230, 228, 251);
  text-align: center;
  height: 350%;
  margin-top: 140px;
  margin-left: 10.41%;
  margin-right: 10.41%;
  border-radius: 12px;
  font-weight: 900;
}
.program-txt {
  font-size: 20px;
  padding: 15px;
}
.program-anchor {
  padding-left: 20px;
}
/* mobile view */
@media screen and (max-width: 800px) {
  .program-txt {
    font-size: 15px;
    padding: 14px;
  }
}
/* -----------------------
 Hero section 
 ------------------------*/
.hero-section {
  margin-left: 10.41%;
  margin-right: 10.41%;
  margin-top: 80px;
}
.hero-h1 {
  font-size: 80px;
}
.hero-h2 {
  font-size: 32px;
  margin-top: 20px;
}
.hero-btn {
  background-color: #5e17eb;
  padding: 16px 80px;
  /* width: 20rem; */
  color: white;
  border: none;
  border-radius: 99px;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
}
.hero-p {
  margin-top: 30px;
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  .hero-section {
    /* margin-left: 75px; */
    margin-top: 75px;
  }
}
.text_1 {
  animation: text1;
}

.text_2 {
  animation: text2;
}

.text_1,
.text_2 {
  /* overflow: hidden; */
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation-duration: 5s;
  animation-timing-function: steps(25, end);
  animation-iteration-count: infinite;
}

.text_1::after,
.text_2::after {
  content: "|";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}

@keyframes text2 {
  0%,
  50%,
  100% {
    width: 0;
  }

  60%,
  90% {
    width: 3.3em;
  }
}

@keyframes text1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 3em;
  }
}

@keyframes caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
/* ------------------------------------
Partners section
------------------------------------ */
.partners-section {
  /* margin-left: 10.41%; */
  padding-top: 100px;
  text-align: center;
}
/* slider #1 */
.slider.jsx-1186759938 {
  position: relative;
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.slider.jsx-1186759938 .slide-track.jsx-1186759938 {
  -webkit-animation: scroll-jsx-1186759938 100s linear infinite;
  animation: scroll-jsx-1186759938 100s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 12);
  margin: 15px 0;
}
.slider.jsx-1186759938 .slide.jsx-1186759938 {
  /* background: #292a2c; */
  height: 90px;
  width: 210px;
  margin: 0 20px;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
}
.slider.jsx-1186759938 .slide.jsx-1186759938 img.jsx-1186759938 {
  margin: 0 auto;
}
.slider.jsx-1186759938::before,
.slider.jsx-1186759938::after {
  /* background: linear-gradient(to right, black 0%, rgba(255, 255, 255, 0) 100%); */
  content: "";
  height: 140px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider.jsx-1186759938::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.slider.jsx-1186759938::before {
  left: 0;
  top: 0;
}
@-webkit-keyframes scroll-jsx-1186759938 {
  0% {
    -webkit-transform: translateX(calc(-250px * 6));
    -ms-transform: translateX(calc(-250px * 6));
    transform: translateX(calc(-250px * 6));
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes scroll-jsx-1186759938 {
  0% {
    -webkit-transform: translateX(calc(-250px * 6));
    -ms-transform: translateX(calc(-250px * 6));
    transform: translateX(calc(-250px * 6));
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media screen and (max-width: 640px) {
  .slider.jsx-1186759938 .slide.jsx-1186759938 {
    height: 70px;
    padding: 20px;
    width: 160px;
  }
  .slider.jsx-1186759938::before,
  .slider.jsx-1186759938::after {
    background: none;
  }
}

/* ----------------------------
Curriculum
---------------------------- */
.curriculum-section {
  padding: 50px;
  display: grid;
  grid-template-columns: 40% 20% 40%;
}
.cur-p1 {
  margin-top: 150px;
  padding-top: 50px;
  text-align: left;
  margin-left: 17.9%;
  /* position: sticky; */
}
.p1-smheading {
  font-size: 14px;
  margin-bottom: 0.75rem;
  color: grey;
  font-weight: 700;
}
.p1-lgheading {
  font-size: 32px;
  font-weight: 700;
}
.p1-btn {
  color: white;
  background-color: #5e17eb;
  border: none;
  border-radius: 99px;
  padding: 15px 40px;
}
.p2-btn {
  color: #5e17eb;
  background-color: white;
  border: none;
  border-radius: 99px;
  padding: 15px 40px;
  text-decoration: none;
}

.p2-btn a:hover {
  color: #5e17eb;
  background-color: white;
}

.cur-p2 {
  background: linear-gradient(
    0deg,
    rgba(60, 72, 82, 0),
    #3c4852 22%,
    #3c4852 81%,
    rgba(60, 72, 82, 0)
  );
  width: 0.25rem;
  margin-left: 10rem;
  margin-right: 3.5rem;
}
.step1 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  position: relative;
  top: 200px;
  right: 18px;
  margin-bottom: 370px;
}
.step2 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  position: relative;
  top: 365px;
  right: 18px;
  margin-bottom: 370px;
}
.step3 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  position: relative;
  top: 560px;
  right: 18px;
  margin-bottom: 370px;
}
.step4 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  position: relative;
  top: 820px;
  right: 18px;
  margin-bottom: 370px;
}
.step5 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  position: relative;
  top: 990px;
  right: 18px;
  margin-bottom: 370px;
}
.cur-p3 {
  margin-top: 150px;
  padding-top: 50px;
  text-align: left;
  margin-right: 17.9%;
}
.steps {
  margin-bottom: 128px;
}
.p3-lgheading {
  font-size: 24px;
  font-weight: 700;
}
.p3-smheading {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 16px;
  color: grey;
  margin-bottom: 50px;
}
.c-img {
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .mobile {
    display: none;
  }
  .curriculum-section {
    padding: 0px;
    display: block;
    /* margin-top: -140px; */
  }
  .cur-p1 {
    text-align: center;
    margin-top: 0px;
    margin-left: 0px;
  }
  .cur-p3 {
    text-align: center;
    margin: 20px;
  }
  .p3-lgheading {
    font-size: 16px;
  }
  .p3-smheading {
    font-size: 12px;
  }
}

/* ---------------------------
Tracks TAB
----------------------------- */

.tracks-tab {
  background: #f1f3ff;
  padding: 120px 150px;
}
.tracks-h1 {
  text-align: left;
}
.qualities-tab {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 30% 5% 30% 5% 30%;
}
.q-t {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.q-p {
  text-align: center;
  padding-top: 5px;
  font-weight: 600;
}
.vline {
  width: 0.1rem;
  background-color: rgba(199, 225, 249);
  margin-left: 15px;
}
.track {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.t1 {
  padding: 30px 30px 50px 30px;
  text-align: left;
  background-color: white;
  border-radius: 10px;
  border: grey;
  /* box-shadow: 5px 10px #888888; */
}
.t2 {
  margin-left: 15px;
}
.list-items {
  margin-top: 30px;
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .tracks-tab {
    padding: 20px;
  }
  .track {
    display: block;
  }
  .t2 {
    margin-left: 0;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.container {
  padding-right: 15px;
  padding-left: 15px;
}
.about {
  background: #8c52ff;
  background-size: cover;
  padding: 80px 150px;
  position: relative;
  color: #fff;
  text-align: left;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.about .content .about-btn i {
  font-size: 14px;
}

.about .content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #b6bdfc;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 800px) {
  .about {
    text-align: center;
    padding: 20px;
  }
}
/* ------------------------------------
Board of Advisors
------------------------------------ */
.boa-tab {
  margin: 50px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.boa-img {
  width: 250px;
  border-radius: 5%;
  margin-bottom: 1.25rem;
}
.boa-div {
  margin-top: 3rem !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  gap: 1.5rem !important;
}
.boa-i-div {
  text-align: center;
}
.boa-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.boa-role {
  font-size: 1rem;
  font-weight: 400;
  color: grey;
}
.boa-social {
  display: flex;
  justify-content: center;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  align-items: center;
}
.boa-i-social {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
}
/* .first-boa-div {
  margin-left: 3rem;
} */
/* ---------------------------------
FAQs
--------------------------------- */
.faq-tab {
  margin: 50px;
}
.accordion {
  margin: 50px 150px;
  text-align: left;
}
.accordion-button {
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .accordion {
    margin: 10px;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 100px 150px;
  background: #f1f3ff;
}
.contact .section-title {
  margin-bottom: 50px;
}
.contact .form-row {
  display: flex;
  /* -ms-flex-wrap: wrap; */
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  padding-right: 5px;
  padding-left: 5px;
}
.contact .form-group {
  margin-bottom: 1rem;
  /* margin-right: 2px; */
}
.contact .info-box {
  color: #2d405f;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 10px 30px 10px;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #5e17eb;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #8ea5ca;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #5e17eb;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0a22f6;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 800px) {
  .contact {
    padding: 20px;
  }
  .contact .form-row {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f3ff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #5e17eb;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #5e17eb;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0a22f6;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
  text-align: left;
}
.footer-layout {
  display: grid;
  grid-template-columns: 80% 20%;
}
.copyright {
  text-align: left;
}
.credits a {
  color: #5e17eb;
  text-decoration: none;
}
.credits a:hover {
  color: black;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e7eafe;
  color: #5e17eb;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #5e17eb;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .copyright,
  .credits {
    text-align: center !important;
  }
  .footer-layout {
    display: block;
  }
}
.terms-container {
  margin: 140px auto;
  padding: 20px;
  max-width: 800px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.terms-container p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-container {
  margin: 140px auto;
  padding: 20px;
  max-width: 800px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-container h1, .privacy-container h2, .privacy-container h3 {
  text-align: center;
  margin-bottom: 20px;
}

.privacy-container p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-container ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy-container li {
  margin-bottom: 10px;
  line-height: 1.6;
}