@font-face {
  font-family: font_text;
  src: url(../assets/font/neuropol.ttf);
}

:root {
  --text: font_text;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: none;
  font-family: "Poppins";
}
label {
  text-decoration: none;
  text-justify: inter-word;
  letter-spacing: 0.4px;
  font-size: 20px;
  font-weight: 400;
  text-size-adjust: calc(20% -200px);
  font-family: "Poppins";
}
h1,
h2,
h3,
h4,
a,
li {
  font-family: var(--text);
}

.font {
  font-family: "Poppins";
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 39px 0px 3px 0px;
}

p,
input::placeholder,
textarea::placeholder,
h5 {
  text-decoration: none;
  text-justify: inter-word;
  letter-spacing: 0.4px;
  font-family: "Poppins";
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(#446ba961, #738f9d18),
    url("../assets/img/header2.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  text-decoration: none;
  font-size: 24px;
  color: #fff3f3;
  font-weight: bold;
}

nav .fab {
  font-size: 42px;
  /* color: #5236f4; */
  color: rgba(11, 145, 237, 1);
}

nav .logotipo-menu {
  width: 80px;
  height: auto;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  display: inline-block;
  list-style: none;
  padding: 8px 12px;
  position: relative;
  text-transform: uppercase;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: rgb(255, 255, 255);
  display: block;
  margin: auto;
  transition: 0.7s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.text_box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text_box h2 {
  font-size: 70px;
  font-weight: 900;
  color: #fff;
}

.text_box #headtext {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 1%;
  margin-bottom: -4%;
  color: #fff;
}

.text_box p {
  margin: 10px 0 40px;
  font-size: 18px;
  color: #ffff;
}

.text-p-title {
  margin-bottom: 20px;
  font-family: var(--text);
}

.hero_btn {
  position: relative;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins";
}

.hero_btn:hover {
  border: 1px solid rgb(255, 255, 255);
  background: rgba(11, 145, 237, 1);
  transition: 1s;
}

nav .fa {
  display: none;
}

.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.PageBlock {
  position: relative;
  margin: 0px;
  padding: 0px;
}

.verticalLine {
  width: 2px;
  height: 100px;
  background: rgba(11, 145, 237, 1);
  margin: 0 auto 40px;
}

.Clear {
  clear: both;
}

h1 {
  font-size: 46px;
  font-weight: 800;
  margin: 56px 0;
  line-height: 50px;
  text-transform: uppercase;
  color: rgba(11, 145, 237, 1);
}
h1:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes slider-right {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slider-left {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 39px 0px 3px 0px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.course-col {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

.course-col h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.1;
}

.course-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

/* Course Section End */

/* Campus Section Start */

.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.campus-col {
  position: relative;
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.campus-col img {
  width: 100%;
  display: block;
}
.campus-col .img-service {
  width: 200px;
  height: 400px;
}

.layer {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.layer:hover,
.layer:active {
  background-color: hsla(200, 81%, 36%, 0.368);
  color: hsl(0, 0%, 100%);
}

.layer h3 {
  position: absolute;
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 25px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}

.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/* Campus Section End */

/* Facilities Section Start */

.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.facilities-col {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}

.facilities-col img {
  width: 100%;
  transition: 0.5s;
  border-radius: 10px;
}

.facilities-col img:hover {
  box-shadow: 0 0 20px 10px rgba(54, 58, 121, 0.2);
}

.facilities-col p {
  padding: 0;
}

.facilities-col h3 {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 15px;
}

/* Facilities Section End */

/*  Section Img Overlay Start */
.cta {
  margin: 100px auto;
  width: 80%;
  background-image: linear-gradient(rgba(1, 0, 3, 0.144), rgba(0, 0, 0, 5.7)),
    url("../assets/img/P3602841.png");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}

.cta h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins";
}

.cta2 {
  margin: 100px auto;
  width: 80%;
  background-image: linear-gradient(rgba(1, 0, 3, 0.5), rgba(0, 0, 0, 5.7)),
    url("../assets/img/P3582768.png");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}

.cta2 h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins";
}

/* Call To Action Section End */

/* Footer Section Start */

.footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.footer h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: 20px;
}

.footer a {
  text-decoration: none;
  color: rgba(11, 145, 237, 1);
  font-weight: 600;
  opacity: 0.8;
}

.footer a:hover {
  color: rgba(11, 145, 237, 1);
}

.icons .fab {
  color: rgba(11, 145, 237, 1);
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

.icons .fab:hover {
  color: rgba(11, 146, 237, 0.45);
  transition: 0.9s;
  transform: rotateY(180deg);
}

.fa-heart {
  color: rgba(11, 145, 237, 1);
}

hr {
  border: 0.01px solid rgb(11, 145, 237, 1);
}

/* Footer Section End */

/* About Us Section Start */

.Sub-header-about {
  height: 70vh;
  width: 100%;
  background-image: linear-gradient(
      rgba(26, 30, 43, 0.7),
      rgba(30, 37, 65, 0.7)
    ),
    url("../assets/img/IMG_6170.png");
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.Sub-header-contact {
  height: 70vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url("../assets/img/contact.png");
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.video-about {
  height: 100%;
  height: auto;
}
.Sub-header h1 {
  margin-top: 100px;
}

.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}

.about-col .video-about {
  width: 600px;
  height: auto;
  object-fit: cover;
}
.video-about {
  min-width: 200px;
  min-height: auto;
}

.about-col img {
  width: 100%;
}

.about-col h1 {
  padding-top: 0;
}

.about-col p {
  padding: 15px 0 25px;
}

.btn {
  border: 1px solid rgba(11, 145, 237, 1);
  background: transparent;
  color: rgba(11, 145, 237, 1);
}

.btn:hover {
  color: #fff;
}

/* About Us Section end */

/* Blog Section start */

.blog-content {
  width: 80%;
  margin: auto;
  padding: 60px 0;
}

.blog-left {
  flex-basis: 65%;
}

.blog-left img {
  width: 100%;
  margin-bottom: 20px;
}

.blog-left h2 {
  color: #222;
  font-weight: 600;
  margin: 20px 0;
}

.blog-left h5 {
  color: rgba(11, 145, 237, 1);
  font-weight: bolder;
  margin: 5px 0;
  cursor: pointer;
}

.blog-left p {
  color: #999;
  padding: 0;
}

.blog-right {
  flex-basis: 32%;
}
.cont-h5 {
  font-family: "Poppins";
  text-decoration: none;
}
.cont-h5:hover {
  text-decoration: none;
  outline: none;
}
.blog-right h3 {
  background: rgba(11, 145, 237, 1);
  color: #fff;
  padding: 7px 0;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.blog-right div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #555;
  padding: 8px;
  box-sizing: border-box;
}

.blog-right div:hover {
  color: rgba(11, 145, 237, 1);
  cursor: pointer;
}

/* Blog Section End */

/* Comment Box Section Start */

.comment-box {
  border: 1px solid #ccc;
  margin: 50px 0;
  padding: 10px 20px;
}

.comment-box h3 {
  text-align: left;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  background: #f0f0f0;
}

.comment-form button {
  margin: 10px 0;
}

/* Comment Box Section End */

/* Contact Us Section Start */

.loacation {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.loacation iframe {
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.content-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.content-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.content-col div .fa {
  font-size: 28px;
  color: rgba(11, 145, 237, 1);
  margin: 10px;
  margin-right: 30px;
}

.content-col div p {
  padding: 0;
}

.content-col div h6 {
  font-size: 20px;
  margin-bottom: 5px;
  color: rgba(11, 145, 237, 1);
  font-weight: 400;
}

.content-col input,
.content-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

.img-servic {
  max-width: 500px;
  max-height: 290px;
}
.title-header-sub {
  color: #fff;
}

/* Contact Us Section end */

@media (max-width: 1200px) {
  .about-col .video-about {
    width: 383px;
    height: auto;
    object-fit: cover;
    margin-top: 110px;
    margin-right: -48px;
  }
  .title-header-sub {
    font-size: 30px;
    margin-top: 10px;
  }
}
@media (max-width: 850px) {
  .layer h3 {
    font-weight: 200;
    font-size: 16px;
    margin: 10px;
  }
  .logotipo-menu {
    width: 70px;
    height: auto;
  }
  .title-header-sub {
    font-size: 26px;
    margin-top: 20px;
  }
  .video-about {
    margin-left: -28px;
  }
}
@media (max-width: 700px) {
  .testimonials-col img {
    margin-left: 0px;
    margin-right: 15px;
  }
  .about-col .video-about {
    width: 362px;
    height: auto;
    object-fit: cover;
  }
  .img-servic {
    min-width: 300px;
    min-height: 200px;
  }
  .layer h3 {
    font-weight: 200;
    font-size: 16px;
  }
  .about-col .video-about {
    width: 522px;
    height: auto;
    object-fit: cover;
    margin-top: -39px;
    margin-right: 21px;
  }
  .Sub-header h1 {
    font-size: 24px;
  }
  .text_box h2 {
    font-size: 50px;
  }
  .text_box #headtext {
    font-size: 23px;
  }
  .text_box p {
    margin: 10px 40px;
    font-size: 20px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: fixed;
    background: rgba(11, 146, 237, 0.729);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1.2s;
  }
  nav .fa {
    display: block;
    color: #ffff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .cta h1 {
    font-size: 23px;
  }
  .cta2 h1 {
    font-size: 23px;
  }
  .title-header-sub {
    font-size: 23px;
    margin-top: 30px;
  }

  .nav .logotipo-menu {
    width: 50px;
    height: auto;
  }
  .verticalLine {
    width: 1px;
  }
  h1 {
    font-size: 24px;
    line-height: unset;
  }
  .row {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .campus {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }

  .campus-col {
    position: relative;
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .campus-col img {
    width: 100%;
    display: block;
  }
  .campus-col .img-service {
    width: 200px;
    height: 400px;
  }

  .layer {
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    background-color: hsla(200, 81%, 36%, 0.368);
    color: hsl(0, 0%, 100%);
    opacity: 1;
  }

  .layer:hover,
  .layer:active {
    pointer-events: none;
  }

  .layer h3 {
    position: absolute;
    bottom: 49%;
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    left: 50%;
    opacity: 1;
    margin-left: 0px;
  }
  .about-col .video-about {
    width: 337px;
    height: auto;
    object-fit: cover;
    margin-top: -42px;
    margin-right: 0px;
  }
  .video-about {
    margin-left: -18px;
  }
}
