body {
  font-family: "Source Sans Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #c9c9c9;
}

:-ms-input-placeholder {
  color: #c9c9c9;
}

::placeholder {
  color: #c9c9c9;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #8a0303;
}

.inner {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2.5em;
}

.header {
  padding: 8em 0 0.1em 0;
}
.header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100px;
}
.header .inner ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.header .inner ul li {
  display: inline-block;
  padding-left: 1em;
}
.header .inner ul li .icon {
  color: gray;
  transition: 0.5s ease;
}
.header .inner ul li .icon i {
  font-size: 40px;
}
.header .inner ul li .icon:hover {
  color: #8a0303;
}
.header .inner ul li:first-child {
  padding-left: 0;
}

.mobile-menu-btn {
  position: fixed;
  top: 40px;
  right: 80px;
  z-index: 100;
  color: #585858;
  transition: 0.5s ease;
}
.mobile-menu-btn:hover {
  color: #8a0303;
}

.offcanvas {
  background-color: #585858;
  padding: 40px;
}
.offcanvas.show .btn-dismiss {
  opacity: 1;
  visibility: visible;
}
.offcanvas .btn-dismiss {
  cursor: pointer;
  position: absolute;
  top: 55px;
  right: 440px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}
.offcanvas .offcanvas-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.offcanvas .offcanvas-body ul li {
  padding: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}
.offcanvas .offcanvas-body ul li a {
  display: block;
  padding: 1em 0;
  font-size: 22px;
  line-height: 1.5;
  border: 0;
  color: #fff;
  transition: 0.3s ease;
}
.offcanvas .offcanvas-body ul li a:hover, .offcanvas .offcanvas-body ul li a.active {
  color: #8a0303;
}
.offcanvas .offcanvas-body ul li:first-child {
  border-top: 0;
}

.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.show {
  opacity: 0.6;
}

#main {
  padding-bottom: 6em;
}
#main h1 {
  font-size: 2.8em;
  font-weight: 700;
  color: #585858;
  line-height: 1.6;
}
#main h1 span {
  background-color: #8a0303;
  color: #fff;
  box-shadow: 0.1em 0 0 #8a0303, -0.1em 0 0 #8a0303;
}
#main h1 a {
  color: #999999;
  border-bottom: dotted 1px rgba(88, 88, 88, 0.5);
  transition: 0.5s ease;
}
#main h1 a:hover {
  color: #8a0303;
  border-bottom: 0;
}
#main p {
  line-height: 1.6;
  font-size: 20px;
  font-weight: 300;
  margin: 35px 0;
}
#main p a {
  color: #999999;
  border-bottom: dotted 1px rgba(88, 88, 88, 0.5);
  transition: 0.5s ease;
  font-weight: 600;
}
#main p a:hover {
  color: #8a0303;
  border-bottom: 0;
}
#main h5 {
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #585858;
  font-weight: 800;
  margin: 10px 0;
}
#main h5 a {
  color: #999999;
  transition: 0.5s ease;
}
#main h5 a:hover {
  color: #8a0303;
}
#main h6 {
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #585858;
  font-weight: 800;
  margin: 40px 0;
}
#main .team h5,
#main .team h6,
#main .team p {
  margin: 10px 0;
}
#main .team .social-link a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-weight: 800;
  margin: 10px 0;
  font-size: 1.15rem;
  color: #999999;
  transition: 0.5s ease;
}
#main .team .social-link a:hover {
  color: #8a0303;
}
#main .portfolio-box,
#main .team,
#main .partners {
  margin: 50px 0;
}
#main .portfolio-box .box,
#main .team .box,
#main .partners .box {
  width: 100%;
  height: 400px;
  background-color: #f6f6f6;
  transition: 0.5s ease;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
#main .portfolio-box .box .image,
#main .team .box .image,
#main .partners .box .image {
  transition: 0.5s ease;
}
#main .portfolio-box .box:hover,
#main .team .box:hover,
#main .partners .box:hover {
  transform: scale(1.07);
  background-color: rgba(88, 88, 88, 0.9);
}
#main .portfolio-box .box:hover .image,
#main .team .box:hover .image,
#main .partners .box:hover .image {
  opacity: 0.3;
}
#main .portfolio-box .box:hover .text,
#main .team .box:hover .text,
#main .partners .box:hover .text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main .portfolio-box .box .text,
#main .team .box .text,
#main .partners .box .text {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  margin: 0;
}
#main .portfolio-box .box .text span.title,
#main .team .box .text span.title,
#main .partners .box .text span.title {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
}
#main .portfolio-box .box.overlay,
#main .team .box.overlay,
#main .partners .box.overlay {
  background-color: rgba(88, 88, 88, 0.9);
}
#main .portfolio-box .box.overlay .image,
#main .team .box.overlay .image,
#main .partners .box.overlay .image {
  opacity: 0.5;
}
#main .portfolio-box .box.overlay .text,
#main .team .box.overlay .text,
#main .partners .box.overlay .text {
  visibility: visible;
  opacity: 1;
}
#main .portfolio-box .box.overlay .text span.info,
#main .team .box.overlay .text span.info,
#main .partners .box.overlay .text span.info {
  transition: 0.3s ease-out;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}
#main .portfolio-box .box.overlay:hover,
#main .team .box.overlay:hover,
#main .partners .box.overlay:hover {
  background-color: rgba(88, 88, 88, 0.7);
}
#main .portfolio-box .box.overlay:hover .text span.info,
#main .team .box.overlay:hover .text span.info,
#main .partners .box.overlay:hover .text span.info {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
#main .portfolio-box .box.loss-image,
#main .team .box.loss-image,
#main .partners .box.loss-image {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/loss-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .portfolio-box .box.xray-mri,
#main .team .box.xray-mri,
#main .partners .box.xray-mri {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/xray-mri.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .portfolio-box .box.self-learning,
#main .team .box.self-learning,
#main .partners .box.self-learning {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/self-learning.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .portfolio-box .box.blockchain,
#main .team .box.blockchain,
#main .partners .box.blockchain {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/blockchain.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .portfolio-box.upcoming .box .text,
#main .team.upcoming .box .text,
#main .partners.upcoming .box .text {
  font-size: 16px;
  transform: none;
}
#main .portfolio-box.upcoming .box .text .title,
#main .team.upcoming .box .text .title,
#main .partners.upcoming .box .text .title {
  font-size: 24px;
}
#main .portfolio-box.upcoming .box .text .info,
#main .team.upcoming .box .text .info,
#main .partners.upcoming .box .text .info {
  display: none;
}
#main .portfolio-box.upcoming .box:hover .text .title,
#main .team.upcoming .box:hover .text .title,
#main .partners.upcoming .box:hover .text .title {
  display: none;
}
#main .portfolio-box.upcoming .box:hover .text .info,
#main .team.upcoming .box:hover .text .info,
#main .partners.upcoming .box:hover .text .info {
  display: block;
}
#main .team .box.resource {
  background: linear-gradient(0deg, rgba(88, 88, 88, 0.8) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/resource.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#main .portfolio-box .resource-ppt {
  height: 650px;
  margin-bottom: 40px;
  background: linear-gradient(0deg, rgba(88, 88, 88, 0.8) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/ppt.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#main .partners .box {
  height: 175px;
  margin-bottom: 40px;
  background-color: transparent;
}
#main .partners .box .text span.title {
  font-size: 24px;
  letter-spacing: 8px;
  text-transform: uppercase;
}
#main .video-container {
  width: 100%;
  height: 800px;
  margin-bottom: 50px;
}
#main .video-container video {
  width: 100%;
  height: 100%;
}
#main .video-box {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#main .video-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}
#main .video-box.m1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/mindrover-news.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.m2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/mindrover-text.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.m3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/mindrover-upload.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.o1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/otacon1.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.o2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/otacon2.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.o3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/otacon3.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .video-box.loop-thumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.2) 0), url("../img/getloop.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0;
  padding: 0;
  height: 3.5em;
  font-size: 20px;
  font-weight: 300;
  resize: none;
}
#main .form-control:focus {
  box-shadow: none;
  background-color: transparent;
  border-color: #8a0303;
  border-width: 2px;
}
#main .form-select:focus {
  border-color: #8a0303;
  box-shadow: none;
}
#main .form-check-input {
  width: 2em;
  height: 2em;
}
#main .form-check-input:checked {
  background-color: #8a0303;
  border-color: #8a0303;
}
#main .form-check-input:focus {
  box-shadow: none;
  border-color: #8a0303;
}
#main .form-check-label {
  font-size: 22px;
  line-height: 36px;
  font-weight: 300;
  margin-left: 20px;
}
#main .file-input {
  height: 3.5em;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
}
#main .file-input input {
  font-weight: 300;
}
#main .btn {
  background-color: #585858;
  color: #fff;
  text-transform: uppercase;
  padding: 0 1em 0 1.3em;
  line-height: 3.5em;
  height: 3.5em;
  letter-spacing: 0.35em;
  font-weight: 700;
  margin-top: 50px;
  font-size: 18px;
}
#main .btn:hover {
  background-color: #8a0303;
}

.footer {
  padding: 5em 0 1em 0;
  background-color: #e7e8ea;
}
.footer h5 {
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #585858;
  font-weight: 800;
  margin: 40px 0;
}
.footer input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0;
  padding: 0;
  height: 3.5em;
  font-size: 20px;
  font-weight: 300;
}
.footer input:focus {
  box-shadow: none;
  background-color: transparent;
  border-color: #8a0303;
  border-width: 2px;
}
.footer .btn {
  background-color: #585858;
  color: #fff;
  text-transform: uppercase;
  padding: 0 1em 0 1.3em;
  line-height: 3.5em;
  height: 3.5em;
  letter-spacing: 0.35em;
  font-weight: 700;
  margin-top: 50px;
  font-size: 18px;
}
.footer .btn:hover {
  background-color: #8a0303;
}
.footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer ul li {
  display: inline-block;
  padding-left: 1.5em;
}
.footer ul li .icon {
  color: #585858;
  border: 1px solid #c9c9c9;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 4px;
  display: inline-block;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer ul li .icon i {
  font-size: 25px;
  transition: 0.5s ease;
}
.footer ul li .icon:hover i {
  color: #8a0303;
}
.footer ul li:first-child {
  padding-left: 0;
}
.footer .copyright {
  width: 100%;
  padding: 0;
  margin-top: 5em;
  margin-bottom: 2em;
  list-style: none;
  font-size: 1.2em;
  color: rgba(88, 88, 88, 0.5);
}
.footer .copyright a {
  color: #8a0303;
  transition: 0.5s ease;
  font-weight: 600;
}
.footer .copyright a:hover {
  color: #6b0000;
}

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