@charset "UTF-8";
/*------------------------------------------------------------------

    Main Style Stylesheet

    Project:        PORTO. | Creative Portfolio One Page Template  
    Version:        1.0
    Author:         Bakhtrai Badr.
    Last change:    10/11/2018
    Primary use:    (Free Version) Multipurpose Use.

-------------------------------------------------------------------*/
/*=======================================================
			TABLE OF CONTENT:

	1/ BODY
	2/ COLORS(Only Visible in scss file)
	3/ TYPOGRAPHY
	4/ BUTTONS
	5/ NAVIGATION
	6/ TOP SLIDER
	7/ ABOUT US
	8/ FEATURES
	9/ PORTFOLIO
	10/ CALL TO ACTION
	11/ SERVICES
	12/ PRICES
	13/ TESTIMONIALS
	14/ TEAM
	15/ CONTACT
	16/ FOOTER
	17/ MEDIA QUERIES
	18/ PRELOADER

========================================================*/
/*--- Google Fonts ---*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
/*=======================================================
			BODY:
========================================================*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #5c5c5c;
}

/*=======================================================
			COLORS (Only Visible In Scss File):
========================================================*/
/*=======================================================
			TYPOGRAPHY:
========================================================*/
h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a9eb5;
}

.sublinhado:after {
  top: 10px;
  content: "";
  position: relative;
  left: 50%;
  bottom: 0;
  width: 230px;
  height: 2px;
  display: block;
  background-color: #cdb770;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100px;
}

h3 {
  font-weight: 300;
}

h4 {
  font-weight: 700;
  color: #000;
}

h5 {
  font-weight: 700;
  color: #000;
}

h6 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

.lnr {
  font-size: 3rem;
  color: #cdb770;
}

.title {
  margin-bottom: 80px;
  text-align: center;
}

/* Container que mantém proporção e se adapta à tela */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 proporção */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre o container sem distorcer */
}

/*=======================================================
			BUTTONS:
========================================================*/
.btn-transparent {
  background: transparent;
  font-size: 12px;
  padding: 15px 25px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
  background: #cdb770;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  font-size: 12px;
  padding: 15px 25px;
  color: #000;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background: #cdb770;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.btn-primary {
  background: #cdb770;
  font-size: 12px;
  padding: 15px 25px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #3e6878;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/*=======================================================
			BACKGROUND:
========================================================*/
.bg-claro {
  background: #fff;
}
.bg-claro .container {
  padding: 80px 0;
  padding-right: 20px;
  padding-left: 20px;
}
.bg-claro .svg-wave {
  width: 100%;
  position: relative;
}
.bg-claro .svg-wave svg {
  background: #f5f5f7;
  width: 100%;
  height: auto;
}
.bg-claro .svg-wave svg path {
  fill: #fff;
}

.bg-escuro {
  background: #f5f5f7;
}
.bg-escuro .container {
  padding-top: 40px;
}
.bg-escuro .svg-wave {
  width: 100%;
  position: relative;
}
.bg-escuro .svg-wave svg {
  background: #fff;
  width: 100%;
  height: auto;
}
.bg-escuro .svg-wave svg path {
  fill: #f5f5f7;
}

/*=======================================================
			NAVIGATION:
========================================================*/
.core-nav .brand {
  top: 10px;
}
.core-nav .brand img {
  width: 120px;
}
.core-nav .menu li a {
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.core-nav .menu li.active > a {
  color: #cdb770;
}
.core-nav .menu li.active > a,
.core-nav .menu li a:hover,
.core-nav .menu li a:focus,
.core-nav .menu li a:active {
  color: #cdb770;
}

nav.scrolled .menu li a {
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
nav.scrolled .menu li.active > a {
  color: #cdb770;
}
nav.scrolled .menu li.active > a,
nav.scrolled .menu li a:hover,
nav.scrolled .menu li a:focus,
nav.scrolled .menu li a:active {
  color: #cdb770;
}

/*=======================================================
			TOP SLIDER:
========================================================*/
.slider-area {
  height: 100vh;
  color: #fff;
  text-align: center;
  position: relative;
}
.slider-area .single-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 100vh;
  height: 100vh;
}
.slider-area .single-slide .btn {
  margin-bottom: 15px;
}
.slider-area .single-slide:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(106, 158, 181, 0.5);
}
.slider-area .slide-bg-1 {
  background-image: url("../img/banner_novo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-area .slide-bg-2 {
  background-image: url("../img/banner_novo2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-area .slide-bg-3 {
  background-image: url("../img/banner8.jpg");
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
}
.slider-area .slide-bg-4 {
  background-image: url("../img/banner9.jpg");
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
}
.slider-area .tabel {
  display: table;
  width: 100%;
}
.slider-area .tabel .tabel-cell {
  display: table-cell;
  height: 40em;
  vertical-align: middle;
}
.slider-area .tabel .tabel-cell .slider-content {
  padding: 0 40px;
}
.slider-area .tabel .tabel-cell .slider-content h1 {
  margin: 20px 0;
}
.slider-area .tabel .tabel-cell .slider-content h3 {
  font-weight: 500;
  font-size: 1rem;
}
.slider-area .tabel .tabel-cell .slider-content .btn-white {
  margin-left: 20px;
}
.slider-area .owl-dots {
  bottom: 2.5%;
  right: 50%;
  position: relative;
  top: 0%;
}
.slider-area .owl-dots div.owl-dot {
  background-color: transparent;
  border: 2px solid #cdb770;
  border-radius: 100px;
  bottom: -25px;
  display: inline-block;
  height: 12px;
  left: 50%;
  margin-right: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 12px;
}
.slider-area .owl-dots div.owl-dot.active {
  background-color: #3e6878;
}

.slider-area:after {
  content: "";
  position: absolute;
  bottom: -1%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  background: transparent;
  background-size: 100% 100%;
  background-image: url(../img/bottom-wave-dourado.png);
}

/*=======================================================
			ABOUT US:
========================================================*/
#about {
  text-align: center;
  /*padding: 100px 0 0 0;*/
}
#about .about-img {
  position: relative;
}
#about .about-img img {
  margin: 0 auto;
  box-shadow: -20px -19px 0px -4px #cdb770;
}
#about .about-content {
  padding: 90px 20px 0 20px;
  text-align: left;
}
#about .about-content .skill {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
#about .about-content .progress {
  overflow: visible;
  height: 6px;
  box-shadow: none;
  margin-bottom: 15px;
}
#about .about-content .progress .progress-bar {
  position: relative;
  background: #cdb770;
  border-radius: 100px;
}
#about .about-content .progress .progress-bar span {
  position: absolute;
  display: block;
  top: -35px;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

/*=======================================================
			FEATURES:
========================================================*/
#features {
  /*padding: 80px 0;*/
}
#features .feature-box h4 {
  margin-top: 20px;
  margin-bottom: 0;
}
#features .feature-box h4:after {
  content: "";
  position: relative;
  left: 20px;
  width: 40px;
  height: 4px;
  margin: 20px 0;
  display: block;
  background-color: #cdb770;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100px;
}

/*=======================================================
			PORTFOLIO:
========================================================*/
#portfolio {
  /*padding: 40px 0 0 0;*/
  text-align: center;
  margin-top: 80px;
}
#portfolio .svg-wave {
  width: 100%;
  position: relative;
  bottom: 60px;
}
#portfolio .svg-wave svg {
  /*background: $white;*/
  width: 100%;
  height: auto;
}
#portfolio .row {
  margin-top: 80px;
}
#portfolio .portfolio-item {
  position: relative;
  padding: 0;
}
#portfolio .portfolio-item .item-img {
  width: auto;
  height: auto;
  overflow: hidden;
  position: relative;
}
#portfolio .portfolio-item .item-img img {
  width: 100%;
  height: auto;
}
#portfolio .portfolio-item .item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo_dourada.png") center center no-repeat;
  background-size: 120px;
  opacity: 0.5;
  pointer-events: none;
}
#portfolio .portfolio-item .item-info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(106, 158, 181, 0.5);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
#portfolio .portfolio-item .item-info .heading-3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transform: translate(0%, 100%);
  transition: 0.6s cubic-bezier(0.46, -0.11, 0.21, 1.68) 0.1s;
  opacity: 0;
}
#portfolio .portfolio-item .item-info .p-text {
  font-size: 12px;
  max-width: 210px;
  width: 100%;
  line-height: 18px;
  color: #fff;
  margin: 18px auto;
  letter-spacing: 1px;
  transform: translate(0%, 50%);
  transition: 0.6s cubic-bezier(0.46, -0.11, 0.21, 1.68) 0.2s;
  opacity: 0;
}
#portfolio .portfolio-item .item-info .link-text {
  font-size: 12px;
  color: #fff;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  transform: translate(0%, 100%);
  transition: 0.6s cubic-bezier(0.46, -0.11, 0.21, 1.68) 0.3s;
  opacity: 0;
}
#portfolio .portfolio-item .item-info .link-text:before {
  content: "";
  width: 39px;
  height: 2px;
  background-color: #3e6878;
  display: block;
  position: absolute;
  border-radius: 100px;
  bottom: -6px;
  left: 0px;
}
#portfolio .portfolio-item:hover .item-info {
  opacity: 1;
}
#portfolio .portfolio-item:hover .item-info .heading-3 {
  opacity: 1;
  transform: translate(0, 0);
}
#portfolio .portfolio-item:hover .item-info .p-text {
  opacity: 1;
  transform: translate(0, 0);
}
#portfolio .portfolio-item:hover .item-info .link-text {
  opacity: 1;
  transform: translate(0, 0);
}

/* ================================
   Marca d’água no Lightbox2 (Zoom)
   ================================ */
/* container correto do lightbox é .lb-outerContainer */
.lb-container {
  position: relative !important; /* preserva a posição fixa do plugin */
  /* adiciona o logo sobre a imagem ampliada */
}
.lb-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo_dourada.png") center center no-repeat;
  background-size: 180px; /* ajuste conforme o tamanho desejado */
  opacity: 0.5; /* transparência da marca d’água */
  pointer-events: none;
  z-index: 9999; /* garante que fique por cima da imagem */
}

/*=======================================================
			CALL TO ACTION:
========================================================*/
.call-to-action {
  background: #cdb770;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.call-to-action .btn {
  margin-top: 40px;
}

.call-to-action {
  background-color: #cdb770;
  position: relative;
}

.call-action-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  max-height: 600px;
}

@media only screen and (max-width: 991px) {
  .call-action-image {
    display: none;
  }
}
.call-action-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.call-action-content {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .call-action-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.call-action-content .call-title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 55px;
}

@media (max-width: 767px) {
  .call-action-content .call-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.call-action-content .text {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .call-action-content .text {
    font-size: 14px;
  }
}
.call-action-content .call-whats {
  max-width: 410px;
  position: relative;
  margin: 24px auto 0;
}

.call-action-content .call-whats button {
  border: 0;
  border-radius: 50px;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  top: 4px;
  right: 4px;
  background-color: #3e6878;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .call-action-content .call-whats button {
    position: relative;
    right: auto;
    margin-top: 15px;
    background-color: #fff;
    color: #3e6878;
  }
}
.call-action-content .call-whats button:hover {
  background-color: #fff;
  color: #3e6878;
}

/*=======================================================
			OUR SERVICES:
========================================================*/
#services {
  /*padding: 120px 0;*/
}
#services h2 {
  text-align: center;
  margin-bottom: 80px;
}
#services h5 {
  text-align: center;
  margin-bottom: 50px;
}
#services .service {
  display: flex;
  margin-bottom: 10px;
}
#services .service .service-icon {
  margin-right: 20px;
}
#services .service .service-icon .fi {
  font-size: 2rem;
}
#services .bottom-caption {
  margin-top: 80px;
}

/*=======================================================
			PRICING:
========================================================*/
#curso {
  /*padding: 40px 0 120px 0;*/
  text-align: center;
}
#curso .svg-wave {
  /*		width: 100%;
  		position: relative;*/
  bottom: 60px;
  /*		svg {
  			//background: $white;
  			width: 100%;
  			height: auto;

  			path {
  				//fill: $light-grey;
  			}
  		}*/
}
#curso .bottom {
  width: 100%;
  position: relative;
  top: 120px;
  /*		svg {
  			//background: $light-grey;
  			width: 100%;
  			height: auto;

  			path {
  				//fill: $white;
  			}
  		}*/
}
#curso .price-title {
  margin-bottom: 80px;
}
#curso .price-title:after {
  top: -23px;
  content: "";
  position: relative;
  left: 50%;
  bottom: 0;
  width: 300px;
  height: 4px;
  display: block;
  background-color: #cdb770;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100px;
}
#curso .price-table {
  padding: 50px 15px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
#curso .price-table .type {
  margin-bottom: 15px;
}
#curso .price-table .type .featured {
  color: #cdb770;
}
#curso .price-table .value {
  margin-bottom: 30px;
}
#curso .price-table .value h2 {
  font-size: 50px;
  position: relative;
  display: inline-block;
}
#curso .price-table .value .dollar {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: -10px;
}
#curso .price-table .features ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}
#curso .price-table .features ul li {
  margin-bottom: 12px;
}
#curso .price-table .features ul li span {
  font-size: 16px;
  margin-right: 5px;
}

/*=======================================================
			TESTIMONIALS:
========================================================*/
#testimonial {
  /*padding: 60px 0;*/
  text-align: center;
}
#testimonial .owl-testimonials .item {
  background: #cdb770;
  color: #fff;
  box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 25px;
  margin: 25px;
}
#testimonial .owl-testimonials .item img {
  width: 90px;
  border-radius: 100px;
  border: 5px solid #fff;
  margin: 0 auto;
}
#testimonial .owl-testimonials .item h6 {
  color: #fff;
  margin-top: 15px;
}
#testimonial .owl-testimonials .item span {
  display: block;
  margin: 15px 0;
}
#testimonial .owl-testimonials .item .lnr {
  font-size: 24px;
  color: #fff;
}
#testimonial .owl-testimonials .item .quote {
  font-style: italic;
}
#testimonial .owl-testimonials .owl-dots {
  bottom: 2.5%;
  right: 50%;
  position: relative;
}
#testimonial .owl-testimonials .owl-dots div.owl-dot {
  background-color: transparent;
  border: 2px solid #cdb770;
  border-radius: 100px;
  bottom: -25px;
  display: inline-block;
  height: 12px;
  left: 50%;
  margin-right: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 12px;
}
#testimonial .owl-testimonials .owl-dots div.owl-dot.active {
  background-color: #3e6878;
}
#testimonial .testimonial-area {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 799px) and (max-width: 991px) {
  #testimonial .testimonial-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 798px) {
  #testimonial .testimonial-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#testimonial .single-testimonial {
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}
#testimonial .single-testimonial .testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
}
#testimonial .single-testimonial .testimonial-content {
  padding-top: 25px;
}
#testimonial .single-testimonial .testimonial-content .text {
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  border-bottom: 1px solid #cbced1;
  padding-bottom: 24px;
}
#testimonial .single-testimonial .testimonial-content .author-name {
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  margin-top: 24px;
}
#testimonial .single-testimonial .testimonial-content .sub-title {
  font-size: 14px;
  line-height: 24px;
  color: #a4a4a4;
}
#testimonial .testimonial-active .slick-dots {
  text-align: center;
}
#testimonial .testimonial-active .slick-dots li {
  display: inline-block;
  margin: 0 3px;
}
#testimonial .testimonial-active .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbced1;
  border: 0;
  cursor: pointer;
}
#testimonial .testimonial-active .slick-dots li.slick-active button {
  background-color: #cdb770;
}

/*=======================================================
			TEAM:
========================================================*/
#team {
  /*padding: 120px 0;*/
  text-align: center;
}
#team h2 {
  margin-bottom: 80px;
}
#team .team-member {
  margin-bottom: 40px;
}
#team .team-member .team-img img {
  box-shadow: -20px -19px 0px -4px #cdb770;
}
#team .team-member h4 {
  margin-top: 25px;
}
#team .team-member p {
  font-size: 16px;
}
#team .social-media {
  list-style: none;
  padding: 0;
}
#team .social-media li {
  display: inline-block;
  background: #cdb770;
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  margin: 0 10px;
}
#team .social-media li a {
  font-size: 18px;
  line-height: 2.8;
  color: #fff;
}
#team .social-media li:hover,
#team .social-media li:focus,
#team .social-media li:active {
  background: #3e6878;
  border: 1px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}
#team .social-media li:hover a,
#team .social-media li:focus a,
#team .social-media li:active a {
  color: #fff;
}

/*=======================================================
			CLÍNICA:
========================================================*/
#clinica {
  text-align: center;
  /*padding: 120px 0;*/
}
#clinica h2 {
  margin-bottom: 80px;
}
#clinica .service {
  display: flex;
  margin-bottom: 30px;
}
#clinica .service .service-icon {
  margin-right: 20px;
}
#clinica .bottom-caption {
  margin-top: 80px;
}

/*=======================================================
			CONTACT:
========================================================*/
#contact {
  /*padding: 40px 0 80px 0;*/
  background: #f5f5f7;
}
#contact .svg-wave {
  /*		width: 100%;
  		position: relative;*/
  bottom: 60px;
  /*		svg {
  			//background: $white;
  			width: 100%;
  			height: auto;

  			path {
  				//fill: $light-grey;
  			}
  		}*/
}
#contact h2 {
  text-align: center;
  margin-bottom: 80px;
  color: #cdb770;
}
#contact h4 {
  margin-bottom: 35px;
}
#contact .email-link {
  color: #cdb770;
  display: block;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out;
}
#contact .email-link:hover,
#contact .email-link:focus,
#contact .email-link:active {
  color: #3e6878;
  text-decoration: line-through;
}
#contact .social-media {
  list-style: none;
  padding: 0;
}
#contact .social-media li {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  margin: 0 10px;
}
#contact .social-media li a {
  font-size: 18px;
  line-height: 2.8;
  color: #cdb770;
}
#contact textarea {
  border-radius: 5px;
  border: 1.5px solid #cdb770;
}
#contact textarea:focus {
  outline: 0;
  box-shadow: none;
  border: 1.5px solid #3e6878;
}
#contact .row .col .form-control {
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1.5px solid #cdb770;
}
#contact .row .col .form-control:focus {
  outline: 0;
  box-shadow: none;
  border: 1.5px solid #3e6878;
}

/*=======================================================
			FOOTER:
========================================================*/
footer {
  padding: 25px 0;
}
footer p {
  margin: 0;
}
footer a {
  color: #cdb770;
  transition: all 0.2s ease-in-out;
}
footer a:hover,
footer a:focus,
footer a:active {
  color: #3e6878;
  text-decoration: line-through;
}

/*=======================================================
			FONTES: flat icons tooth
========================================================*/
.fi {
  font-size: 3rem;
  color: #cdb770;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/*=======================================================
			MEDIA QUERIES: 
========================================================*/
@media (max-width: 1199px) {
  #about .container .about-content {
    padding-top: 40px;
  }
}
@media (max-width: 992px) {
  .core-nav .brand {
    top: 5px;
  }
}
@media (max-width: 798px) {
  #home .main-slider h1 {
    font-size: 3rem;
  }
  #home .main-slider h3 {
    display: none;
  }
  #home .main-slider .slider-area .single-slide .btn {
    margin-bottom: 100px;
  }
}
/*=======================================================
			PRELOADER: 
========================================================*/
.preloader-holder {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background: url(../img/preview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 100000;
}

#loader {
  animation: loader 5s linear infinite;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}
#box {
  width: 50px;
  height: 50px;
  background: #fff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
#shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}

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