<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------------------------
	 General styles
------------------------------------------------------- */

.App {
  background-image: url("../images/bodyBg/bg2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px;
}

@media (max-width: 991px) {
  .App {
    padding: 10px;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

a {
  color: #4f4d47;
  text-decoration: none;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

a:hover {
  color: #dadada;
}

.wrapper {
  background: white;
  margin: auto;
  width: 90%;
  max-width: 1250px;
  overflow: hidden;
  border-width: 6px;
  border-style: solid;
  border-image: linear-gradient(to right, #b38263, #bba3a7) 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

p {
  font-size: 1.1em;
  font-family: "Oxygen", sans-serif;
  color: #333;
  line-height: 1.7em;
  margin-top: 14px;
  margin-bottom: 20px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  font-weight: 600;
  color: #4f4d47;
  margin-top: 50px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.7em;
}

h2 {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #898989;
  margin-top: 40px;
  margin-bottom: 34px;
  text-align: center;
  line-height: 1.7em;
  padding-left: 150px;
  padding-right: 150px;
}

h3 {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #898989;
  margin-top: 16px;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.7em;
}

h4 {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #898989;
  margin-top: 16px;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.7em;
}

.heading-inner {
  font-family: "Playfair Display", Helvetica, Sans-serif;
  font-size: 3em;
  font-weight: 600;
  color: #bb8d68;
  margin-top: 16px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.7em;
}

.hr {
  border-bottom: 2px solid #4f4d47;
  display: block;
  width: 14px;
  margin: auto;
  margin-bottom: 20px;
}

.media,
.media-heading {
  font-size: 1em;
}

.media .text-primary {
  color: #4f4d47;
}

.media,
p {
  font-size: 1em;
  font-family: "Oxygen", sans-serif;
  color: #333;
  line-height: 1.7em;
  margin-top: 14px;
  margin-bottom: 20px;
}

/* ----------------------------------------------------
	 Navigation and logo styles
------------------------------------------------------- */

.brand {
  display: none;
}

.navbar-default .navbar-brand {
  padding: 10px 12px 14px;
  text-align: center;
  font-family: "Qwigley", Helvetica, Sans-serif;
  font-size: 3.4em;
  color: #4f4d47;
  text-transform: capitalize;
  margin-top: 38px;
}

.navbar-default .navbar-brand .title {
  display: block;
  padding: 10px 0 45px;
  text-align: center;
  font-size: 0.3em;
  font-weight: 400;
  color: #999999;
  text-transform: lowercase;
  font-family: "Oxygen", sans-serif;
}

.navbar-nav {
  text-transform: capitalize;
  font-weight: 400;
}

.navbar-default {
  background-color: transparent;
}

.navbar-toggle {
  margin-top: 30px;
  border: none;
}

.nav .open &gt; a,
.nav .open &gt; a:hover,
.nav .open &gt; a:focus {
  background-color: #eee;
  border-color: transparent;
}

@media screen and (min-width: 768px) {
  .brand {
    display: inherit;
    margin: 0;
    padding: 30px 0 14px;
    text-align: center;
    font-family: "Qwigley", Helvetica, Sans-serif;
    font-size: 4.1em;
    line-height: normal;
    color: #4f4d47;
    text-transform: capitalize;
  }

  .brand .title {
    display: block;
    padding: 10px 0 27px;
    text-align: center;
    font-size: 0.2em;
    font-weight: 400;
    color: white;
    text-transform: lowercase;
    font-family: "Oxygen", sans-serif;
  }

  .navbar {
    border-radius: 0;
    min-height: 0;
  }

  .navbar-header {
    display: none;
  }

  .navbar-default {
    border: none;
    background: #fff;
    margin-top: 7px;
    padding-bottom: 12px;
  }

  .navbar-default .navbar-nav &gt; li &gt; a {
    color: #27090e;
    font-family: "Oxygen", sans-serif;
    font-size: 1.1em;
    border-top: 1px solid #27090e;
    border-bottom: 1px solid #27090e;
  }

  .navbar-default .navbar-nav &gt; li &gt; a:hover {
    color: white;
    background: #27090e;
  }

  .nav &gt; li &gt; a {
    padding: 20px;
  }

  .navbar-nav &gt; li &gt; a {
    line-height: normal;
  }

  .navbar-nav {
    display: table;
    float: none;
    margin: 0 auto;
    table-layout: fixed;
  }

  .navbar-default .navbar-nav &gt; .active &gt; a,
  .navbar-default .navbar-nav &gt; .active &gt; a:hover,
  .navbar-default .navbar-nav &gt; .active &gt; a:focus {
    color: #4f4d47;
    background-color: transparent;
  }
}

/* ----------------------------------------------------
	 Buttons styles
------------------------------------------------------- */

.btn {
  border-radius: 0px;
  text-decoration: none;
  padding: 12px 15px;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 0.2em;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
  margin-top: 10px;
}

.home-btn {
  color: #7e6d73;
  background-color: transparent;
  border: 2px solid #7e6d73;
  font-size: 1.5rem;
  font-weight: bold;
}

.home-btn:hover {
  color: white;
  background-color: #7e6d73;
  border-color: white;
}

.home1-btn {
  color: #898989;
  background-color: transparent;
  border: 2px solid #dadada;
  margin-top: 30px;
}

.home1-btn:hover {
  color: #4f4d47;
  background-color: transparent;
  border-color: #4f4d47;
}

/* ----------------------------------------------------
	 Home page styles
------------------------------------------------------- */

.main-image {
  margin-top: 20px;
  z-index: 1;
}

.box-home {
  color: #898989;
  font-family: "Oxygen", sans-serif;
  font-size: 1.1em;
  margin-top: 10px;
}

.box-home a {
  color: #e74c3c;
  font-family: "Oxygen", sans-serif;
  font-size: 0.9em;
}

.box-home a:hover {
  color: #898989;
}

.photo-home {
  margin-bottom: 30px;
  margin-left: 5px;
}

.text-left {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  color: #898989;
  margin-top: 16px;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.7em;
  display: inline;
  font-weight: 400;
}

.first .square {
  width: 200px;
  height: 200px;
  border: 15px solid white;
  position: absolute;
  top: 35px;
  right: 75px;
  z-index: 1;
}

/* ----------------------------------------------------
	 About page styles
------------------------------------------------------- */

.margin-about {
  margin-top: -32px;
}

.box-about {
  color: #898989;
  font-family: "Oxygen", sans-serif;
  font-size: 1.1em;
  border-top: 1px solid #27090e;
  margin-top: 68px;
  margin-left: 8.33333333%;
}

.box-about-2 {
  color: #898989;
  font-family: "Oxygen", sans-serif;
  font-size: 1.1em;

  border-bottom: 1px solid #27090e;
  margin-top: 30px;
  margin-left: 30px;
}

.photo-about {
  margin-top: 65px;
  margin-bottom: 30px;
  margin-left: 45px;
}

.text-about {
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  color: #4f4d47;
}

/* ----------------------------------------------------
	 Services page styles
------------------------------------------------------- */

.margin-services {
  margin-top: 50px;
}

.margin-services p {
  font-size: 1.1em;
  font-family: "Oxygen", sans-serif;
  color: #e74c3c;
  line-height: 1.7em;
  margin-top: 14px;
  margin-bottom: 20px;
}

.heading-services {
  font-size: 1.4em;
  font-weight: 600;
  color: #4f4d47;
  margin-top: 140px;
  text-align: center;
  font-family: "Oxygen", sans-serif;
  line-height: 1.7em;
  margin-left: -160px;
  background-color: #e0e0e0;
  padding: 15px;
  width: 44%;
}

.photo-services {
  margin-top: 13px;
  margin-bottom: 86px;
}

.first-s .square {
  width: 200px;
  height: 200px;
  border: 15px solid white;
  position: absolute;
  top: 77px;
  right: 41px;
}

/* ----------------------------------------------------
	 Collections page styles
------------------------------------------------------- */

.margin-collection {
  margin-top: 30px;
}

.heading-c {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #898989;
  margin-top: 16px;
  margin-bottom: 45px;
  text-align: center;
  line-height: 1.7em;
}

.portfolio-items,
.portfolio-filter {
  list-style: none outside none;
  margin: 0 50px 40px 0;
  padding: 0;
}

.portfolio-filter &gt; li {
  display: inline-block;
}

.portfolio-filter &gt; li a {
  background: none repeat scroll 0 0 #ffffff;
  font-size: 1em;
  font-weight: 400;
  margin-right: 10px;
  text-transform: lowercase;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  outline: none;
  border-radius: 0;
  color: #898989;
  background-color: transparent;
  border: 1px solid #dadada;
}

.portfolio-filter &gt; li a:hover,
.portfolio-filter &gt; li a.active {
  color: #898989;
  background: #e0e0e0;
  border: 1px solid #dadada;
  box-shadow: none;
}

.portfolio-items &gt; li {
  float: left;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.portfolio-item {
  margin: 0;
  padding: 20px;
}

/* Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.recent-work-wrap {
  position: relative;
}

.recent-work-wrap img {
  max-width: 100%;
}

.recent-work-wrap .recent-work-inner {
  top: 0;
  background: transparent;
  opacity: 0.9;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.recent-work-wrap:hover .overlay {
  opacity: 0.7;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.grid {
  position: relative;
  list-style: none;
  text-align: center;
  margin-top: 40px;
}

.grid figure {
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption &gt; a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid figure figcaption &gt; a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h2 {
  font-weight: 400;
  font-family: "Oxygen", sans-serif;
}

.grid figure h2 span {
  font-weight: 400;
  margin-left: 10px;
}

.grid figure h2,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 1em;
  color: white;
  text-align: center;
}

figure.effect-moses {
  background: -webkit-linear-gradient(-45deg, #ec65b7 0%, #05e0d8 100%);
  background: linear-gradient(-45deg, #ec65b7 0%, #05e0d8 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}

figure.effect-moses img {
  opacity: 0.85;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-moses h2,
figure.effect-moses p {
  padding: 20px;
  width: fit-content;
  height: 80%;
  border-top: 1px solid #fff;
  color: white;
}

figure.effect-moses h2 {
  padding: 0;
  width: fit-content;
  height: fit-content;
  text-align: left;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(10px, 10px, 0);
  transform: translate3d(10px, 10px, 0);
  font-size: 3.5em;
  font-weight: bold;
  text-shadow: 2px 2px 14px #000;
  font-family: "Playfair Display", serif;
}

figure.effect-moses p {
  float: right;
  padding: 20px;
  text-align: right;
  position: relative;
  top: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-size: 2em;
  font-weight: bold;
  text-shadow: 2px 2px 14px #000;
}

figure.effect-moses:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

figure.effect-moses:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

figure.effect-moses:hover img {
  opacity: 0.6;
}

/*---------------------------------------------------
	Resume page styles
---------------------------------------------------*/

.margin-resume {
  margin-top: 40px;
  margin-bottom: -20px;
}

.desc {
  padding-top: 25px;
}

.desc p {
  color: #2f2f2f;
}

.desc .e-heading {
  color: #e74c3c;
  font-weight: 400;
  text-transform: none;
  font-size: 1em;
}

.more {
  color: #7d7d7d;
  line-height: 1.6em;
}

.date {
  font-size: 0.8em;
  text-transform: uppercase;
}

.line-symbol {
  padding: 0;
  border: none;
  border-top: 1px solid #dadada;
  color: #a3a3a3;
  text-align: center;
  width: 83%;
  margin: 0 auto;
  background: transparent;
  margin-top: 23px;
}

.line-symbol:after {
  content: "resume";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.1em;
  padding: 0 0.25em;
  background: white;
  font-family: "Qwigley", Helvetica, Sans-serif;
}

/* ----------------------------------------------------
	 News page styles
------------------------------------------------------- */

.margin-news {
  margin-top: 30px;
}

.holder {
  width: 100%;
  padding-bottom: 6px;
  margin-top: 40px;
}

.holder p {
  font-size: 1.1em;
  font-family: "Oxygen", sans-serif;
  color: #898989;
  line-height: 1.7em;
  margin-top: 14px;
  margin-bottom: 20px;
}

h5 {
  font-size: 1.1em;
  font-weight: 600;
  color: #4f4d47;
  margin-top: 50px;
  text-align: center;
  font-family: "Oxygen", sans-serif;
  line-height: 1.7em;
}

h5 .date {
  font-size: 0.9em;
  font-weight: 400;
  color: #e74c3c;
  margin-top: 15px;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.7em;
  display: block;
  text-transform: lowercase;
  font-family: "Oxygen", sans-serif;
}

.photo-news {
  margin-top: 13px;
  margin-bottom: 26px;
}

/* ----------------------------------------------------
	 Contact page styles
------------------------------------------------------- */

.margin-contact {
  margin-top: -32px;
}

.box-contact {
  font-family: "Oxygen", sans-serif;

  margin-top: 68px;
}

#contact-area {
  margin-top: 25px;
}

#contact-area input,
#contact-area textarea {
  padding: 5px;
  width: 64%;
  margin: 0px 0px 10px 0px;
  border: 2px solid #dadada;
}

#contact-area textarea {
  height: 90px;
}

#contact-area textarea:focus,
#contact-area input:focus {
  border: 2px solid #900;
}

#contact-area input.submit-button {
  width: 100px;
  float: left;
  margin-left: 116px;
  color: #898989;
  background-color: transparent;
  border: 2px solid #dadada;
}

label {
  float: left;
  text-align: left;
  margin-right: 15px;
  width: 100px;
  padding-top: 5px;
  font-size: 1em;
  color: #4f4d47;
}

h6 {
  font-size: 1em;
  font-weight: 400;
  color: #4f4d47;
  margin-top: 100px;
  text-align: left;
  font-family: "Oxygen", sans-serif;
  line-height: 1.7em;
  margin-left: 120px;
  padding-bottom: 24px;
}

h6 span {
  font-weight: 400;
  color: #4f4d47;
  margin-top: 10px;
  text-align: left;
  font-family: "Oxygen", sans-serif;
  line-height: 1.7em;
  display: block;
}

.photo-contact {
  margin-top: 59px;
  margin-bottom: 70px;
  margin-left: 5px;
}

#map-canvas {
  height: 400px;
  width: 100%;
}

/* ----------------------------------------------------
	 Footer
------------------------------------------------------- */

.footer {
  color: #27090e;
  font-family: "Oxygen", sans-serif;
  font-size: 1.1em;
  border-top: 1px solid #27090e;
  border-bottom: 1px solid #27090e;
  margin-top: 54px;
  margin-bottom: 72px;
}

.footer h5 {
  font-size: 1em;
  font-weight: 400;
  color: #27090e;
  margin-top: 18px;
  padding-bottom: 12px;
  text-align: center;
}

.footer h5 .icon1 {
  margin-left: 12px;
  color: #27090e;
}

.footer h5 .icon1 :hover {
  color: #f1f1f1;
}
/* ----------------------------------------------------
	 Responsive styles
------------------------------------------------------- */

@media screen and (max-width: 1280px) {
  .portfolio-items,
  .portfolio-filter {
    margin: 0 53px 40px 0;
    padding: 0;
  }

  .box-about-2 {
    display: none;
  }

  .photo-about {
    width: 25rem;
  }
}

@media screen and (max-width: 1024px) {
  .box-home {
    margin-top: 25px;
  }

  .photo-home {
    margin-top: 50px;
  }

  .portfolio-items,
  .portfolio-filter {
    margin: 0 225px 40px 0;
    padding: 0;
  }

  #contact-area input.submit-button {
    margin-left: 0;
  }

  h6 {
    margin-left: 0;
  }

  .first .square {
    width: 150px;
    height: 150px;
    border: 15px solid white;
    position: absolute;
    top: 120px;
    right: 90px;
    z-index: 1;
  }

  .grid figure p {
    letter-spacing: 1px;
    font-size: 0.7em;
    color: white;
    text-align: center;
  }

  .box-about-2 {
    display: none;
  }

  .photo-about {
    margin-left: 0;
  }
  .box-about {
    margin-left: 30;
  }

  .box-about-2 {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .box-about {
    margin-left: 0px;
  }
}

@media (max-width: 915px) {
  .portfolio-items,
  .portfolio-filter {
    margin: 0 0 40px 0;
    padding: 0;
  }
  .box-about-2 {
    display: block;
  }
}

@media (max-width: 850px) {
  .portfolio-items,
  .portfolio-filter {
    margin: 0 72px 40px 0;
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .col-xs-offset-3,
  .col-xs-offset-1 {
    margin-left: 0;
  }

  .photo-home {
    margin-left: 0;
  }

  .photo-about {
    margin-left: 0;
  }

  .photo-contact {
    margin-left: 0;
  }

  .box-home {
    margin-top: 20px;
  }

  .portfolio-items,
  .portfolio-filter {
    margin: 0 68px 40px 0;
    padding: 0;
  }

  .margin-about,
  .margin-collection,
  .margin-resume,
  .margin-news,
  .margin-contact {
    margin-top: 64px;
  }

  .margin-about {
    margin-top: 15px;
  }

  #contact-area input,
  #contact-area textarea {
    width: 70%;
  }

  #contact-area input.submit-button {
    margin-left: 118px;
  }

  h6 {
    margin-left: 116px;
  }

  .first .square {
    display: none;
  }

  .grid figure p {
    letter-spacing: 1px;
    font-size: 0.9em;
    color: white;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-items,
  .portfolio-filter {
    margin: 0 120px 40px 0;
    padding: 0;
  }

  .heading-services {
    font-size: 1.4em;
    font-weight: 600;
    color: #4f4d47;
    margin-top: 10px;
    text-align: center;
    font-family: "Oxygen", sans-serif;
    line-height: 1.7em;
    margin: 0 auto;
    background-color: #dadada;
    padding: 15px;
    width: 90%;
  }

  .photo-services {
    margin-top: 13px;
    margin-bottom: 29px;
  }

  .margin-services p {
    margin-bottom: 44px;
  }

  .nav &gt; li &gt; a {
    padding: 14px;
  }
}

@media screen and (max-width: 600px) {
  .navbar {
    border: none !important;
  }

  .resp {
    margin-top: 24px;
  }

  .navbar-toggle {
    margin-top: 78px;
    border: none;
  }

  .portfolio-items,
  .portfolio-filter {
    margin: 0 10px 40px 0;
    padding: 0;
  }

  .heading-collections {
    margin-top: 42px;
  }
}

@media (max-width: 991px) {
  figure.effect-moses h2 {
    font-size: 2em;
    transform: translate3d(0px, 0px, 0);
  }
}

@media (max-width: 540px) {
  figure.effect-moses h2 {
    font-size: 1.5em;
    transform: translate3d(0px, 0px, 0);
  }
}

@media screen and (max-width: 480px) {
  h2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  #contact-area input.submit-button {
    margin-left: 50px;
  }

  h6 {
    margin-left: 0;
  }

  .photo-about {
    margin-top: 20px;
    margin-bottom: 4px;
    margin-left: 5px;
  }

  .box-about {
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .grid figure p {
    display: none;
  }

  .first-s .square {
    display: none;
  }

  .heading-services {
    font-size: 1.1em;
  }
}

@media (max-width: 350px) {
  figure.effect-moses h2 {
    font-size: 1.5em;
    transform: translate3d(0px, 0px, 0);
  }

  .navbar-default .navbar-brand {
    font-size: 2.3em;
  }
}

@media (max-width: 285px) {
  .navbar-default .navbar-brand {
    font-size: 2em;
  }
}
</pre></body></html>