@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
/* ---- general styles ---- */
body {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
}

a {
  color: #f8f6f7;
  text-decoration: none;
}

p {
  font-family: "Roboto", sans-serif;
}

.button {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  background-color: #083a57;
  border-radius: 28px;
  border: 4px solid #083a57;
  font-size: 17px;
  padding: 16px 31px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  -ms-border-radius: 28px;
  -o-border-radius: 28px;
  max-width: 250px;
}

.button:hover {
  background-color: #f8f6f7;
  color: #083a57;
}

.content-heading-ln1 {
  color: #083a57;
  font-size: 28px;
  margin-top: 10%;
  margin-bottom: 5px;
}

.content-heading-ln2 {
  color: #AFEFFF;
  font-size: 70px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Fjalla One", sans-serif;
}

.content-heading-ln3 {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  padding-left: 45px;
  padding-right: 45px;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

input::-moz-placeholder {
  color: #f8f6f7;
}

input::placeholder {
  color: #f8f6f7;
}

input:focus {
  outline: 1px solid #f8f6f7;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

li::marker {
  display: none !important;
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-none-media {
  display: none !important;
}

.display-block-media {
  display: block !important;
}

.zoom {
  background-color: transparent;
  transition: transform 0.2s;
  margin: 0 auto;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}

.zoom:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

/* ---- Header ---- */
@media (max-width: 1024px) {
  header {
    display: none !important;
  }
}
header {
  background-color: #f8f6f7;
  padding-top: 40px;
  padding-bottom: 40px;
}
header #header {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}

/* ---- Sticky Header ---- */
#sticky-header {
  background-color: #E0D0A3;
  z-index: 1000;
}
#sticky-header ul {
  font-size: 1.5rem;
  padding: 15px 90px 15px 90px;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar-link {
  color: #f8f6f7;
  list-style: none;
}

@media (max-width: 767px) {
  #sticky-header ul li {
    display: none !important;
  }
}
/* ---- Hero ---- */
#hero {
  background-image: url("../img/pexels-rarnie-mccudden-770363.jpg");
  background-size: cover;
  height: 90vh;
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}
#hero p {
  color: #f8f6f7;
}
#hero hr {
  width: 230px;
  height: 5px;
  border-width: 0;
  background-color: #f8f6f7;
  margin-top: 30px;
  margin-bottom: 30px;
}
#hero #button-flex {
  display: flex;
  justify-content: center;
  margin-top: 10%;
  padding-bottom: 50px;
}
#hero .button {
  float: left;
  margin: 0 15px 30px 15px;
  animation: fade-in-bottom 6s alternate;
  -webkit-animation: fade-in-bottom 6s alternate;
}
#hero .button:hover {
  background-color: transparent;
}

.hero-heading-ln1 {
  font-size: 40px;
  margin: 8px;
  padding-top: 50px;
  animation: slide-in-left 1s alternate;
  -webkit-animation: slide-in-left 1s alternate;
}

.hero-heading-ln2 {
  font-size: 55px;
  margin: 15px;
  font-family: "Fjalla One", sans-serif;
  animation: slide-in-left 1.2s alternate;
  -webkit-animation: slide-in-left 1.2s alternate;
}

.hero-heading-ln3 {
  font-size: 25px;
  margin: 0;
  padding-left: 45px;
  padding-right: 45px;
  animation: slide-in-left 2.5s alternate;
  -webkit-animation: slide-in-left 2.5s alternate;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(101%);
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
  }
  75% {
    transform: translateX(-5%);
    -webkit-transform: translateX(-5%);
    -moz-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
    -o-transform: translateX(-5%);
  }
  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}
@keyframes fade-in-bottom {
  0% {
    opacity: 0%;
  }
  40% {
    opacity: 75%;
  }
  100% {
    opacity: 100%;
  }
}
/* ---- Service ---- */
#service {
  height: 100%;
  background-color: #f8f6f7;
}

#service-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 800px) {
  #service-content {
    display: none !important;
  }
  #service-content-media {
    display: flex !important;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap !important;
    padding-bottom: 50px;
  }
  #service-content-media .service-card {
    text-align: center;
  }
  #service-content-media .service-card h2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #service-content-media .service-card-icon {
    margin-top: 25px;
    margin-bottom: -5px;
  }
  #service-content-media .service-card-icon img {
    max-width: 100px !important;
  }
}
#service-content-media {
  display: none;
}

#service-content {
  display: flex;
  justify-content: center;
}
#service-content img {
  width: 80px;
}
@media (max-width: 799px) {
  #service-content #service-content-corgi {
    display: none;
  }
}
#service-content #service-content-corgi {
  width: 85%;
}

#left-row, #right-row {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#left-row .service-card {
  text-align: right;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}
@media (min-width: 1340px) {
  #left-row .service-card-margin-left {
    margin-left: -50px;
  }
}
#left-row .service-card-icon {
  margin-left: 30px;
  margin-top: 0.3%;
}

#right-row .service-card {
  text-align: left;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}
#right-row .service-card-margin-right {
  margin-left: 50px;
}
#right-row .service-card-icon {
  margin-right: 30px;
  margin-top: 0.3%;
}

/* ---- Numbers ---- */
#numbers .parallax {
  background-image: url("../img/pexels-alexander-grey-1196516.jpg");
  min-height: 400px;
}
#numbers #numbers-container {
  display: flex;
  height: 400px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: center;
}
@media (max-width: 767px) {
  #numbers #numbers-container {
    flex-direction: column;
    height: auto;
    flex-wrap: nowrap;
  }
  #numbers #numbers-container .vl {
    display: none !important;
  }
}
#numbers .numbers-block {
  text-align: center;
}
#numbers .numbers-block h1 {
  color: #E0D0A3;
  font-size: 60px;
  margin-bottom: 15px;
}
#numbers .numbers-block h3 {
  color: #f8f6f7;
  font-size: 25px;
  margin-top: 10px;
}
#numbers .vl {
  border-left: 1px solid #f8f6f7;
  height: 200px;
  margin-top: auto;
}

/* ---- about ---- */
#about {
  padding-bottom: 85px;
}

#about-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

#about-card {
  margin: 30px auto 30px auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgb(234, 248, 252);
  width: 80vw;
  height: auto;
  box-shadow: 1px 2px 5px 0px rgb(142, 169, 177);
}
#about-card img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 20%;
  margin-top: 30px;
}
#about-card h1 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 0;
}
#about-card h2 {
  color: #E0D0A3;
  margin-top: 15px;
}
#about-card p {
  padding-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  font-size: 20px;
}

/* ---- gallery ---- */
#gallery {
  display: flex;
  /*.parallax{
      background-image: url(../img/sylvie_parallax.jpg);
      background-size: auto;
      height: 30vw;
      max-height: 300px;
      width: 100%;
  } */
}
#gallery img {
  width: 25%;
}

/* ---- Customer ---- */
#customer hr {
  background-color: #AFEFFF;
  width: 15%;
  height: 4px;
  border: 0;
}

.customer-card {
  margin: 30px auto 30px auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 80vw;
  height: auto;
}
.customer-card img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 20%;
  margin-top: 30px;
}
.customer-card h1 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 0;
}
.customer-card h2 {
  color: #E0D0A3;
  margin-top: 15px;
}
.customer-card p {
  margin-left: 50px;
  margin-right: 50px;
  font-size: 20px;
  text-align: center;
  color: rgb(72, 72, 72);
}

/*---- customer section carousel ----*/
.slideshow-container {
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 100px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 100px;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #E0D0A3;
  color: #f8f6f7;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px 30px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .next {
    right: 0;
  }
  .prev {
    left: 0;
  }
}
/* ---- contact ---- */
#contact .parallax {
  background-image: url("../img/contact_back2.jpg");
  width: 100%;
}
#contact #contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
#contact #contact-container hr {
  background-color: #AFEFFF;
  width: 15%;
  height: 4px;
  border: 0;
}
#contact #contact-container .contact-form form {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 90vw;
  padding-bottom: 60px;
}
#contact #contact-container .contact-form form .button {
  display: flex;
  justify-content: center;
  color: #f8f6f7;
  margin-top: 20px;
}
#contact #contact-container .contact-form form .button:hover {
  background-color: transparent;
  color: #083a57;
}
#contact #contact-container .contact-form form .contact-input {
  background-color: transparent;
  border: 2px solid #f8f6f7;
  padding: 20px;
  width: 80%;
  height: 1vh;
  margin-top: 20px;
  color: #f8f6f7;
}
#contact #contact-container .contact-form form .contact-input-message {
  height: 180px !important;
}

/* ---- footer ---- */
footer {
  background-color: #083a57;
  margin: 0;
}
footer #footer-container {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: center;
}
footer #footer-container p {
  color: #f8f6f7;
  margin: 0;
  padding: 30px 0 30px 0;
}
@media (max-width: 767px) {
  footer #footer-container {
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
  }
  footer #footer-container p {
    padding: 0;
    margin-top: 15px;
  }
}/*# sourceMappingURL=style.css.map */