@import url("https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
.font_ta {
  font-family: "Mukta Malar", sans-serif;
}

.color-anime {
  transition: 300ms;
  animation: color-change 10s infinite;
}

.line {
  background: #3f5efb;
  background: linear-gradient(90deg, #3f5efb 0%, #fc466b 100%);
  width: 5rem;
  height: 0.6rem;
  border-radius: 6px;
  margin: 30px auto;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.font-weight-400 {
  font-weight: 400;
}

.hidden {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.btn, .btn-primary-outlined, .btn-primary {
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  border: none;
  outline: none;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background-color: #3f43fd;
  color: #fff;
}
.btn-primary:hover {
  background-color: #3135e8;
}
.btn-primary-outlined {
  border: 2px solid #3f43fd;
  background: #fff;
  color: #3f43fd;
}
.btn-primary-outlined:hover {
  background-color: #3135e8;
  color: #fff;
}

.badge, .badge-primary {
  padding: 0px 14px;
  border-radius: 10px;
}
.badge-primary {
  background-color: #3f43fd;
  color: #fff;
}

.form-control {
  padding: 0.8rem 1.5rem;
  width: 100%;
  background-color: #f7f7f7;
  border: none;
  border-radius: 5px;
  outline: none;
}
.form-control:focus {
  border: 2px solid #3135e8;
}

.resize-none {
  resize: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20rem;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width: 576px) {
  .header {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .header {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .header {
    padding: 1rem 6rem;
  }
}
@media only screen and (max-width: 576px) {
  .header h2 > span {
    font-size: 1rem;
  }
}
.header .nav-toggler {
  display: none;
}
@media only screen and (max-width: 576px) {
  .header .nav-toggler {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 576px) {
  .header .nav-toggler {
    display: block;
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .header .nav-toggler {
    display: none;
  }
}
.header--Menu {
  display: flex;
  list-style: none;
  text-transform: uppercase;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .header--Menu {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .header--Menu {
    display: flex;
  }
}
.header--Menu__item > a {
  margin-right: 1.5rem;
  font-size: 14px;
  font-weight: 600;
  transition: 200ms;
  color: #242424;
}
.header--Menu__item > a:hover {
  color: #3f43fd;
}
.header--Menu__item > a.active {
  color: #3f43fd;
}

@keyframes color-change {
  0% {
    color: red;
  }
  50% {
    color: blue;
  }
  100% {
    color: red;
  }
}
@keyframes boxshape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-shape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.m-1 {
  margin: 1rem !important;
}

.p-space {
  padding: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.p-space {
  padding: 2rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.p-space {
  padding: 3rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.p-space {
  padding: 4rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.p-space {
  padding: 5rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.m-6 {
  margin: 6rem !important;
}

.p-space {
  padding: 6rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.pr-6 {
  padding-right: 6rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.pl-6 {
  padding-left: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.p-space {
  padding: 7rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.mr-7 {
  margin-right: 7rem !important;
}

.pr-7 {
  padding-right: 7rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.ml-7 {
  margin-left: 7rem !important;
}

.pl-7 {
  padding-left: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.p-space {
  padding: 8rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.mr-8 {
  margin-right: 8rem !important;
}

.pr-8 {
  padding-right: 8rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.ml-8 {
  margin-left: 8rem !important;
}

.pl-8 {
  padding-left: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.p-space {
  padding: 9rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.mr-9 {
  margin-right: 9rem !important;
}

.pr-9 {
  padding-right: 9rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.ml-9 {
  margin-left: 9rem !important;
}

.pl-9 {
  padding-left: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.p-space {
  padding: 10rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.mr-10 {
  margin-right: 10rem !important;
}

.pr-10 {
  padding-right: 10rem !important;
}

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

.pb-10 {
  padding-bottom: 10rem !important;
}

.ml-10 {
  margin-left: 10rem !important;
}

.pl-10 {
  padding-left: 10rem !important;
}

.m-12 {
  margin: 12rem !important;
}

.p-space {
  padding: 12rem !important;
}

.mt-12 {
  margin-top: 12rem !important;
}

.pt-12 {
  padding-top: 12rem !important;
}

.mr-12 {
  margin-right: 12rem !important;
}

.pr-12 {
  padding-right: 12rem !important;
}

.mb-12 {
  margin-bottom: 12rem !important;
}

.pb-12 {
  padding-bottom: 12rem !important;
}

.ml-12 {
  margin-left: 12rem !important;
}

.pl-12 {
  padding-left: 12rem !important;
}

.m-14 {
  margin: 14rem !important;
}

.p-space {
  padding: 14rem !important;
}

.mt-14 {
  margin-top: 14rem !important;
}

.pt-14 {
  padding-top: 14rem !important;
}

.mr-14 {
  margin-right: 14rem !important;
}

.pr-14 {
  padding-right: 14rem !important;
}

.mb-14 {
  margin-bottom: 14rem !important;
}

.pb-14 {
  padding-bottom: 14rem !important;
}

.ml-14 {
  margin-left: 14rem !important;
}

.pl-14 {
  padding-left: 14rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.p-space {
  padding: 15rem !important;
}

.mt-15 {
  margin-top: 15rem !important;
}

.pt-15 {
  padding-top: 15rem !important;
}

.mr-15 {
  margin-right: 15rem !important;
}

.pr-15 {
  padding-right: 15rem !important;
}

.mb-15 {
  margin-bottom: 15rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.ml-15 {
  margin-left: 15rem !important;
}

.pl-15 {
  padding-left: 15rem !important;
}

.m-16 {
  margin: 16rem !important;
}

.p-space {
  padding: 16rem !important;
}

.mt-16 {
  margin-top: 16rem !important;
}

.pt-16 {
  padding-top: 16rem !important;
}

.mr-16 {
  margin-right: 16rem !important;
}

.pr-16 {
  padding-right: 16rem !important;
}

.mb-16 {
  margin-bottom: 16rem !important;
}

.pb-16 {
  padding-bottom: 16rem !important;
}

.ml-16 {
  margin-left: 16rem !important;
}

.pl-16 {
  padding-left: 16rem !important;
}

.m-18 {
  margin: 18rem !important;
}

.p-space {
  padding: 18rem !important;
}

.mt-18 {
  margin-top: 18rem !important;
}

.pt-18 {
  padding-top: 18rem !important;
}

.mr-18 {
  margin-right: 18rem !important;
}

.pr-18 {
  padding-right: 18rem !important;
}

.mb-18 {
  margin-bottom: 18rem !important;
}

.pb-18 {
  padding-bottom: 18rem !important;
}

.ml-18 {
  margin-left: 18rem !important;
}

.pl-18 {
  padding-left: 18rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.p-space {
  padding: 20rem !important;
}

.mt-20 {
  margin-top: 20rem !important;
}

.pt-20 {
  padding-top: 20rem !important;
}

.mr-20 {
  margin-right: 20rem !important;
}

.pr-20 {
  padding-right: 20rem !important;
}

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

.pb-20 {
  padding-bottom: 20rem !important;
}

.ml-20 {
  margin-left: 20rem !important;
}

.pl-20 {
  padding-left: 20rem !important;
}

.space-x-1 > * {
  margin-right: 1rem;
}

.space-y-1 > * {
  margin-bottom: 1rem;
}

.space-x-2 > * {
  margin-right: 2rem;
}

.space-y-2 > * {
  margin-bottom: 2rem;
}

.space-x-3 > * {
  margin-right: 3rem;
}

.space-y-3 > * {
  margin-bottom: 3rem;
}

.space-x-4 > * {
  margin-right: 4rem;
}

.space-y-4 > * {
  margin-bottom: 4rem;
}

.space-x-5 > * {
  margin-right: 5rem;
}

.space-y-5 > * {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 576px) {
  .background-shapes {
    display: none;
  }
}
.background-shapes .box1 {
  background: transparent;
  width: 15px;
  height: 15px;
  border: 3px solid #3b1fb6;
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .box2 {
  background: transparent;
  width: 15px;
  height: 15px;
  border: 3px solid #25a86b;
  position: absolute;
  top: 80%;
  left: 90%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .box3 {
  background: transparent;
  width: 15px;
  height: 15px;
  border: 3px solid #b11947;
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .dot1 {
  background: #b11947;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .dot2 {
  background: #d114c8;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 80%;
  left: 50%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .dot3 {
  background: #1979b1;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 40%;
  left: 90%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .dot4 {
  background: #acd615;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 76%;
  left: 42%;
  z-index: -1;
  border-radius: 0.36rem;
  transform: rotate(360deg);
  animation: boxshape 5s linear infinite;
}
.background-shapes .heart1 {
  position: absolute;
  font-size: 1.2rem;
  top: 86%;
  left: 32%;
  z-index: -1;
  color: #f4284a;
  animation: boxshape 5s linear infinite;
}
.background-shapes .heart2 {
  position: absolute;
  font-size: 1.2rem;
  top: 36%;
  left: 92%;
  z-index: -1;
  color: #f45128;
  animation: boxshape 5s linear infinite;
}

.hero-area {
  padding: 8rem 20rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .hero-area {
    padding: 4rem 2rem;
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) {
  .hero-area {
    padding: 4rem 2rem;
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) {
  .hero-area {
    padding: 8rem 6rem;
    flex-direction: row;
  }
}
.hero-area img {
  width: 25rem;
}
.hero-area--text {
  max-width: 34rem;
}
@media only screen and (min-width: 992px) {
  .hero-area--text {
    max-width: 25rem;
  }
}
.hero-area--titile {
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (max-width: 576px) {
  .hero-area--titile {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .hero-area--titile {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero-area--titile {
    font-size: 2rem;
  }
}
.hero-area--titile > span {
  font-size: 1.5rem;
}
.hero-area--desc {
  line-height: 1.8;
  font-size: 1.2rem;
  margin-top: 2rem;
  color: gray;
}
@media only screen and (max-width: 576px) {
  .hero-area--desc {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  .hero-area--desc {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero-area--desc {
    font-size: 1rem;
  }
}

.about-area {
  padding: 8rem 20rem;
  background-color: #3f43fd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 11rem;
}
@media only screen and (max-width: 576px) {
  .about-area {
    padding: 4rem 2rem;
    flex-direction: column;
    margin-top: 0;
  }
}
@media only screen and (min-width: 576px) {
  .about-area {
    padding: 4rem 2rem;
    flex-direction: column;
    margin-top: 0;
  }
}
@media only screen and (min-width: 992px) {
  .about-area {
    padding: 8rem 6rem;
    flex-direction: row;
    margin-top: 0;
    align-items: center;
  }
}
.about-area--img {
  width: 32rem;
}
@media only screen and (min-width: 576px) {
  .about-area--img {
    width: 20rem;
  }
}
@media only screen and (min-width: 992px) {
  .about-area--img {
    width: 64rem;
  }
}
.about-area--contents {
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .about-area--contents {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) {
  .about-area--contents {
    margin: 0;
  }
}
.about-area--contents h2 {
  font-size: 3rem;
}
@media only screen and (max-width: 576px) {
  .about-area--contents h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .about-area--contents h2 {
    font-size: 1.5rem;
  }
}
.about-area--contents p {
  color: #cfcfcf;
}
@media only screen and (max-width: 576px) {
  .about-area--contents p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  .about-area--contents p {
    font-size: 0.9rem;
  }
}
.about-area--contents a {
  color: #fff;
}
.about-area--contents a:hover {
  text-shadow: 10px 20px 30px black;
}

.roadmap {
  padding: 8rem 20rem;
}
@media only screen and (max-width: 576px) {
  .roadmap {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .roadmap {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .roadmap {
    padding: 8rem 4rem;
  }
}
.roadmap--heading {
  text-align: center;
}
.roadmap--heading h5 {
  font-size: 2rem;
}
.roadmap--heading p {
  color: gray;
}
.roadmap--items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
@media only screen and (max-width: 576px) {
  .roadmap--items {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) {
  .roadmap--items {
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) {
  .roadmap--items {
    flex-direction: row;
  }
}
.roadmap--item {
  transition: 500ms;
  position: relative;
  padding: 3rem 1rem;
  text-align: center;
  max-width: 350px;
  cursor: pointer;
  filter: grayscale(100%);
  margin-left: 3rem;
}
@media only screen and (min-width: 992px) {
  .roadmap--item {
    max-width: 600px;
    padding: 0;
  }
}
.roadmap--item:hover {
  filter: grayscale(0);
}
.roadmap--item:hover .roadmap--item__img::after {
  animation: rotate-shape 4000ms linear infinite;
}
.roadmap--item__img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}
.roadmap--item__img img {
  width: 60px;
  margin-top: 25px;
}
.roadmap--item__img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 5px dotted #3f43fd;
  border-radius: 50%;
}
.roadmap--item__contents {
  margin-top: 2rem;
}
.roadmap--item__contents h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .roadmap--item__contents h5 {
    font-size: 1rem;
  }
}
.roadmap--item__contents p {
  color: gray;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .roadmap--item__contents p {
    font-size: 0.9rem;
  }
}
.roadmap--item:not(:last-child):before {
  transition: 500ms;
  position: absolute;
  content: "\f054";
  font-weight: 600;
  top: 35%;
  right: -15%;
  font-family: "Font Awesome 5 Free";
  font-size: 3rem;
  width: 70px;
  height: 70px;
  z-index: 1;
  line-height: 1;
  color: #020710;
}
@media only screen and (max-width: 576px) {
  .roadmap--item:not(:last-child):before {
    content: "\f107";
    top: 90%;
    left: 35%;
  }
}
@media only screen and (min-width: 576px) {
  .roadmap--item:not(:last-child):before {
    content: "\f107";
    top: 90%;
    left: 40%;
  }
}
@media only screen and (min-width: 992px) {
  .roadmap--item:not(:last-child):before {
    content: "\f054";
    top: 35%;
    left: auto;
    right: -30%;
  }
}
.roadmap--item:hover:not(:last-child):before {
  right: -22%;
  color: #3f43fd;
}
.roadmap--item h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
.roadmap--item p {
  color: gray;
  line-height: 1.5;
}

.courses {
  padding: 8rem 20rem;
  background-color: #3135e8;
}
@media only screen and (max-width: 576px) {
  .courses {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .courses {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .courses {
    padding: 8rem 4rem;
  }
}
.courses--heading {
  text-align: center;
}
.courses--heading h2 {
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .courses--heading h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .courses--heading h2 {
    font-size: 1.5rem;
  }
}
.courses--heading p {
  color: #dfdfdf;
}
@media only screen and (max-width: 576px) {
  .courses--heading p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  .courses--heading p {
    font-size: 0.9rem;
  }
}
.courses--cards {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 576px) {
  .courses--cards {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) {
  .courses--cards {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) {
  .courses--cards {
    flex-direction: row;
    align-items: center;
  }
}
.courses--card {
  background-color: #fff;
  max-width: 360px;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .courses--card {
    max-width: 280px;
  }
}
.courses--card--img {
  width: 380px;
}
@media only screen and (min-width: 992px) {
  .courses--card--img {
    width: 280px;
  }
}
.courses--card--body {
  padding: 2rem;
}
.courses--card--body h4 {
  font-size: 1.4rem;
}
@media only screen and (max-width: 576px) {
  .courses--card--body h4 {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 576px) {
  .courses--card--body h4 {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .courses--card--body h4 {
    font-size: 1rem;
  }
}
.courses--card--body p {
  color: gray;
  line-height: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .courses--card--body p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  .courses--card--body p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 992px) {
  .courses--card--body p {
    font-size: 0.8rem;
  }
}
.courses--card a {
  color: rgba(0, 0, 0, 0.856);
}
.courses--card:hover {
  box-shadow: 2px 2px 20px 5px rgba(54, 54, 54, 0.5);
}
.courses--info {
  text-align: center;
  color: #fff;
}
.courses--info a {
  color: #fff;
}
.courses--info a:hover {
  text-shadow: 2px 2px 20px #363636;
}

.contact {
  padding: 8rem 20rem;
  background-color: #e0e0e0;
}
@media only screen and (max-width: 576px) {
  .contact {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .contact {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .contact {
    padding: 8rem 6rem;
  }
}
.contact-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 2rem 3rem;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 576px) {
  .contact-card {
    flex-direction: column;
    padding: 2rem;
    align-items: initial;
  }
}
@media only screen and (min-width: 576px) {
  .contact-card {
    flex-direction: column;
    padding: 2rem;
    align-items: initial;
  }
}
@media only screen and (min-width: 992px) {
  .contact-card {
    flex-direction: row;
  }
}
@media only screen and (min-width: 992px) {
  .contact-card img {
    width: 30rem;
  }
}
.contact-card--contents {
  flex-grow: 1;
}
.contact-card--contents h2 {
  font-size: 1.2rem;
}
@media only screen and (max-width: 576px) {
  .contact-card--contents h2 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 576px) {
  .contact-card--contents h2 {
    font-size: 1rem;
  }
}
.contact-card--contents p {
  color: gray;
}
@media only screen and (max-width: 576px) {
  .contact-card--contents p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  .contact-card--contents p {
    font-size: 0.9rem;
  }
}

footer {
  padding: 2rem 0;
  text-align: center;
  color: #fff;
  background-color: #3135e8;
}
@media only screen and (max-width: 576px) {
  footer h2 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 576px) {
  footer h2 {
    font-size: 1.2rem;
  }
}
footer h2 P {
  color: #e8e8e8;
}
@media only screen and (max-width: 576px) {
  footer h2 P {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 576px) {
  footer h2 P {
    font-size: 0.9rem;
  }
}
footer h2 a {
  color: #fff;
}
footer h2 a:hover {
  text-shadow: 2px 2px 10px #000;
}
footer h2 .social-icons > a > i {
  font-size: 1.5rem;
  padding: 0 10px;
  color: #1619a0;
  transition: 500ms;
}
footer h2 .social-icons > a > i:hover {
  color: #e0e0e0;
}
footer h2 .legal {
  font-size: 0.9rem;
}

/*# sourceMappingURL=style.css.map */
