/* font-family: 'Work Sans', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Ubuntu', sans-serif;
font-family: 'Nunito', sans-serif;
font-family: 'Varela Round', sans-serif; */
body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  position: relative;
  transition: 0.5s all;
  font-family: "Nunito", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: rgb(37, 37, 37);
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(37, 37, 37);
  cursor: pointer;
}

*::selection {
  background-color: rgb(37, 37, 37);
  color: white;
}
.courses {
  background-color: #fff;
  padding: 5%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.white-panel {
  background-color: white;
  width: 100%;
  padding: 2% 15%;
  transition: 0.5s ease;
}

.message-panel {
  height: 100%;
  border-radius: 25px;
  border: none;
  padding: 30px;
}

.message-panel p {
  font-size: 2.5em;
  z-index: 99;
  color: #fff;
  font-weight: 500;
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  margin: 0;
  padding: 0px 5%;
  position: relative;
  text-align: center;
  top: 8px;
}

.message-panel p::before {
  /* content: "\275D"; */
  position: absolute;
  font-size: 8em;
  color: #f1f1f1;
  top: -150px;
  left: -25px;
  opacity: 0.4;
  z-index: -1;
}

.white-panel > .message-panel {
  background-color: #ffffff;
  box-shadow: 3px 2px 5px 0px #a9a5a5;
  animation: fadeUp 2s 5s;
  -webkit-animation: fadeUp 2s 5s;
  -moz-animation: fadeUp 2s 5s;
}

.home .white-panel > .message-panel p {
  color: #7d7979;
  font-size: 1.6em;
}

.white-panel > .message-panel p::before {
  font-size: 14em;
  color: #c1c1c1;
}
/* footer styles */
.foot-container {
  position: relative;
  background-color: #f7f7f7;
  z-index: 1050;
  color: #565454;
  padding: 2%;
}

.foot-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.foot-section > .logo {
  font-weight: 600;
  cursor: pointer;
}

.foot-section > .logo:hover {
  text-decoration: none;
}

.foot-section ul.foot-navbar,
.foot-section ul.foot-content {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.foot-section ul.foot-navbar > li,
.foot-section ul.foot-content > li {
  margin: 0px 5px;
}

.foot-section ul > li > a {
  padding: 15px;
  margin: 10px;
  cursor: pointer;
  color: rgb(255, 255, 255);
}

.foot-section ul > li > a:hover {
  color: #b4b4b4;
}

.copyright-field {
  cursor: pointer;
}

.copyright-field > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1em;
}

.copyright-field a {
  color: rgb(85, 85, 85);
}

.copyright-field span.social-icons > a {
  transition: 0.2s ease-in;
  padding: 15px;
  border-radius: 100%;
  cursor: pointer;
  color: white;
}

.copyright-field span.social-icons > a:hover {
  color: rgb(31, 30, 30);
  text-decoration: none;
  background-color: #f1f1f1;
  color: black;
}

.copyright-field > div > span.social-icons {
  font-size: 1em;
  display: flex;
  justify-content: space-evenly;
  margin-top: 15px;
}

.credit-info {
  position: absolute;
  bottom: 0px;
  display: flex;
  -webkit-display: flex;
  justify-content: center;
  width: 100%;
  font-size: 0.6em;
}

.founders {
  width: 150px;
  height: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.founders-name {
  text-align: center;
  margin-top: 15px;
}
span.founders-name-inner {
  font-weight: 600;
  font-size: 25px;
}
@media (max-width: 500px) {
  .founders {
    width: 100px;
    height: 100px;
    position: relative;
    bottom: 30px;
  }
  .founders-name {
    display: block;
    width: 200px;
    height: 100px;
    position: relative;
    left: -50%;
    text-align: center;
  }
  span.founders-name-inner {
    font-weight: 600;
    font-size: 25px;
  }
}
@media (max-width: 300px) {
  .founders {
    width: 50px;
    height: 50px;
    position: relative;
    bottom: 10px;
  }
  .founders-name {
    display: inline-block;
    width: 200px;
    height: 100px;
    text-align: left;
  }
  span.founders-name-inner {
    font-weight: 600;
    font-size: 20px;
  }
}
.newFont {
  font-family: "Cabin Sketch", cursive !important;
  font-weight: bold !important;
  font-size: 2.5rem !important;
}
@media (max-width: 700px) {
  .newFont {
    font-family: "Cabin Sketch", cursive !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
  }
}
.credit-MI {
  font-size: 0.8em;
}
.credit-MI > a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 700px) {
  .credit-MI {
    font-size: 0.6em;
  }
  .credit-MI > a {
    text-decoration: none;
    color: #fff;
  }
}
