@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;600;700&family=Oswald:wght@600;700&display=swap");
.hero-section__container h1, .section .header-section h2, .service-section__container--content__image h3, .main-btn__btn, .contact-section__form__container--content label, .contact-section__form__container--content p, .schedule-section__container--content__image--info {
  text-transform: uppercase;
  letter-spacing: -2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  background: url(../images/home/open-space.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.header::before, .header::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  bottom: 0;
}

.header::before {
  border-width: 133px 0 0 187px;
  border-color: transparent transparent transparent #ffffff;
  left: 0;
}

.header::after {
  border-width: 0 0 137px 187px;
  border-color: transparent transparent #ffffff transparent;
  right: 0;
}

.logo {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  margin-left: 1rem;
}

.logo span {
  color: #60BCD9;
}

.navigation {
  max-height: 5rem;
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 100;
}

.navigation::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 90%;
  background: #e4e4e4;
  bottom: 2px;
  left: 1.2rem;
}

.nav-toggle {
  position: absolute;
  top: -999px !important;
  left: -999px !important;
}

.nav-toggle:focus ~ .nav-toggle-label {
  outline: 2px solid #60BCD9;
}

.nav-toggle-label {
  position: absolute;
  top: 0;
  right: 1rem;
  margin-left: 1em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #ffffff;
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 10px;
}

.nav-toggle-label span::after {
  top: 10px;
}

.nav {
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  position: absolute;
  width: 100%;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  top: 5rem;
  z-index: 999;
}

.nav .nav__list {
  list-style: none;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
}

.nav .nav__list li {
  color: #60BCD9;
  padding: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  -webkit-transition: color 550ms ease-in-out;
  transition: color 550ms ease-in-out;
}

.nav .nav__list li:hover {
  color: #ffffff;
}

.nav .nav__list li .active {
  position: relative;
  color: #ffffff;
}

.nav .nav__list li .active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: #60BCD9;
  bottom: .3rem;
  left: 0;
  opacity: .7;
}

.nav-toggle:checked ~ nav {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  -webkit-transition: opacity 250ms ease-in-out 1000ms;
  transition: opacity 250ms ease-in-out 1000ms;
}

.hero-section {
  height: 90%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  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;
}

.hero-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -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: 42%;
}

.hero-section__container h1 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e4e4e4;
  position: relative;
}

.hero-section__container h1 span {
  color: #60BCD9;
}

.hero-section__container h1::before, .hero-section__container h1::after {
  content: '';
  position: absolute;
  border-bottom: 3px solid #60BCD9;
  border-top: 3px solid #60BCD9;
  width: 2rem;
  height: 6rem;
  top: -1.2rem;
}

.hero-section__container h1::before {
  border-left: 3px solid #60BCD9;
  left: -1rem;
}

.hero-section__container h1::after {
  right: -1rem;
  border-right: 3px solid #60BCD9;
}

.hero-section__container p {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #e4e4e4;
  margin-left: 1rem;
}

.section {
  padding-top: 2.5rem;
  background: #ffffff;
}

.section .header-section {
  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;
  position: relative;
  z-index: 2;
}

.section .header-section::before, .section .header-section::after {
  content: '';
  position: absolute;
  border-bottom: 3px solid #60BCD9;
  border-top: 3px solid #60BCD9;
  width: 2rem;
  height: 5rem;
  top: -.5rem;
}

.section .header-section::before {
  border-left: 2px solid #60BCD9;
  left: 1rem;
}

.section .header-section::after {
  right: 1rem;
  border-right: 2px solid #60BCD9;
}

.section .header-section span {
  background: #ffffff;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 53px;
}

.section .header-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  color: #7B7B7B;
}

.section .header-section p {
  margin: 2rem 0 4rem 0;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #7B7B7B;
  font-size: 1rem;
  text-align: center;
}

.about-section {
  padding: 1rem;
  position: relative;
  margin-bottom: 3rem;
}

.about-section__container {
  padding: 2rem 1rem;
}

.about-section__container--image {
  max-width: 100%;
  margin-bottom: 1rem;
}

.about-section__container--image img {
  max-width: 100%;
}

.about-section__container--description {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.about-section__container--description p {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #7B7B7B;
  font-size: 1rem;
}

.service-section {
  padding: 1rem;
}

.service-section__container--content {
  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;
}

.service-section__container--content__image {
  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;
}

.service-section__container--content__image h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #7B7B7B;
  position: relative;
  margin-top: .5rem;
}

.service-section__container--content__image h3::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: #60BCD9;
  bottom: 3px;
  left: 0;
  opacity: .5;
}

.service-section__container--content__description {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.service-section__container--content__description p {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #7B7B7B;
  font-size: 1rem;
}

.portfolio-section {
  padding: 1rem;
}

.portfolio-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.portfolio-section__container--grid {
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr , 1fr;
      grid-template-columns: 1fr , 1fr;
  -ms-grid-rows: (1fr 0.5fr)[2];
      grid-template-rows: repeat(2, 1fr 0.5fr);
  gap: 30px 30px;
}

.portfolio-section__container--grid img {
  max-width: 100%;
}

.portfolio-section__container--grid .img1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid .img2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid .img3 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid .img4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid .img5 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid .img6 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-column-align: center;
      justify-self: center;
}

.portfolio-section__container--grid__content {
  position: relative;
}

.portfolio-section__container--grid__content:hover .portfolio-section__container--grid__content--hover-container--hover {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.portfolio-section__container--grid__content--hover-container {
  position: absolute;
  top: .75rem;
  bottom: .75rem;
  left: 1.5rem;
  right: 1.5rem;
}

.portfolio-section__container--grid__content--hover-container--hover {
  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;
  background: rgba(123, 123, 123, 0.74);
  border-radius: 10px;
  -webkit-box-shadow: 4px 5px 5px #0000008a;
          box-shadow: 4px 5px 5px #0000008a;
  height: 95%;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.hover-title, .hover-description {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.hover-description {
  font-size: .9rem;
  font-weight: 300;
}

.main-btn {
  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;
  margin-top: 1.5rem;
}

.main-btn__btn {
  font-family: "Oswald", sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #60BCD9 !important;
  border: 3px solid #60BCD9 !important;
  padding: .2rem 3rem !important;
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #60BCD9), to(#60BCD9));
  background: linear-gradient(-90deg, #ffffff 0%, #ffffff 50%, #60BCD9 50%, #60BCD9 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
  -webkit-transition: all 800ms ease-in-out;
  transition: all 800ms ease-in-out;
}

.main-btn__btn:hover {
  background-position: 0 0;
  color: #ffffff !important;
}

.team-section__container {
  background: #ffffff;
  margin-top: -2rem;
}

.team-section__container--slider__content {
  position: relative;
  background: #ffffff;
  padding: 1rem;
}

.team-section__container--slider__content img {
  max-width: 100%;
}

.team-section__container--slider__content--hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(96, 189, 217, 0)), color-stop(15%, rgba(96, 189, 217, 0.5)), color-stop(50%, rgba(96, 189, 217, 0.719)), to(rgba(96, 189, 217, 0.904)));
  background: linear-gradient(180deg, rgba(96, 189, 217, 0) 0%, rgba(96, 189, 217, 0.5) 15%, rgba(96, 189, 217, 0.719) 50%, rgba(96, 189, 217, 0.904) 100%);
  width: 92%;
  height: 40%;
  position: absolute;
  bottom: 1.2rem;
  color: #e4e4e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -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;
  padding-bottom: 1rem;
  padding-top: 5rem;
  opacity: 0;
  -webkit-transform: translateY(230px);
          transform: translateY(230px);
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.team-section__container--slider__content--hover h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-shadow: 2px 2px 2px #7B7B7B;
}

.team-section__container--slider__content--hover p {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #7B7B7B;
}

.team-section__container--slider__content--hover--contact {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.team-section__container--slider__content--hover--contact i {
  font-size: 1.3rem;
}

.team-section__container--slider__content:hover .team-section__container--slider__content--hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.swiper-container {
  max-width: 100%;
  height: 100%;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -2px;
}

.swiper-pagination-bullet {
  border: 1px solid #60BCD9;
  opacity: 1;
  background: #ffffff;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #60BCD9;
}

.swiper-button-next, .swiper-button-prev {
  color: #60BCD9;
}

.contact-section__form__container {
  padding: 1rem;
}

.contact-section__form__container--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-section__form__container--content label, .contact-section__form__container--content p {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: #60BCD9;
}

.contact-section__form__container--content input, .contact-section__form__container--content textarea {
  padding: 1rem .5rem;
  border: 3px solid #e4e4e4;
  color: #7B7B7B;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.contact-section__form__container--content input::-webkit-input-placeholder, .contact-section__form__container--content textarea::-webkit-input-placeholder {
  color: #7B7B7B;
  font-size: .9rem;
  font-weight: 700;
}

.contact-section__form__container--content input:-ms-input-placeholder, .contact-section__form__container--content textarea:-ms-input-placeholder {
  color: #7B7B7B;
  font-size: .9rem;
  font-weight: 700;
}

.contact-section__form__container--content input::-ms-input-placeholder, .contact-section__form__container--content textarea::-ms-input-placeholder {
  color: #7B7B7B;
  font-size: .9rem;
  font-weight: 700;
}

.contact-section__form__container--content input::placeholder, .contact-section__form__container--content textarea::placeholder {
  color: #7B7B7B;
  font-size: .9rem;
  font-weight: 700;
}

.contact-section__form__container--content .main-btn__btn {
  margin-top: 2rem;
}

.contact-section__form__container input[type=number] {
  -moz-appearance: textfield;
}

.contact-section__form__container input::-webkit-outer-spin-button,
.contact-section__form__container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.schedule-section {
  padding: 1rem;
}

.schedule-section__container {
  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;
}

.schedule-section__container--content {
  margin: 1.5rem 0;
}

.schedule-section__container--content:first-of-type {
  margin-top: 0;
}

.schedule-section__container--content__image {
  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;
}

.schedule-section__container--content__image--info {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #7B7B7B;
  text-align: center;
  margin-top: .5rem;
}

.schedule-section__container--content__image--info span {
  display: block;
}

.footer {
  position: relative;
}

.footer__triangle {
  position: absolute;
  bottom: 5px;
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 190px solid transparent;
  border-bottom: 187px solid #60BCD9;
  border-left: 190px solid transparent;
}

.footer__triangle .footer__copy {
  position: absolute;
  width: 321px;
  right: -10rem;
  top: 5.4rem;
}

.footer__triangle .footer__copy--links, .footer__triangle .footer__copy--copyrights {
  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;
  color: #ffffff;
}

.footer__triangle .footer__copy--links {
  font-size: 2rem;
}

.footer__triangle .footer__copy--links a {
  padding: .5rem;
}

.footer__triangle .footer__copy--copyrights {
  margin-top: .5rem;
  font-family: "Nunito", sans-serif;
  font-size: .8rem;
  font-weight: 300;
  text-align: center;
}

@media only screen and (min-width: 48rem) {
  #wrapper {
    max-width: 49em;
    margin: 0 auto;
  }
  .header {
    background-position-x: 50%;
  }
  .header::before {
    border-width: 133px 0 0 392px;
  }
  .header::after {
    border-width: 0 0 137px 392px;
  }
  .nav-toggle-label {
    right: 4rem;
  }
  .hero-section {
    height: 92%;
  }
  .hero-section__container {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .hero-section__container p {
    width: 43ch;
  }
  .hero-section__container h1::before {
    left: -5rem;
  }
  .hero-section__container h1::after {
    right: -5rem;
  }
  .section .header-section::before {
    left: 6rem;
  }
  .section .header-section::after {
    right: 6rem;
  }
  .section .header-section span {
    height: 67px;
    width: 74%;
  }
  .section .header-section__quote {
    width: 50ch;
    margin-top: .5rem !important;
  }
  .about-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-section__container--description .main-btn__btn {
    font-size: 1.6rem !important;
  }
  .team-section__container {
    max-width: 37.5rem;
    margin: 0 auto;
  }
  .team-section__container--slider__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .team-section__container--slider__content img {
    max-width: 80%;
  }
  .team-section__container--slider__content--hover {
    width: 76%;
    bottom: .9rem;
  }
  .contact-section__form__container {
    max-width: 35.7rem;
    margin: 0 auto;
  }
  .schedule-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 30rem;
    margin: 0 auto;
  }
  .schedule-section__container--content {
    margin: 1.5rem 4rem 1.5rem 0;
  }
  .schedule-section__container--content:first-of-type {
    margin-top: 1.5rem;
  }
  .schedule-section__container--content:nth-of-type(2) {
    margin-right: 0;
  }
  .schedule-section__container--content:nth-of-type(3) {
    margin-left: -2rem;
    margin-right: 5rem;
  }
  .schedule-section__container--content:nth-of-type(4) {
    margin-right: 0;
  }
  .footer__triangle {
    border-left: 380px solid transparent;
    border-right: 380px solid transparent;
  }
  .footer__triangle .footer__copy {
    top: 5rem;
    right: -12rem;
    width: 400px;
  }
  .footer__triangle .footer__copy--copyrights {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 62rem) {
  #wrapper {
    max-width: 62rem;
    margin: 0 auto;
  }
  .navigation::after {
    width: 97%;
  }
  .nav-toggle-label {
    top: -10rem;
  }
  .nav {
    background: transparent;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    top: 0;
  }
  .nav .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: .5rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 1rem;
  }
  .hero-section {
    height: 100%;
  }
  .footer__triangle {
    border-left: 31rem solid transparent;
    border-right: 31rem solid transparent;
  }
}

@media only screen and (min-width: 80rem) {
  #wrapper {
    max-width: 80rem;
  }
  .header::before {
    border-width: 133px 0 0 640px;
  }
  .header::after {
    border-width: 0 0 137px 640px;
  }
  .section .header-section::before {
    left: 20rem;
  }
  .section .header-section::after {
    right: 20rem;
  }
  .section .about-title::after {
    right: 4rem;
  }
  .section .about-title::before {
    left: 48rem;
  }
  .section .about-title span {
    position: absolute;
    right: 4rem;
    top: 0;
    width: 28.6%;
  }
  .about-section__container--image {
    padding: 1rem;
    margin-bottom: -3rem;
  }
  .about-section__container--description {
    padding-top: 5rem;
  }
  .service-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .portfolio-section__container--grid {
    max-width: 1200px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: "img1 img1 img2 img3"  "img1 img1 img4 img4"  "img5 img6 img4 img4";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .portfolio-section__container--grid__content {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .portfolio-section__container--grid .img1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: img1;
  }
  .portfolio-section__container--grid .img2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: img2;
  }
  .portfolio-section__container--grid .img3 {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
    grid-area: img3;
  }
  .portfolio-section__container--grid .img4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: img4;
  }
  .portfolio-section__container--grid .img5 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: img5;
  }
  .portfolio-section__container--grid .img6 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: img6;
  }
  .portfolio-section__container .main-btn {
    margin-top: 2rem;
  }
  .footer__triangle {
    border-left: 640px solid transparent;
    border-right: 640px solid transparent;
  }
}

@media only screen and (min-width: 120rem) {
  #wrapper {
    max-width: 120rem;
    overflow: hidden;
  }
  .header::before {
    border-width: 163px 0 0 960px;
  }
  .header::after {
    border-width: 0 0 163px 960px;
  }
  .logo {
    margin-left: 25rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .navigation::after {
    width: 63%;
    left: 25.2rem;
  }
  .nav {
    position: inherit;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .nav .nav__list {
    margin-left: 58rem;
  }
  .hero-section {
    height: 100%;
  }
  .section {
    max-width: 1400px;
    margin: 5rem auto;
  }
  .section .about-title::before {
    left: 57rem;
  }
  .section .about-title span {
    width: 28.5%;
  }
  .schedule-section__container {
    max-width: 100%;
  }
  .schedule-section__container--content:nth-of-type(2) {
    margin-right: 4rem;
  }
  .footer__triangle {
    border-left: 960px solid transparent;
    border-right: 960px solid transparent;
  }
}

@media only screen and (min-width: 160rem) {
  #wrapper {
    max-width: 2560px;
  }
  .navigation::after {
    width: 72.5%;
  }
  .navigation .nav .nav__list {
    margin-left: 98rem;
  }
  .footer__triangle {
    border-left: 1270px solid transparent;
    border-right: 1270px solid transparent;
  }
}
/*# sourceMappingURL=main.css.map */