* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: rgba(0, 0, 0, 0.7);
  background-color: #161a1d;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.underline {
  width: 78px;
  height: 4px;
  background-color: #3AB0E2;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 2rem 10%;
  background-color: #161a1d;
  z-index: 100;
}
.navbar .nav__links ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .nav__links ul li {
  list-style: none;
}
.navbar .nav__links ul li a {
  position: relative;
  width: 90px;
  height: 40px;
  padding: 1rem 1rem;
  font-size: 1.6rem;
  color: #edf0f1;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .nav__links ul li a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  z-index: -1;
  background-color: #3AB0E2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .nav__links ul li a:hover::before {
  width: 100%;
}
.navbar .nav__links ul li a:hover {
  color: #161a1d;
}
.navbar .burger-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.navbar .burger-btn .toggle-button {
  position: relative;
  width: 80px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .burger-btn .toggle-button__burger {
  height: 6px;
  width: 80px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar .burger-btn .toggle-button__burger::before, .navbar .burger-btn .toggle-button__burger::after {
  content: "";
  position: absolute;
  left: 0px;
  width: 80px;
  height: 6px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar .burger-btn .toggle-button__burger::before {
  -webkit-transform: translateY(-22px);
          transform: translateY(-22px);
}
.navbar .burger-btn .toggle-button__burger::after {
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
}
.navbar .burger-btn .toggle-button.open .toggle-button__burger {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .burger-btn .toggle-button.open .toggle-button__burger::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
}
.navbar .burger-btn .toggle-button.open .toggle-button__burger::after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
}

.hero .hero-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  background-image: url("../img/main-bgc.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.hero .hero-img .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -10;
}
.hero .hero-img .main-logo {
  display: block;
}
.hero .hero-img .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #edf0f1;
  font-size: 26px;
  z-index: 20;
}
.hero .hero-img .text h1 {
  font-size: 88px;
  margin: 5rem 0;
}
.hero .hero-img .text p {
  font-size: 28px;
}

section {
  height: 100vh;
  background-color: #585859;
}
section h3 {
  text-align: center;
  padding-top: 2rem;
  font-size: 4.6rem;
  color: #edf0f1;
  font-weight: 400;
}

.about .about-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-image: url("../img/puzzle-orange.png");
  background-position: center;
  background-size: cover;
  margin-top: 1rem;
  border-radius: 5px;
  z-index: 0;
}
.about .about-box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -10;
}
.about .about-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .about-box .text img {
  height: 450px;
  margin: 0 2rem 0 5rem;
}
.about .about-box .text p {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.7);
  width: 425px;
  height: 450px;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
}

.offer .hero-img {
  height: 100%;
  position: relative;
  background-image: url("../img/puzzle-yellow.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.offer .hero-img .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -10;
}
.offer .hero-img .content {
  height: 100%;
}
.offer .hero-img .content .offer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 80%;
}
.offer .hero-img .content .offer-box .box {
  width: 900px;
  background-color: #fff;
  margin: 1rem 2.5rem;
  border-radius: 15px;
  -webkit-box-shadow: 4px 7px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 7px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.offer .hero-img .content .offer-box .box h4 {
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  margin: 2rem 0;
  color: rgba(0, 0, 0, 0.7);
}
.offer .hero-img .content .offer-box .box-1 {
  height: 200px;
}
.offer .hero-img .content .offer-box .box-1 ul {
  padding-top: 1rem;
  list-style-image: none;
}
.offer .hero-img .content .offer-box .box-1 ul p {
  font-size: 18px;
}
.offer .hero-img .content .offer-box .box-2 {
  height: 400px;
}
.offer .hero-img .content .offer-box .box-2 ul {
  padding: 1rem 8rem;
}
.offer .hero-img .content .offer-box .box-2 ul p {
  font-size: 17px;
  padding: 0.2rem;
}
.offer .hero-img .content .offer-box .box:hover {
  -webkit-transform: scale(101%);
          transform: scale(101%);
  -webkit-box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.3);
}

.education .education-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-image: url("../img/puzzle-red.png");
  background-position: center;
  background-size: cover;
  margin-top: 1rem;
  border-radius: 5px;
  z-index: 0;
}
.education .education-box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -10;
}
.education .education-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.education .education-box .text img {
  width: 582px;
  margin: 0 1rem 0 3rem;
}
.education .education-box .text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  width: 750px;
  height: 450px;
  text-align: center;
  padding: 8rem 2rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.96);
}

.recomendation .hero-img {
  height: 100%;
  position: relative;
  background-image: url("../img/puzzle-dark-blue.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.recomendation .hero-img .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -10;
}
.recomendation .hero-img .content {
  height: 100%;
}
.recomendation .hero-img .content .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recomendation .hero-img .content .container .box {
  height: 450px;
  margin: 0 1rem 10rem 1rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 6px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 6px 9px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recomendation .hero-img .content .container .box p {
  font-size: 14px;
  margin: 2rem 3rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.recomendation .hero-img .content .container .box:hover {
  -webkit-transform: scale(98%);
          transform: scale(98%);
}

.contact .contact-box {
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10rem;
}
.contact .contact-box p {
  font-size: 24px;
  color: #edf0f1;
  padding: 1rem;
}
.contact .contact-box a {
  color: #edf0f1;
  font-size: 24px;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact .contact-box a:hover {
  color: #3AB0E2;
}

@media (max-width: 992px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar .burger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .nav__links {
    display: none;
  }
  .navbar .nav__links ul {
    position: absolute;
    right: 0px;
    top: 86px;
    height: 100vh;
    width: 100%;
    background-color: #161a1d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .nav__links ul li {
    text-align: center;
    padding: 1rem 0;
  }
  .navbar .nav__links.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero .hero-img .text h1 {
    font-size: 72px;
  }
  .hero .hero-img .text p {
    font-size: 24px;
  }
  .about h3 {
    font-size: 40px;
  }
  .about .about-box .text img {
    height: 468px;
  }
  .about .about-box .text p {
    font-size: 18px;
    width: 325px;
    height: 400px;
  }
  .offer .hero-img .content h3 {
    font-size: 40px;
  }
  .offer .hero-img .content .offer-box .box {
    width: 725px;
  }
  .offer .hero-img .content .offer-box .box h4 {
    font-size: 26px;
  }
  .education h3 {
    font-size: 40px;
  }
  .education .education-box .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .education .education-box .text p {
    font-size: 18px;
    width: 550px;
    height: 225px;
    padding-top: 2rem;
  }
  .education .education-box .text img {
    width: 458px;
    padding-bottom: 2rem;
  }
  .recomendation .hero-img .content h3 {
    font-size: 40px;
  }
  .recomendation .hero-img .content .container .box {
    height: 350px;
    width: 200px;
  }
  .recomendation .hero-img .content .container .box p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero .hero-img .text h1 {
    font-size: 60px;
  }
  .hero .hero-img .text p {
    font-size: 24px;
  }
  .about h3 {
    font-size: 38px;
  }
  .about .about-box .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-box .text img {
    height: 402px;
    padding-bottom: 1.5rem;
  }
  .about .about-box .text p {
    font-size: 18px;
    width: 500px;
    height: 235px;
    padding-top: 3rem;
  }
  .offer .hero-img .content h3 {
    font-size: 38px;
  }
  .offer .hero-img .content .offer-box .box {
    width: 550px;
  }
  .offer .hero-img .content .offer-box .box h4 {
    font-size: 24px;
  }
  .offer .hero-img .content .offer-box .box-1 {
    height: 180px;
  }
  .offer .hero-img .content .offer-box .box-1 ul p {
    font-size: 17px;
  }
  .offer .hero-img .content .offer-box .box-2 {
    height: 420px;
  }
  .offer .hero-img .content .offer-box .box-2 ul p {
    font-size: 16px;
    padding-top: 0.3rem;
  }
  .education h3 {
    font-size: 38px;
  }
  .education .education-box .text p {
    font-size: 15px;
    width: 425px;
    height: 250px;
    padding-top: 1rem;
  }
  .education .education-box .text img {
    width: 420px;
    padding-top: 1rem;
  }
  .recomendation .hero-img .content h3 {
    font-size: 38px;
  }
  .recomendation .hero-img .content .container .box {
    height: 350px;
    width: 200px;
  }
  .recomendation .hero-img .content .container .box p {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .hero .hero-img .text h1 {
    font-size: 40px;
  }
  .hero .hero-img .text p {
    font-size: 18px;
  }
  .about h3 {
    font-size: 36px;
  }
  .about .about-box .text img {
    height: 338px;
  }
  .about .about-box .text p {
    font-size: 16px;
    width: 310px;
    height: 250px;
    padding-top: 1rem;
  }
  .offer .hero-img .content h3 {
    font-size: 36px;
  }
  .offer .hero-img .content .offer-box .box {
    width: 300px;
  }
  .offer .hero-img .content .offer-box .box h4 {
    font-size: 18px;
  }
  .offer .hero-img .content .offer-box .box-1 {
    height: 180px;
  }
  .offer .hero-img .content .offer-box .box-1 ul {
    padding-top: 1rem;
  }
  .offer .hero-img .content .offer-box .box-1 ul p {
    font-size: 14px;
  }
  .offer .hero-img .content .offer-box .box-2 {
    height: 400px;
  }
  .offer .hero-img .content .offer-box .box-2 ul {
    padding: 0 3rem;
  }
  .offer .hero-img .content .offer-box .box-2 ul p {
    font-size: 13px;
    padding: 0.2rem;
  }
  .education h3 {
    font-size: 36px;
  }
  .education .education-box .text p {
    font-size: 13px;
    width: 375px;
    height: 225px;
    padding-top: 1rem;
  }
  .education .education-box .text img {
    width: 384px;
  }
  .recomendation .hero-img .content h3 {
    font-size: 36px;
  }
  .recomendation .hero-img .content .container .box {
    height: 350px;
    width: 200px;
  }
  .recomendation .hero-img .content .container .box p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */