@charset "UTF-8";
:root {
  --color-primary: #463C75;
  --color-primary-lighter: #504586;
  --color-primary-lightest: #6456a8;
  --color-primary-darker: #3c3364;
  --color-primary-darkest: #282242;
  --color-secondary: #C5C0DC;
  --color-secondary-lighter: #d4d0e5;
  --color-secondary-lightest: #f2f1f7;
  --color-secondary-darker: #b6b0d3;
  --color-secondary-darkest: #988fc1;
  --color-body-bg: #C5C0DC;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dark: #000017
  --box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 10%);
  --border-radius: 10px;
  --border-radius-md: 20px;
  --border-radius-btn: 10px;
  --font-heading: "Roboto", sans-serif;
  --font-text: "Roboto", sans-serif;
  --font-decorative: "Roboto", sans-serif;
  --container-padding-xs: 20px;
  --container-padding-md: 30px;
  --container-padding-lg: 40px;
  --container-padding-xl: 30px;
  --container-padding-xxl: 30px;
  --container-padding-xxxl: 30px;
}

/*

>=390px:   xs - mobile x-small
>=576px:   sm - mobile small
>=768px:   md - Tablet portrait
>=992px:   lg - Tablet landscape
>=1200px:  xl - Extra large
>=1440px:  xxl - Extra extra large
>=1920px:  xxxl - Extra extra extra large
$breakpoint arguement choices:
- xs
- sm
- md
- lg
- xl
- xxl
- xxxl

1em = 16px
*/
.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.bg-white {
  background-color: #fff;
}

.page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.page-wrapper main {
  flex-grow: 1;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.8);
  background-color: var(--color-body-bg);
  max-width: 100vw;
}
@media only screen and (min-width: 90em) {
  body {
    font-size: 24px;
  }
}
body.scroll-disabled {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.main-section {
  width: 100vw;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #000000;
}

strong {
  font-weight: 600;
}

.heading {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  color: rgb(0, 0, 23);
  text-align: inherit;
}
@media only screen and (min-width: 24.375em) {
  .heading {
    font-size: 30px;
  }
}
@media only screen and (min-width: 48em) {
  .heading {
    font-size: 32px;
  }
}
@media only screen and (min-width: 62em) {
  .heading {
    font-size: 38px;
  }
}
@media only screen and (min-width: 75em) {
  .heading {
    font-size: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .heading {
    font-size: 48px;
  }
}
.heading--white {
  color: #fff;
}

.sub-heading {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: inherit;
}

mark,
.accent {
  background-color: transparent;
  color: var(--color-primary);
}

.custom-typography {
  color: rgba(0, 0, 23, 0.7490196078);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}
.custom-typography p:not(:last-child) {
  margin-bottom: 30px;
}
.custom-typography strong {
  font-weight: 600;
}

.main-title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.2;
  color: var(--color-black);
  text-align: inherit;
  text-transform: uppercase;
}
@media only screen and (min-width: 24.375em) {
  .main-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 48em) {
  .main-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 62em) {
  .main-title {
    font-size: 52px;
  }
}
@media only screen and (min-width: 75em) {
  .main-title {
    font-size: 60px;
  }
}

.main-subtitle {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--color-black);
  text-align: inherit;
  text-transform: capitalize;
}
@media only screen and (min-width: 24.375em) {
  .main-subtitle {
    font-size: 34px;
  }
}
@media only screen and (min-width: 48em) {
  .main-subtitle {
    font-size: 36px;
  }
}
@media only screen and (min-width: 62em) {
  .main-subtitle {
    font-size: 40px;
  }
}
@media only screen and (min-width: 75em) {
  .main-subtitle {
    font-size: 44px;
  }
}

.link {
  font-size: 20px;
  color: var(--color-secondary-darkest);
  text-decoration: none;
  display: inline-flex;
  transition: all 0.3 ease;
}
.link:hover {
  color: #463C75;
}

.link-arrow {
  padding-left: 0;
  padding-right: 5px;
  font-size: 20px;
  color: var(--color-secondary-darkest);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.3 ease-in-out;
}
.link-arrow::after {
  content: " →";
  padding-left: 10px;
  transition: all 0.3s ease;
}
.link-arrow:hover {
  color: #463C75;
  padding-left: 5px;
  padding-right: 0;
}
.link-arrow:hover:after {
  padding-left: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  min-width: 180px;
  outline: none;
  border: none;
  background-color: #7467AE;
  color: var(--color-white);
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: #463C75;
  color: var(--color-white);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #463C75;
  color: var(--color-white);
}

.form-control {
  padding: 15px 10px;
  border-color: #7467AE;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 60, 117, 0.25);
}

.form-control::-moz-placeholder {
  color: #C5C0DC;
}

.form-control::placeholder {
  color: #C5C0DC;
}

.main-header {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.main-header__container {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 999;
}
.main-header__button, .main-header__link {
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.main-header__link {
  color: #7467AE;
  text-decoration: none;
}
.main-header__link:hover {
  color: #463C75;
}
.main-header__nav {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media only screen and (min-width: 62em) {
  .main-header__nav {
    position: relative;
    display: flex;
    color: var(--color-black);
    width: auto;
    height: auto;
    visibility: visible;
    opacity: 1;
  }
}

@media only screen and (max-width: calc(62em - 1px)) {
  .main-header.menu-open .main-nav {
    display: flex;
  }
  .main-header.menu-open .main-nav__bg {
    transform: scale(80);
  }
  .main-header.menu-open .main-header__nav {
    visibility: visible;
    opacity: 1;
    width: 100%;
  }
}
.main-nav {
  font-size: 30px;
  display: none;
  position: relative;
  z-index: 1500;
}
@media only screen and (min-width: 62em) {
  .main-nav {
    display: flex;
    font-size: 21px;
  }
}
.main-nav__bg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  left: 15px;
  top: 20px;
  background-image: radial-gradient(var(--color-primary-lighter), var(--color-primary-darkest));
  z-index: 998;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (min-width: 62em) {
  .main-nav__bg {
    display: none;
  }
}
.main-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
}
@media only screen and (min-width: 62em) {
  .main-nav__list {
    flex-direction: row;
  }
}
.main-nav__link {
  padding: 10px 14px;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (min-width: 62em) {
  .main-nav__link {
    color: var(--color-black);
  }
}
.main-nav__link:hover {
  color: var(--color-secondary);
  cursor: pointer;
}
@media only screen and (min-width: 62em) {
  .main-nav__link:hover {
    color: var(--color-primary);
  }
}

.burger-btn {
  margin: 0 15px;
  cursor: pointer;
  background-color: var(--color-primary);
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
  display: flex;
  z-index: 999;
}
@media only screen and (min-width: 62em) {
  .burger-btn {
    display: none;
  }
}

.burger-btn:focus {
  outline: none;
}

.burger-btn__inner {
  position: relative;
  height: 12px;
  width: 22px;
}

.burger-btn__top,
.burger-btn__bottom,
.burger-btn__mid {
  left: 0;
  display: block;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease-out;
}

.burger-btn__top {
  width: 100%;
  top: 0;
}

.burger-btn__mid {
  width: 80%;
  top: 5px;
}

.burger-btn__bottom {
  width: 100%;
  bottom: 0;
}

.burger-btn.active .burger-btn__top {
  width: 100%;
  transform: rotate(225deg);
  top: 50%;
  background-color: #fff;
}

.burger-btn.active .burger-btn__bottom {
  width: 100%;
  transform: rotate(-225deg);
  top: 50%;
  background-color: #fff;
}

.burger-btn.active .burger-btn__mid {
  transform: scale(0);
}

.hero {
  padding: 110px 0 150px;
  background-color: var(--color-white);
  background-image: url(/img/hero-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
@media only screen and (min-width: 62em) {
  .hero {
    padding: 150px 0;
  }
}
.hero--sm {
  background-image: url(/img/hero-sm.svg);
  background-position: bottom left;
  background-size: cover;
}
.hero__title {
  margin: 0;
  font-size: 14vw;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 800px;
}
@media only screen and (min-width: 36em) {
  .hero__title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 62em) {
  .hero__title {
    font-size: 90px;
  }
}
.hero__subtitle {
  padding-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 62em) {
  .hero__subtitle {
    font-size: 32px;
  }
}
.hero__links {
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  padding-top: 0;
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__link:hover {
  color: var(--color-primary);
}
.hero__link:not(:last-child):after {
  content: "";
  margin-top: 6px;
  height: 20px;
  width: 2px;
  background-color: var(--color-black);
}

.about {
  position: relative;
}
.about__img {
  flex-shrink: 0;
  margin-top: -75px;
  width: 150px;
  height: 150px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .about__img {
    margin-top: -100px;
    width: 200px;
    height: 200px;
  }
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__text {
  padding: 60px 0;
}
@media only screen and (min-width: 48em) {
  .about__text {
    padding: 60px 40px;
  }
}
.about__text p {
  margin-bottom: 0;
}
.about .container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .about .container {
    flex-direction: row;
  }
}

.projects {
  padding-bottom: 60px;
}
.projects__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 62em) {
  .projects__content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.projects__composition {
  flex-grow: 1;
}
@media only screen and (min-width: 62em) {
  .projects__composition {
    margin-top: -2rem;
    position: relative;
  }
}

.composition {
  position: relative;
  margin-top: 40px;
  min-height: 70vw;
}
@media only screen and (min-width: 62em) {
  .composition {
    min-height: 550px;
  }
}
@media only screen and (min-width: 75em) {
  .composition {
    min-height: 600px;
  }
}
@media only screen and (min-width: 90em) {
  .composition {
    min-height: 660px;
  }
}
.composition__photo-wrap {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.composition__block {
  width: 60vw;
  aspect-ratio: 1.6;
  box-shadow: 0 1.5rem 4rem rgba(var(--color-black), 0.4);
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
}
@media only screen and (min-width: 62em) {
  .composition__block {
    width: 50%;
  }
}
.composition__block:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(var(--color-black), 0.5);
  z-index: 20;
}
.composition__block:hover:before {
  transform: scale(0.8);
}
.composition__block--p1 {
  left: 5vw;
  top: 0;
}
@media only screen and (min-width: 62em) {
  .composition__block--p1 {
    left: 20%;
  }
}
.composition__block--p1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -20px;
  top: -20px;
  background-color: #D9D9D9;
  transition: all 0.3s ease;
}
.composition__block--p2 {
  right: -10vw;
  top: 10vw;
}
@media only screen and (min-width: 62em) {
  .composition__block--p2 {
    top: 150px;
    right: 30px;
  }
}
.composition__block--p2::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background-color: #c6c8a1;
  transition: all 0.3s ease;
}
.composition__block--p3 {
  left: -10vw;
  top: 30vw;
}
@media only screen and (min-width: 62em) {
  .composition__block--p3 {
    left: 30px;
    top: 300px;
  }
}
.composition__block--p3::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #9ba2c2;
  transition: all 0.3s ease;
}
.composition__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.composition__photo::before {
  transition: all 0.3s ease;
}
.composition:hover .composition__block:not(:hover) {
  transform: scale(0.95);
}

.experience__content {
  margin-top: 10px;
  margin-bottom: 40px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1);
}
.experience__block.is-open .experience__content {
  grid-template-rows: 1fr;
}
.experience__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.experience__inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 62em) {
  .experience__inner {
    flex-direction: row;
    gap: 100px;
  }
}
.experience__text {
  padding: 20px;
}
@media only screen and (min-width: 62em) {
  .experience__text {
    max-width: 60%;
  }
}
.experience__img {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience__img img {
  max-width: 450px;
  height: auto;
}
.experience .toggle-btn {
  font-size: 64px;
  color: #463C75;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  transform: rotate(0);
  background-color: transparent;
}
.experience .toggle-btn__inner {
  transition: all 0.3s ease;
}
.experience .toggle-btn.is-open {
  transform: rotate(145.53deg);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tag-list__item {
  font-weight: 600;
  text-transform: uppercase;
  color: #463C75;
  background-color: #C5C0DC;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
}
@media only screen and (min-width: 62em) {
  .tag-list__item {
    font-size: 16px;
  }
}

.testimonials {
  padding-bottom: 60px;
}

.testimonial-card {
  max-width: 600px;
  padding: 80px 20px 80px 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 62em) {
  .testimonial-card {
    padding: 0 70px;
    max-width: 750px;
  }
}
.testimonial-card::before {
  content: "“";
  font-size: 128px;
  font-weight: 600;
  position: absolute;
  left: 15px;
  top: 0;
}
@media only screen and (min-width: 62em) {
  .testimonial-card::before {
    left: 0;
    top: -50px;
  }
}
.testimonial-card__text {
  margin-bottom: 30px;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card__footer p:first-child {
  font-weight: 700;
}

.testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
}
.testimonials-slider .swiper {
  width: 100%;
  height: 100%;
}
.testimonials-slider .swiper-slide {
  background: #463C75;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.testimonials-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-slider .swiper-pagination-bullet-active {
  background-color: #fff;
}

.main-footer {
  margin: 40px 0;
}
.main-footer__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .main-footer__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.main-footer .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 48em) {
  .main-footer .socials {
    margin-left: auto;
  }
}
.main-footer .socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #5d5198;
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
}
.main-footer .socials__link:hover {
  background-color: #756ca4;
}

.footer-nav__list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 48em) {
  .footer-nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
}
.footer-nav__link {
  display: inline-flex;
  padding: 10px;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 48em) {
  .footer-nav__link {
    padding: 10px 0;
  }
}
.footer-nav__link:hover {
  color: #463C75;
}

.project-cases {
  background-color: var(--color-white);
}
@media only screen and (min-width: 36em) {
  .project-cases {
    margin-bottom: 60px;
  }
}

.cases {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card {
  margin-bottom: 20px;
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-white);
}
@media only screen and (min-width: 62em) {
  .case-card {
    flex-direction: row;
    max-width: 100%;
  }
}
.case-card__img {
  width: 100%;
  padding-bottom: 62%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 62em) {
  .case-card__img {
    width: 50%;
    padding-bottom: 31%;
  }
}
.case-card__img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.6s ease;
}
.case-card__body {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 62em) {
  .case-card__body {
    width: 50%;
  }
}
.case-card__title {
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  color: #463C75;
  font-size: 22px;
}
@media only screen and (min-width: 62em) {
  .case-card__title {
    font-size: 24px;
  }
}
.case-card__title a {
  display: inline-block;
  color: inherit;
  transition: all 0.3s ease;
}
.case-card__title a:hover {
  color: #463C75;
}
.case-card__subtitle {
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  color: #D9D9D9;
  font-size: 18px;
}
@media only screen and (min-width: 62em) {
  .case-card__subtitle {
    font-size: 20px;
  }
}
.case-card__subtitle a {
  display: inline-block;
  color: inherit;
  transition: all 0.3s ease;
}
.case-card__subtitle a:hover {
  color: #463C75;
}
.case-card__bottom {
  padding-top: 50px;
  margin-top: auto;
}

.case-card__text {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.74;
}

.case-card__bottom {
  padding-top: 50px;
  margin-top: auto;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 75em) {
  .section {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .section {
    padding-top: 110px;
  }
}
.section__head-text {
  max-width: 460px;
}
/*# sourceMappingURL=main.css.map */
