@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Inconsolata&family=Inria+Serif&family=Inter:wght@400;500;600&family=Poppins:wght@400;600&display=swap");
h1 {
  color: #fff;
}

h2 {
  color: #04090c;
  font-family: "Inter", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h3 {
  color: #3c3939;
  font-size: 32.4px;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 600;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.header {
  padding-top: 33px;
  background-image: url(../image/header-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper {
  padding-top: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 45px;
}
.header-icons p {
  font-size: 27px;
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #2a953d;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  opacity: 0;
  transition: right 1s, opacity 1.4s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: right 1s, opacity 1.4s;
  -moz-transition: right 1s, opacity 1.4s;
  -ms-transition: right 1s, opacity 1.4s;
  -o-transition: right 1s, opacity 1.4s;
}
.header-left {
  max-width: 788px;
}
.header-text {
  color: #989898;
  font-family: "Inconsolata", monospace;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.header-title {
  font-family: "Inter", sans-serif;
  font-size: 59.94px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 29px 0 60px;
}

.header-icons .fa-brands {
  position: relative;
  color: #fff;
  border: 3.2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  font-size: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s;
  margin-bottom: 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.header-icons .fa-brands:hover {
  text-shadow: 0px 0px 21px rgb(30, 184, 211);
  box-shadow: 0px 0px 21px #2a953d;
}
.header-icons .fa-brands:hover p {
  opacity: 1;
  right: 100px;
}

.logo {
  width: 125px;
}

.openn .menu {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.openn .menu-btn {
  opacity: 0;
}

.menu {
  z-index: 10;
  position: fixed;
  right: 0;
  top: 0;
  padding: 40px 40px 10px;
  max-width: 388px;
  height: 100%;
  background-color: #010609;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
  transition: transform 1s ease;
  -webkit-transition: transform 1s ease;
  -moz-transition: transform 1s ease;
  -ms-transition: transform 1s ease;
  -o-transition: transform 1s ease;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-title {
  color: #2a953d;
  font-size: 25.2px;
  font-family: "Inconsolata", monospace;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 11.73px;
}
.menu-link {
  position: relative;
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-style: 24px;
  line-height: 25px;
  letter-spacing: 0.2em;
  color: #fff;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
}
.menu-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #2a953d;
  bottom: -7px;
  left: 0;
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -ms-transition: width 0.5s;
  -o-transition: width 0.5s;
}
.menu-link:hover {
  color: #2a953d;
}
.menu-link:hover::after {
  width: 100%;
}
.menu-text {
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
}
.menu-icon .fa-brands {
  color: #737373;
}
.menu-icon .fa-brands:hover {
  color: #2a953d;
  text-shadow: 0px 0px 21px rgb(42, 149, 61);
}
.menu-btn {
  width: 190px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px 0 20px;
  font-size: 23.4px;
  font-family: "Inconsolata", monospace;
  color: #2a953d;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  background-color: #010609;
  opacity: 1;
  transition: opacity 0.4 ease;
  -webkit-transition: opacity 0.4 ease;
  -moz-transition: opacity 0.4 ease;
  -ms-transition: opacity 0.4 ease;
  -o-transition: opacity 0.4 ease;
}
.menu-span {
  position: relative;
  width: 50px;
  height: 2.7px;
  background-color: #fff;
}
.menu-span::after, .menu-span::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2.7px;
  background-color: #fff;
}
.menu-span::after {
  bottom: -15px;
  left: 0;
}
.menu-span::before {
  top: -15px;
  left: 0;
}

.icon-container {
  display: flex;
  -moz-column-gap: 28px;
  column-gap: 28px;
}
.icon-container .fa-brands {
  font-size: 32.04px;
  transition: color 0.3s, text-shadow 0.5s;
  -webkit-transition: color 0.3s, text-shadow 0.5s;
  -moz-transition: color 0.3s, text-shadow 0.5s;
  -ms-transition: color 0.3s, text-shadow 0.5s;
  -o-transition: color 0.3s, text-shadow 0.5s;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.close-span {
  position: relative;
  display: block;
  width: 15px;
  height: 4px;
  background-color: #000;
  border-radius: 5px;
  transform: scale(1) rotateZ(45deg) translate(0px, 0px);
  -webkit-transform: scale(1) rotateZ(45deg) translate(0px, 0px);
  -moz-transform: scale(1) rotateZ(45deg) translate(0px, 0px);
  -ms-transform: scale(1) rotateZ(45deg) translate(0px, 0px);
  -o-transform: scale(1) rotateZ(45deg) translate(0px, 0px);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.close-span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #000;
  top: 0;
  left: 0;
  transform: scale(1) rotateZ(90deg) translate(0px, 0px);
  -webkit-transform: scale(1) rotateZ(90deg) translate(0px, 0px);
  -moz-transform: scale(1) rotateZ(90deg) translate(0px, 0px);
  -ms-transform: scale(1) rotateZ(90deg) translate(0px, 0px);
  -o-transform: scale(1) rotateZ(90deg) translate(0px, 0px);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.container-header {
  max-width: 1585px;
  padding: 0 15px 75px;
  margin: 0 auto;
}

.btn {
  font-family: "Inconsolata", monospace;
  color: #fff;
  background-color: #04090c;
  font-size: 23.94px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 22px 40px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: 2px solid #f1f1f1;
}
.btn:hover {
  background-color: #eaeaea;
  color: #2d2d2d;
  border: 2px solid #eaeaea;
}
.btn-left {
  margin: 0 47px 0 5px;
}
.icons-scroll {
  position: relative;
  margin-top: 57px;
  color: #fff;
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-size: 25.02px;
  line-height: 26px;
  letter-spacing: 0.02em;
  margin-right: 23px;
}
.icons-scroll::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(/image/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: -27px;
  bottom: 3px;
  width: 15px;
  height: 15px;
}

.subtitle {
  font-family: "Inconsolata", monospace;
  color: #04090c;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about {
  background-color: #2a953d;
}
.about-container {
  max-width: 1200px;
  padding: 65px 15px 115px;
  margin: 0 auto;
  text-align: center;
}
.about-title {
  color: #fff;
  font-size: 73.8px;
  font-weight: 600;
  margin: 14px auto 7px;
  text-transform: uppercase;
}
.about-desc {
  font-family: "Inconsolata", monospace;
  font-size: 19.8px;
  font-weight: 400;
  line-height: 1.2;
  color: #04090c;
  text-transform: uppercase;
  position: relative;
}
.about-desc::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #fff;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.about-text {
  font-family: "Inria Serif", serif;
  font-size: 28.8px;
  font-weight: 400;
  line-height: 1.9;
  color: #04090c;
  margin: 94px auto 80px;
}
.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.about-item {
  padding: 0 5px;
}
.about-digital {
  font-family: "Inter", sans-serif;
  font-size: 88.92px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #fff;
}
.about-text1 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #04090c;
}
.about-line {
  height: 150px;
  width: 1px;
  background-color: #fff;
}

.title {
  position: relative;
}

.title::after {
  position: absolute;
  content: "";
  width: 70%;
  height: 1px;
  background-color: #3c3c3c;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.work-container {
  max-width: 1310px;
  padding: 75px 15px 156px;
  margin: 0 auto;
  text-align: center;
}
.work-subtitle {
  color: #2a953d;
}
.work-title {
  margin: 26px auto 165px;
}
.work-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -moz-column-gap: 120px;
  column-gap: 120px;
  row-gap: 60px;
  -moz-row-gap: 60px;
}
.work-item {
  flex: 1 1 calc(50% - 130px);
  text-align: left;
  padding-left: 104px;
  background: 15px top no-repeat;
}
.work-item-text {
  line-height: 1.3;
  text-transform: capitalize;
  color: #737373;
  padding-top: 30px;
}

.works {
  min-height: 500px;
  background: linear-gradient(180deg, #111111 0%, #111111 28.5%, #fff 28.5%, #fff 100%);
}
.works-container {
  max-width: 1255px;
  padding: 40px 15px 110px;
  margin: 0 auto;
  text-align: center;
}
.works-subtitle {
  color: #2a953d;
}
.works-title {
  margin: 38px auto 146px;
  color: #fff;
}
.works-title::after {
  color: #666666;
}
.works-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1077px;
}
.works-column-left {
  flex: 1 0 47.64%;
}
.works-column-right {
  flex: 1 0 52.36%;
}
.works-item {
  position: relative;
  overflow: hidden;
}
.works-item:hover .works-img {
  filter: invert(20%);
  -webkit-filter: invert(20%);
}
.works-item:hover .fa-brands {
  top: 50px;
}
.works-item:hover .works-post {
  bottom: 94px;
}
.works-item:hover .works-category {
  bottom: 70px;
}
.works-item .fa-brands {
  z-index: 10;
  position: absolute;
  font-size: 23.94px;
  color: rgba(255, 255, 255, 0.8);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background-color: #1f1f1f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: 17px;
  top: -65px;
  transition: top 0.6s ease;
  -webkit-transition: top 0.6s ease;
  -moz-transition: top 0.6s ease;
  -ms-transition: top 0.6s ease;
  -o-transition: top 0.6s ease;
}
.works-item .fa-brands::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.works-post {
  color: #fcfcfc;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 48.06px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  z-index: 10;
  position: absolute;
  bottom: -50px;
  left: 32px;
  transition: bottom 0.7s ease;
  -webkit-transition: bottom 0.7s ease;
  -moz-transition: bottom 0.7s ease;
  -ms-transition: bottom 0.7s ease;
  -o-transition: bottom 0.7s ease;
}
.works-category {
  color: #fcfcfc;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 19.98px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  z-index: 10;
  position: absolute;
  bottom: -60px;
  left: 32px;
  transition: bottom 0.9s ease;
  -webkit-transition: bottom 0.9s ease;
  -moz-transition: bottom 0.9s ease;
  -ms-transition: bottom 0.9s ease;
  -o-transition: bottom 0.9s ease;
}
.works-img {
  transition: filter 0.9s ease;
  -webkit-transition: filter 0.9s ease;
  -moz-transition: filter 0.9s ease;
  -ms-transition: filter 0.9s ease;
  -o-transition: filter 0.9s ease;
  width: 100%;
}

.clients {
  background-color: #e6e6e6;
}
.clients-container {
  max-width: 1270px;
  padding: 126px 15px 138px;
  margin: 0 auto;
  text-align: center;
}
.clients-subtitle {
  color: #2a953d;
}
.clients-title {
  margin: 38px auto 156px;
  max-width: 1030px;
}
.clients-title::after {
  display: none;
}
.clients-collaborate {
  max-width: 1177px;
  margin: 0 auto;
}
.clients-collaborate::after, .clients-collaborate::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #666666;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.clients-collaborate::after {
  bottom: -96px;
}
.clients-collaborate::before {
  top: -96px;
}
.clients-img {
  max-width: 153px;
  width: 100%;
}
.clients-wrapper {
  padding-top: 294px;
  position: relative;
}
.clients-slider .owl-prev, .clients-slider .owl-next {
  position: absolute;
  top: 7%;
  z-index: 100;
}
.clients-slider .owl-prev i, .clients-slider .owl-next i {
  color: #000;
  font-size: 25.02px;
}
.clients-slider .owl-prev {
  left: 0;
}
.clients-slider .owl-next {
  right: 0;
}
.clients-item {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.clients-item-text {
  font-family: "Inria Serif", serif;
  font-size: 34.02px;
  color: #565656;
}
.clients-item-img {
  margin: 35px 0 16px;
  max-width: 150px;
}
.clients-item-name {
  padding-bottom: 3px;
  font-size: 32.04px;
  color: #000;
}
.clients-item-company {
  font-size: 23.94px;
  color: #737373;
  font-weight: 500;
}

.contact {
  background-image: url(../image/contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.contact-container {
  max-width: 1270px;
  padding: 81px 15px 138px;
  margin: 0 auto;
  text-align: center;
}
.contact-subtitle {
  color: #2a953d;
  position: relative;
}
.contact-title {
  color: #fff;
  padding: 35px 0 135px;
}
.contact-title::after {
  content: none;
}
.contact-column {
  display: flex;
  background-color: rgba(15, 15, 15, 0.75);
}
.contact-form-title {
  font-family: "Inter", sans-serif;
  font-size: 23.94px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 134px;
}
.contact-form-container {
  display: flex;
  flex-direction: column;
  flex: 62%;
  padding: 71px 82px 64px 58px;
}
.contact-form-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 50px;
}
.contact-form label {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 19.98px;
  line-height: 1.1;
  letter-spacing: 0.15em;
  margin-left: 2px;
  opacity: 0.55;
}
.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.55);
  padding: 0 5px;
}
.contact-form input {
  height: 45px;
  font-size: 19.98px;
  color: #fff;
}
.contact-form textarea {
  color: #fff;
  font-size: 19.98px;
  resize: none;
  height: 200px;
  padding-top: 5px;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
.contact-btn {
  color: #fff;
  font-family: "Inconsolata", monospace;
  font-weight: 500;
  font-size: 36px;
  line-height: 2.1;
  text-transform: uppercase;
  background-color: #2a953d;
  letter-spacing: 0.05em;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.contact-btn:hover {
  background-color: #39b54a;
}
.contact-info {
  flex: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 71px 40px 106px;
  align-items: flex-start;
  text-align: left;
  background-color: #0e0e0e;
}
.contact-info-title {
  font-family: "Inter", sans-serif;
  font-size: 23.94px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.55;
}
.contact-list {
  opacity: 0.55;
}
.contact-item {
  max-width: 347px;
  font-family: "Inter", sans-serif;
  font-size: 21.96px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.contact-item:not(:last-child) {
  padding-bottom: 105px;
}
.contact-item-title {
  color: #2a953d;
  padding-bottom: 23px;
}
.contact-item-desc {
  font-size: 19.98px;
  line-height: 1.4;
  color: #737373;
}
.contact-icon .fa-brands {
  color: #fff;
  transition: text-shadow 0.4s ease, color 0.3s ease;
  -webkit-transition: text-shadow 0.4s ease, color 0.3s ease;
  -moz-transition: text-shadow 0.4s ease, color 0.3s ease;
  -ms-transition: text-shadow 0.4s ease, color 0.3s ease;
  -o-transition: text-shadow 0.4s ease, color 0.3s ease;
}
.contact-icon .fa-brands:hover {
  color: rgba(42, 149, 61, 0.9);
  text-shadow: 0px 0px 21px rgb(42, 149, 61);
}

.footer {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.15em;
  background-color: #111111;
}
.footer-container {
  max-width: 1270px;
  padding: 30px 15px 100px;
  margin: 0 auto;
  text-align: center;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footer-column1 {
  text-align: left;
  flex: 0 1 544px;
}
.footer-logo {
  width: 145px;
}
.footer-text {
  font-size: 19.98px;
  line-height: 1.3;
  color: #737373;
}
.footer-text1 {
  margin-top: 30px;
}
.footer-column2 {
  text-align: left;
  flex: 0 1 512px;
}
.footer-title {
  font-size: 23.94px;
  line-height: 1.3;
  color: #fff;
}
.footer-desc {
  margin: 32px 0 50px;
}
.footer-form {
  position: relative;
}
.footer-form-email {
  background: url(../image/mail.png) 20px no-repeat;
  height: 60px;
  background-color: #000;
  color: #fff;
  font-size: 19.08px;
  line-height: 1.8;
  width: 100%;
  padding-left: 87px;
}
.footer-form-email::-moz-placeholder {
  color: #686868;
}
.footer-form-email::placeholder {
  color: #686868;
}
.footer-form-btn {
  position: absolute;
  color: #fff;
  background-color: #2a953d;
  padding: 0 20px;
  font-size: 19.08px;
  line-height: 1.8;
  text-transform: uppercase;
  right: 0;
  height: 60px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.footer-form-btn:hover {
  background-color: #39b54a;
}/*# sourceMappingURL=style.css.map */