@import "header.css";
:root {
  --main-color: #F27EA4FF;
  --main-color06: rgba(242, 126, 164, 0.6);
  --main-color03: rgba(242, 126, 164, 0.3);
  --secondary-color: black;
  --offset-color: #FFDDE1;
  --white: #fff;
  --black: #313638;
  --black-opacity01: rgba(0, 0, 0, 0.1);
  --black-opacity02: rgba(0, 0, 0, 0.2);
  --black-opacity06: rgba(0, 0, 0, 0.6);
  --white-opacity08: rgba(255, 255, 255, 0.8);
  --white-opacity09: rgba(255, 255, 255, 0.9);
  --gray: rgba(200, 200, 200, 0.2);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--secondary-color);
}
body a {
  text-decoration: none;
  color: var(--main-color);
}
body a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Noto Sans", sans-serif;
}
body #main {
  margin-top: 90px;
}
body .center {
  justify-content: center;
}
body #get-offer, body .get-offer {
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: var(--main-color03);
  border-radius: 50px;
  padding: 2px 15px;
  box-shadow: 0 12px 16px 0 var(--black-opacity02), 0 17px 50px 0 var(--black-opacity01);
}
body #get-offer li, body .get-offer li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
body #get-offer li:hover, body #get-offer li.filter-active, body .get-offer li:hover, body .get-offer li.filter-active {
  color: var(--main-color);
}
body #get-offer li:last-child, body .get-offer li:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 9;
  background: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.carousel-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  position: relative;
}
.carousel-slide img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
}

.myBackground {
  background-color: var(--secondary-color);
  z-index: 11;
}

.carousel-slide-mobile {
  display: none;
}

@media (max-width: 768px) {
  .carousel-text {
    position: absolute;
    top: 30%;
    left: 0;
    transform: translate(0%, 0%);
  }
  .carousel-slide {
    display: none;
  }
  .carousel-slide-mobile {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }
  .carousel-slide-mobile img {
    width: 100%;
    height: auto;
    position: relative;
    width: auto;
    height: 100%;
    transform: translate(-50%, 0%);
  }
  .carousel-slide-mobile img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.link-container a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  border: 1px solid var(--black);
}
.link-container a.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.link-container a.next:hover {
  background-color: var(--main-color06);
  color: black;
}
.link-container a:hover {
  background-color: var(--main-color06);
  color: black;
}

.contact-boxes {
  margin: 0.5em;
}

#hero {
  height: 100vh;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}
#hero img {
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}

.hero-text {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2px 5px;
}
.hero-text h2 {
  margin-bottom: 10px;
}
.hero-text p {
  margin: 0;
  line-height: 1.1;
  text-align: center;
  font-size: 28px;
}

.email-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 7;
}
.email-confirmation .email-confirmation-content {
  position: relative;
  background-color: var(--white);
  width: 60%;
  margin: 10% auto;
  padding: 20px;
}
.email-confirmation .email-confirmation-content .card-title {
  line-height: 1.1;
  text-align: center;
  font-size: 28px;
}
.email-confirmation .email-confirmation-content .close-confirmation {
  position: absolute;
  top: 1px;
  right: 1px;
  background: transparent;
  color: var(--main-color);
  font-size: 30px;
  border: 0;
  cursor: pointer;
}
.email-confirmation .email-confirmation-content p {
  color: var(--black);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

#hero .prev,
#hero .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 50px;
  margin-top: -22px;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
#hero .prev.next,
#hero .next.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#hero .hero-swiper-slider {
  width: 100%;
  position: relative;
  margin: auto;
}
#hero img {
  vertical-align: middle;
}
#hero .hero-swiper-slider .prev,
#hero .hero-swiper-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: #FFDDE1;
  border-radius: 50%;
  user-select: none;
  z-index: 5;
}
#hero .hero-swiper-slider .prev:hover,
#hero .hero-swiper-slider .next:hover {
  color: var(--secondary-color);
}
#hero .hero-swiper-slider .prev {
  left: 10px;
}
#hero .hero-swiper-slider .next {
  right: 10px;
}
#hero .hero-swiper-slider .prev:hover,
#hero .hero-swiper-slider .next:hover {
  background: #f27ea4;
}
#hero .slideshow {
  width: 100%;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#hero .hero-container h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: -1px 0 2px var(--gray);
}
#hero .hero-container h2 {
  color: var(--white);
  margin-bottom: 50px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px var(--black);
}
#hero .hero-container #scrollTo {
  font-size: 36px;
  animation: jump 5s ease infinite;
}
@keyframes jump {
  30%, 100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(15px);
  }
}
#hero .hero-container .name {
  text-align: right;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
section.section-bg {
  background-color: var(--white);
}
section .section-title {
  text-align: center;
  padding-bottom: 30px;
}
section .section-title h2, section .section-title h3 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: var(--secondary-color);
  z-index: 2;
}
section .section-title h2::after, section .section-title h3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) center/cover no-repeat;
  z-index: -1;
}
section .section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0 0 0 0;
  background-color: var(--white);
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--gray);
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  border-radius: 8px;
  z-index: 1;
  max-height: 10em;
  transition: max-height 5s ease !important;
}
.services .icon-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.services .icon-box:hover {
  max-height: none;
}
.services .icon-box:hover::after {
  opacity: 0;
}
.services .icon-box a {
  color: var(--black);
}
.services .icon-box a:hover {
  color: var(--white);
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: var(--white);
  right: 0;
  left: 0;
  bottom: 100%;
  top: 0;
  z-index: -1;
  transition: all 0.3s;
}
.services .icon-box:hover::before {
  background: var(--main-color06);
  bottom: 0;
  border-radius: 0;
}
.services .icon-box .icon i {
  color: var(--main-color06);
  font-size: 48px;
  line-height: 1;
}
.services .icon-box .title {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 22px;
}
.services .icon-box .description {
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.services .icon-box:hover a, .services .icon-box:hover .description, .services .icon-box:hover .title, .services .icon-box:hover i {
  color: var(--white);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: var(--main-color);
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 60px;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .sold-flag {
  position: absolute;
  top: 0;
  left: -50px;
  width: 200px;
  z-index: 2;
  transform: rotate(-30deg);
}
.portfolio .text-overlay {
  font-family: sans-serif;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 1px;
  z-index: 3;
  transform: rotate(-35deg);
}
.portfolio #portfolio-flters {
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: var(--main-color03);
  border-radius: 50px;
  padding: 2px 15px;
  box-shadow: 0 12px 16px 0 var(--black-opacity02), 0 17px 50px 0 var(--black-opacity01);
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--main-color);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  max-height: 234px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: var(--gray);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--white);
  font-size: 28px;
  text-align: center;
  background: var(--main-color06);
  transition: 0.3s;
  width: 50%;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: var(--main-color);
}
.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid var(--main-color);
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details,
.flip-portfolio-details {
  padding-top: 1px;
}
.portfolio-details .images,
.flip-portfolio-details .images {
  max-height: 600px;
}
.portfolio-details .sold-flag,
.flip-portfolio-details .sold-flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  z-index: 2000;
}
.portfolio-details .text-overlay,
.flip-portfolio-details .text-overlay {
  font-family: sans-serif;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  top: 7px;
  left: 40px;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 1px;
  z-index: 2001;
}
.portfolio-details .container-overlay,
.flip-portfolio-details .container-overlay {
  font-family: sans-serif;
  position: absolute;
  color: var(--black);
  z-index: 3;
  bottom: 0;
  left: 0;
  animation-name: slideFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  opacity: 0;
}
.portfolio-details .container-overlay .header,
.flip-portfolio-details .container-overlay .header {
  position: absolute;
  width: 100%;
  top: 2%;
  left: 5%;
  font-weight: bold;
  font-style: italic;
  font-size: 21px;
  letter-spacing: 2px;
  color: var(--main-color03);
}
.portfolio-details h4,
.flip-portfolio-details h4 {
  color: var(--main-color);
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
@keyframes slideFromLeft {
  0% {
    left: -100%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
.portfolio-details .custom-italic,
.flip-portfolio-details .custom-italic {
  font-style: italic;
}
.portfolio-details .custom-bold,
.flip-portfolio-details .custom-bold {
  font-weight: bold;
}
.portfolio-details .custom-monospace,
.flip-portfolio-details .custom-monospace {
  font-family: monospace;
}
.portfolio-details .portfolio-details-slider,
.flip-portfolio-details .portfolio-details-slider {
  position: relative;
  overflow: hidden;
}
.portfolio-details .portfolio-details-slider .swiper-img,
.flip-portfolio-details .portfolio-details-slider .swiper-img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination,
.flip-portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-info h3,
.flip-portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.portfolio-details .portfolio-info h3:after,
.flip-portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  left: 0;
  bottom: 0;
}
.portfolio-details .portfolio-info ul,
.flip-portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li,
.flip-portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.portfolio-details .portfolio-info ul li strong,
.flip-portfolio-details .portfolio-info ul li strong {
  text-transform: uppercase;
  font-weight: 400;
  color: var(--main-color06);
  font-size: 14px;
}
.portfolio-details .portfolio-info .btn-visit,
.flip-portfolio-details .portfolio-info .btn-visit {
  border: none;
  text-align: center;
  background: var(--main-color03);
  border-radius: 50px;
  padding: 8px 15px;
  box-shadow: 0 12px 16px 0 var(--black-opacity02), 0 17px 50px 0 var(--black-opacity01);
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.portfolio-details .portfolio-info .btn-visit:hover,
.flip-portfolio-details .portfolio-info .btn-visit:hover {
  color: var(--main-color);
}
.portfolio-details .portfolio-description,
.flip-portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2,
.flip-portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p,
.flip-portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .swiper-slide-testimonials {
  width: 500px;
}
.testimonials .swiper-slide {
  flex-shrink: 0;
  width: 33.33%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.testimonials .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--secondary-color);
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--main-color03);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  transform: scaleX(-1);
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  padding: 20px;
  background: var(--white);
  position: relative;
  margin: 0 15px 35px;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .list-group-item {
  text-align: left;
}
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .member .pic {
  overflow: hidden;
  border-radius: 50% !important;
  position: relative;
  width: 300px;
  height: 300px;
}
.team .member .pic img {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: var(--white);
  padding: 20px 0;
  color: var(--secondary-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.team .member .member-info:hover {
  max-height: 300px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}
.team .member .member-info h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}
.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member .member-info .social {
  margin-top: 15px;
}
.team .member .member-info .social a {
  transition: color 0.3s;
  color: var(--secondary-color);
}
.team .member .member-info .social a:hover {
  color: var(--main-color);
}
.team .member .member-info .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 768px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}
.contact .info-box {
  color: var(--secondary-color);
  background: var(--white);
  text-align: center;
  box-shadow: 0 0 30px var(--gray);
  padding: 10px 0 5px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: var(--main-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--white);
}
.contact .info-box h3 {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  color: var(--secondary-color);
  line-height: 24px;
  font-size: 14px;
}
.contact .email-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.contact .email-form .error-message br + br {
  margin-top: 25px;
}
.contact .email-form button[type=submit] {
  border: none;
  text-align: center;
  background: var(--main-color03);
  border-radius: 50px;
  padding: 8px 15px;
  box-shadow: 0 12px 16px 0 var(--black-opacity02), 0 17px 50px 0 var(--black-opacity01);
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.contact .email-form button[type=submit]:hover {
  color: var(--main-color);
}
.contact .btn-group {
  display: flex;
  justify-content: center;
}
.contact .myButton:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  color: var(--secondary-color);
  border: 1px solid var(--white);
  background-color: var(--white);
}
.contact .one {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease-in-out;
  z-index: 10;
}
.contact .email-form {
  position: absolute;
  left: -100%;
  width: 60%;
  transition: left 0.8s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 7;
}
.contact .email-form.active {
  left: 50%;
}
@media (max-width: 921px) {
  .contact .mobile-nav-toggle {
    display: block;
  }
  .contact .email-form {
    width: 100%;
  }
}
.contact .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.contact .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.contact .middle {
  position: relative;
  width: 100%;
  height: 100%;
  left: -100%;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}
.contact .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  float: right;
  background: transparent;
  color: var(--main-color);
  font-size: 30px;
  border: 0;
  cursor: pointer;
}
.contact .pink2 {
  background: var(--white);
  color: var(--main-color);
  font-size: 20px;
  border: 0;
}
.contact .emailForm {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 200px;
  z-index: 10;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--offset-color);
  padding: 0 0 30px 0;
  color: var(--white);
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: var(--white);
  color: var(--secondary-color);
  border-top: 4px solid var(--secondary-color);
  text-align: center;
  padding: 30px 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--main-color);
  color: var(--white);
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul li a {
  color: var(--secondary-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul li a:hover {
  color: var(--main-color);
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--main-color);
  color: var(--white);
  transition: 0.3s;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--secondary-color);
}
#footer .copyright {
  border-top: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--secondary-color);
}
#footer .credits a:hover {
  padding-top: 10px;
  color: var(--white);
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Testimonials page
--------------------------------------------------------------*/
#testimonials i {
  font-size: 24px;
  color: var(--main-color);
}
#testimonials .no-style-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  cursor: pointer;
  outline: inherit;
  text-align: left;
}
#testimonials .no-style-button:hover {
  color: var(--black);
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper {
  width: 100%;
}
.swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}
.swiper .swiper-button-prev.details,
.swiper .swiper-button-next.details {
  color: var(--main-color);
  font-size: 24px;
  text-align: center;
}
.swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'><path%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23F27EA4FF'%2F><%2Fsvg>") !important;
}
.swiper .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23F27EA4FF'%2F%3E%3C%2Fsvg%3E") !important;
}
.swiper .swiper-pagination.flip {
  position: relative;
  margin-top: 20px;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--main-color03);
  opacity: 1;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.review-page .card {
  border: 2px solid var(--main-color03);
}
.review-page .modal-content {
  border: 2px solid var(--main-color03);
}
.review-page .modal-content .modal-title {
  color: var(--main-color);
}
.review-page button[type=submit] {
  border: none;
  text-align: center;
  background: var(--main-color03);
  border-radius: 50px;
  padding: 8px 15px;
  box-shadow: 0 12px 16px 0 var(--black-opacity02), 0 17px 50px 0 var(--black-opacity01);
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.review-page button[type=submit]:hover {
  color: var(--main-color);
}

/*# sourceMappingURL=style.css.map */
