/* Imports */
@import '../main.css';
/* Colors */
.fade-in {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 0.6s ease-out;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0px);
}

.fade-left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease-out;
}
.fade-left.appear {
  opacity: 1;
  transform: translateX(0px);
}

.fade-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s ease-out;
}
.fade-right.appear {
  opacity: 1;
  transform: translateX(0px);
}

.menu {
  display: block;
  position: relative;
  height: auto;
  z-index: 9;
}
.menu .menu-flex {
  display: flex;
  flex-direction: row;
}
.menu .logo {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  width: 100%;
}
.menu .logo:hover {
  cursor: pointer;
}
.menu .logo .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.menu .logo .text .title-logo {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-size: 36px;
  color: #264B92;
}
.menu .logo .text .subtitle-logo {
  font-family: "Playfair Display", serif;
  margin-top: 10px;
  font-weight: medium;
  font-size: 16px;
  color: #ED7C36;
}
.menu .list {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
}
.menu .list .list-items {
  display: flex;
  flex-direction: row;
}
.menu .list .list-items .item {
  margin-left: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: medium;
  font-size: 24px;
}
.menu .list .list-items .item::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0px 12.5px 0px 12.5px;
  position: absolute;
  z-index: 11;
  transform: translateY(5px);
  border-radius: 50%;
  background-color: #ED7C36;
}
.menu .list .list-items .item:last-of-type:after {
  display: none;
}
.menu .list .list-items .item a {
  margin-left: 25px;
  color: #264B92;
  transition: all 250ms ease-in;
}
.menu .list .list-items .item a:hover {
  color: #ED7C36;
}
.menu .list .list-items .item.register {
  transform: translateY(-10px);
}
.menu .list .list-items .item .btn {
  position: relative;
  overflow: hidden;
  transition: 0.6s all ease;
  z-index: 1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 5px 20px 5px 20px;
  background-color: #ED7C36;
  border: none;
}
.menu .list .list-items .item .btn::before {
  content: "";
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.6s all ease;
  width: 100%;
  height: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu .list .list-items .item .btn:hover {
  cursor: pointer;
  color: #ED7C36;
}
.menu .list .list-items .item .btn:hover::before {
  height: 440%;
}

.profile {
  margin: 80px 0px 80px 0px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: black;
  text-align: center;
}
.profile .profile-content {
  display: flex;
  flex-direction: row;
  text-align: left;
}
.profile .profile-content .info img {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 4px solid #ED7C36;
}
.profile .profile-content .description {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 4px solid #ED7C36;
}
.profile .profile-content .description .paragraph {
  display: flex;
  flex-flow: row;
}
.profile .profile-content .description span.title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: bold;
  color: #264B92;
  font-size: 26px !important;
  padding-top: 10px;
}
.profile .profile-content .description span.title.two {
  text-align: center;
}
.profile .btn {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.6s all ease;
  z-index: 1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  color: black;
  font-weight: 800;
  text-align: center;
  padding: 10px 40px 10px 40px;
  background-color: #ED7C36;
  border: none;
}
.profile .btn::before {
  content: "";
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.6s all ease;
  width: 100%;
  height: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.profile .btn:hover {
  cursor: pointer;
  color: #ED7C36;
}
.profile .btn:hover::before {
  height: 440%;
}

.disclaimer-wrapper {
  background-color: #264B92;
  padding: 40px 0px;
  width: 100%;
  position: relative;
  bottom: 0;
}
.disclaimer-wrapper .paragraph {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: white;
}/*# sourceMappingURL=tutor.css.map */