<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@keyframes animate {
  0%, 100% {
    clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
.arrow-left span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #ff3140;
  border-left: 3px solid #ff3140;
  margin: -2px;
  animation: arrow-left 1s infinite;
  float: left;
}

.arrow-left span:nth-child(2) {
  animation-delay: -0.1s;
}

.arrow-left span:nth-child(3) {
  animation-delay: -0.2s;
}

@keyframes arrow-left {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0px, 0px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(0px, 0px);
  }
}
.arrow-right {
  cursor: pointer;
}

.arrow-right span {
  display: block;
  width: 20px;
  height: 20px;
  border-top: 3px solid #ee4d2e;
  border-right: 3px solid #ff3140;
  margin: -2px;
  animation: arrow-right 1s infinite;
  float: right;
}

.arrow-right span:nth-child(2) {
  animation-delay: -0.1s;
}

.arrow-right span:nth-child(3) {
  animation-delay: -0.2s;
}

@keyframes arrow-right {
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(0px, 0px);
  }
  50% {
    opacity: 1;
  }
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0px, 0px);
  }
}
.ocean-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 245px;
}

.ocean {
  height: 31px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #015871;
}
.ocean .wave_bottom {
  background: #015871;
  bottom: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 20px;
  display: none;
}

.wave {
  background: url(./src/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.endWave {
  display: none;
}

.ocean2-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 245px;
}

.ocean2 {
  height: 31px;
  width: 100%;
  position: absolute;
  top: 0;
  background: #015871;
}
.ocean2 .wave2 {
  background: url(./src/wave2.svg) repeat-x;
  position: absolute;
  top: 28px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}
.ocean2 .wave2:nth-of-type(2) {
  top: 10px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}
@keyframes wave2 {
  0% {
    margin-left: -1600px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.ocean2 .endWave {
  display: none;
}

/* --- custom range --- */
.page-width {
  max-width: 1170px;
  margin: 0 auto;
  min-width: 320px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 320px;
  width: 100%;
  height: 100%;
  font-family: "Roboto", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #FFFEEA 0%, #D8F2EA 100%);
}
.layout .content {
  background: rgb(39, 39, 51);
  background-size: cover;
  color: rgb(255, 255, 255);
  padding: 120px 0 150px 0;
  position: relative;
}
.layout .content__container {
  position: relative;
  z-index: 1;
}
.layout .content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.1;
  background-position: center center;
  background-repeat: repeat-y;
  background-image: url("../src/content.png");
  background-image: -webkit-image-set(url("../src/content.webp") 1x);
  background-image: image-set(url("../src/content.webp") type("image/webp"), url("../src/content.png") type("image/png"));
}
.layout .content__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.layout .content__title_style2 {
  color: rgb(62, 156, 220);
}
.layout .content__subtitle {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: rgb(187, 187, 187);
}
.layout .content__icons-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}
.layout .content__icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: start;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1024px) {
  .layout .content__icons-container {
    grid-column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .layout .content__icons-container {
    width: 1170px;
    padding-bottom: 15px;
  }
}
.layout .content__icons-container .icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.layout .content__icons-container .icon-wrapper:not(:last-child):before {
  content: "";
  position: absolute;
  top: 47px;
  left: 50%;
  width: 100%;
  height: 6px;
  background: radial-gradient(#C4C4C4 3px, transparent 0%) center, transparent;
  background-size: 26px 26px;
  background-repeat: repeat-x;
  background-position: 0 -10px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .layout .content__icons-container .icon-wrapper:not(:last-child):before {
    top: 37px;
    background-size: 20px 20px;
    background-position: 0 -7px;
  }
}
.layout .content__icons-container .icon-wrapper__icon {
  background: rgb(62, 156, 220);
  border: 5px solid rgb(40, 102, 144);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 33px;
  color: rgb(255, 255, 255);
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .layout .content__icons-container .icon-wrapper__icon {
    width: 80px;
    height: 80px;
  }
}
.layout .content__icons-container .icon-wrapper__text {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin-top: 20px;
}
.layout .content__form {
  margin-top: 80px;
  display: grid;
  grid-template-areas: "type email name" "range range file" ". send .";
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 30px;
}
@media (min-width: 576px) and (max-width: 932px) {
  .layout .content__form {
    grid-template-areas: "type email" "name file" "range range " "send send";
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .layout .content__form {
    grid-template-areas: "type" "email" "name" "range" "file" "send";
    grid-template-columns: 1fr;
  }
}
.layout .content__form .form-input__type {
  grid-area: type;
}
.layout .content__form .form-input__email {
  grid-area: email;
}
.layout .content__form .form-input__name {
  grid-area: name;
}
.layout .content__form .form-input__range {
  grid-area: range;
}
.layout .content__form .form-input__file {
  grid-area: file;
}
.layout .content__form .form-input__send {
  grid-area: send;
}
@media (min-width: 576px) and (max-width: 932px) {
  .layout .content__form .form-input__send {
    width: 50%;
    justify-self: center;
  }
}
.layout .content__form .form-input__send button {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
}
.layout .block .block-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  color: #363636;
  letter-spacing: -0.4px;
  margin-bottom: 30px;
  text-align: center;
}
.layout .block .block-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #888888;
  mix-blend-mode: normal;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
.layout .our-clients {
  margin-bottom: 15px;
  padding-top: 90px;
}
.layout .our-clients .our-clients-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.layout .our-clients .our-clients-container .client-item img {
  width: 100%;
}
.layout .completed-projects {
  background-image: url(./src/projects_back.svg);
  background-position-x: 0;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1620px) {
  .layout .completed-projects {
    background: none;
  }
}
.layout .completed-projects .completed-projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 70px;
}
.layout .completed-projects .completed-projects-container .completed-projects-item {
  width: calc((100% - 60px) / 3);
}
.layout .completed-projects .completed-projects-container .completed-projects-item .image-wrapper img {
  border-radius: 25px;
  box-shadow: 0 19px 70px rgb(224, 245, 234), 0 11px 10px rgb(92, 169, 176);
}
@media (max-width: 768px) {
  .layout .completed-projects .completed-projects-container .completed-projects-item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 576px) {
  .layout .completed-projects .completed-projects-container .completed-projects-item {
    width: 100%;
  }
}
.layout .completed-projects .completed-projects-container .completed-projects-item .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #363636;
  margin-bottom: 18px;
  margin-top: 25px;
}
.layout .completed-projects .completed-projects-container .completed-projects-item .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #888888;
  text-align: justify;
}
.layout .advantages {
  margin-bottom: 20px;
  padding-top: 80px;
}
.layout .advantages .advantages-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 576px) and (max-width: 1024px) {
  .layout .advantages .advantages-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .layout .advantages .advantages-container .advantages-item {
    padding-left: 0px;
    padding-right: 0px;
    border-right: none;
  }
  .layout .advantages .advantages-container .advantages-item:not(:nth-child(2n)) {
    padding-right: 40px;
    border-right: 1px solid #DCDCDC;
  }
  .layout .advantages .advantages-container .advantages-item:nth-child(2n) {
    padding-left: 40px;
  }
  .layout .advantages .advantages-container .advantages-item:nth-child(1) {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 40px;
  }
  .layout .advantages .advantages-container .advantages-item:nth-child(2) {
    padding-bottom: 40px;
    border-bottom: 1px solid #DCDCDC;
  }
  .layout .advantages .advantages-container .advantages-item:nth-child(3) {
    padding-top: 40px;
  }
  .layout .advantages .advantages-container .advantages-item:nth-child(4) {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .layout .advantages .advantages-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .layout .advantages .advantages-container .advantages-item {
    padding-left: 0px;
    padding-right: 0px;
    border: none;
  }
  .layout .advantages .advantages-container .advantages-item:not(:first-child) {
    padding-top: 40px;
  }
  .layout .advantages .advantages-container .advantages-item:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 1px solid #DCDCDC;
  }
}
.layout .advantages .advantages-container .advantages-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .layout .advantages .advantages-container .advantages-item:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid #DCDCDC;
  }
  .layout .advantages .advantages-container .advantages-item:not(:first-child) {
    padding-left: 40px;
  }
}
.layout .advantages .advantages-container .advantages-item .image-wrapper {
  margin-bottom: 22px;
}
.layout .advantages .advantages-container .advantages-item .title {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.4px;
  color: #1A3560;
  margin-bottom: 26px;
  word-break: break-word;
}
.layout .advantages .advantages-container .advantages-item .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #1A3560;
  mix-blend-mode: normal;
}
.layout .main-components {
  background: #015871;
  padding-bottom: 67px;
}
.layout .main-components .block-title {
  color: #FFFFFF;
}
.layout .main-components .block-subtitle {
  max-width: 600px;
  color: #D6E6EA;
}
.layout .main-components .main-components-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 768px) {
  .layout .main-components .main-components-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .layout .main-components .main-components-container {
    grid-template-columns: 1fr;
  }
  .layout .main-components .main-components-container .main-components-item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.layout .main-components .main-components-container .main-components-item .image-wrapper {
  margin-bottom: 16px;
}
.layout .main-components .main-components-container .main-components-item .image-wrapper image {
  width: 100%;
}
.layout .main-components .main-components-container .main-components-item .title {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
}
.layout .main-components .main-components-container .main-components-item .sub-title {
  color: #C9DDE2;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.layout .main-slider-wrapper {
  background: #015871;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .layout .main-slider-wrapper {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .layout .main-slider-wrapper {
    font-size: 12px;
    line-height: 1.2;
  }
}
.layout .main-slider-wrapper .main-slider {
  width: 100%;
}
.layout .main-slider-wrapper .main-slider .swiper-pagination-progressbar {
  background: #0b647e;
}
.layout .main-slider-wrapper .main-slider .swiper-pagination-progressbar-fill {
  background-color: rgb(58, 140, 153);
}
.layout .main-slider-wrapper .main-slider .swiper-button-prev, .layout .main-slider-wrapper .main-slider .swiper-button-next {
  color: rgb(255, 255, 255);
}
.layout .main-slider-wrapper .main-slider .slide {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 40px;
}
.layout .main-slider-wrapper .main-slider .slide .slide1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-gap: 50px; */
  /* border: 1px solid white; */
  border-radius: 9px;
  /* padding: 40px; */
  justify-items: start;
  align-items: center;
  grid-column-gap: 30px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 768px) {
  .layout .main-slider-wrapper .main-slider .slide .slide1 {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 20px;
  }
}
@media (max-width: 820px) {
  .layout .main-slider-wrapper .main-slider .slide .slide1 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-items: center;
  }
}
.layout .main-slider-wrapper .main-slider .slide .slide-image img {
  border-radius: 25px;
}
.layout .main-slider-wrapper .main-slider .slide .slide-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 32px;
  color: rgb(255, 255, 255);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.layout .main-slider-wrapper .main-slider .slide .slide-title .num {
  font-size: 100px;
  line-height: 1;
  color: rgb(255, 255, 255);
}
@media (max-width: 1200px) {
  .layout .main-slider-wrapper .main-slider .slide .slide-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .layout .main-slider-wrapper .main-slider .slide .slide-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}
.layout .main-slider-wrapper .main-slider .slide .slide-text {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
.layout .main-slider-wrapper .main-slider .slide .slide-text p {
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
}
.layout .main-slider-wrapper .main-slider .slide .slide-text li {
  color: rgb(255, 255, 255);
}
@media (max-width: 1200px) {
  .layout .main-slider-wrapper .main-slider .slide .slide-text {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .layout .main-slider-wrapper .main-slider .slide .slide-text {
    font-size: 12px;
    line-height: 1.2;
  }
}
.layout .main-slider-wrapper .main-slider .slide .text-with-num {
  color: rgb(255, 255, 255);
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.1;
}
.layout .main-slider-wrapper .main-slider .slide .text-with-num .num {
  color: rgb(255, 255, 255);
  font-size: 80px;
  width: 90px;
  height: 90px;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout .main-slider-wrapper .main-slider .slide ul {
  padding: 0;
  list-style: none;
}
.layout .main-slider-wrapper .main-slider .slide ul li {
  padding: 6px;
}
.layout .main-slider-wrapper .main-slider .slide ul li:before {
  padding-right: 10px;
  font-weight: bold;
  color: #337AB7;
  content: "✔";
  transition-duration: 0.5s;
}
.layout .main-slider-wrapper .main-slider .slide ul li:hover:before {
  color: #ee4d2e;
  content: "✔";
}

.btn-wave-container {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 30px;
  width: 430px;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-top: 40px;
  border-radius: 27px;
}
.btn-wave-container:hover .btn-wave {
  top: -150px;
}
@media (max-width: 576px) {
  .btn-wave-container {
    width: 100%;
  }
  .btn-wave-container .btn-wave-text {
    flex-wrap: wrap;
  }
}
.btn-wave-container .btn-wave-text {
  position: relative;
  color: #ee4d2e;
  display: flex;
}
.btn-wave-container .btn-wave-text span {
  color: #ee4d2e;
}
.btn-wave-container .btn-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(45deg, #3f919d, #29ABE2);
  transition: 0.5s ease;
}
.btn-wave-container .btn-wave:after, .btn-wave-container .btn-wave:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 200%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}
.btn-wave-container .btn-wave:after {
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.5);
  animation: btn-wave 7s linear infinite;
}
.btn-wave-container .btn-wave:before {
  border-radius: 45%;
  background: rgba(62, 151, 195, 0.6117647059);
  animation: btn-wave 12s linear infinite;
}

@keyframes btn-wave {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  0% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
.btn-wave-new {
  position: relative;
  width: 200px;
  height: 70px;
  border-radius: 27px;
  margin-top: 40px;
}
.btn-wave-new:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #7cc1c2;
  animation: animate 4s ease-in-out infinite;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.btn-wave-new span {
  position: absolute;
  color: #ee4d2e;
  font-size: 24px;
  font-weight: 600;
  z-index: 2;
}

.banner {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("./src/banner.png");
  background-image: -webkit-image-set(url("./src/banner.webp") 1x);
  background-image: image-set(url("./src/banner.webp") type("image/webp"), url("./src/banner.png") type("image/png"));
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1200px) {
  .banner {
    background-position: top left;
    background-size: auto;
  }
}
@media (max-width: 576px) {
  .banner {
    background-size: cover;
  }
}
.banner__container {
  margin-top: 135px;
  margin-bottom: 135px;
  max-width: 720px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
}
.banner__head {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 55px;
  word-wrap: break-word;
  text-align: center;
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
  position: relative;
}
.banner__head span {
  position: relative;
}
.banner__head span:after {
  content: attr(data-content);
  position: absolute;
  top: 8px;
  left: 0;
  color: #03a9f4;
  animation: animate 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .banner__head span:after {
    top: 1px;
  }
}
@media (max-width: 768px) {
  .banner__head {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 576px) {
  .banner__head {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 350px) {
  .banner__head {
    font-size: 26px;
    line-height: 1.2;
  }
}
.banner__text {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: rgb(255, 255, 255);
}

/*# sourceMappingURL=app.css.map */
</pre></body></html>