/*
Theme Name: Cilantro Road Home
Theme URI: https://www.valice.com/
Author: Valice
Author URI: https://www.valice.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Template: whitespace
Text Domain: cilantro-road-home
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Whitespace is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

a,
a:visited {
    color: #c3ab99;
}

a:hover {
    color: #929d79;
}

h1, h2, h3, .sans, 
.single-testimonial p,
.post-type-archive-testimonial p,
label {
    font-family: 'Montserrat', sans-serif;
}

p,h1,h2,h3 {
    max-width: 900px;
    margin: 10px auto;
    padding: 10px;
}

ul {
  margin-left: 0;
  padding-left: 20px;
}

/* Header */

.site-header {
    max-width: 1060px;
    padding: 10px;
    display: flex;
    margin: 0 auto;
    align-items: center;
}

.site-header .site-branding {
    max-width: 380px;
    padding: 10px;
}

.site-header .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.main-navigation {
    display: flex;
    justify-content: flex-end;
}

.tagline {
    color: #929d79;
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
}

.main-navigation li.menu-item a {
    padding: 5px 20px;
}

@media only screen and (max-width: 37.5em) {
    .site-header {
        flex-direction: column;
    }

    .site-header .header-right {
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
    }

    button.menu-toggle {
        color: transparent;
        margin: 0 auto;
        border: none;
        background-color: transparent;
    }

    button.menu-toggle:before {
        content: "\f349";
        font-family: 'dashicons';
        color: #a17c8c;
        display: block;
    }

    .site-header .main-navigation {
        text-align: left;
        padding: 0 20px;
    }

    .main-navigation.toggled ul {
    position: absolute;
    left: 0;
    top: 120px;
    background: #fff;
    width: 100%;
    text-align: center;
    }
}

/* Page */

.page-header {
    background-color: #c5c9ae;
}

.page-header h1.page-title {
  color: #fff;
}

.image-header .background-image {
    background-size: cover;
    height: 400px;
    background-position: center;
    max-width: 1500px;
    margin: 0 auto;
}

.page-content {
    padding-top: 100px;
}

.wp-block-columns {
    margin: 0;
}

.wp-block-columns > .wp-block-column {
    max-width: 900px;
    margin: 0 auto;
}

.wp-block-gallery {
    margin: 0 auto;
}

#contact .gform_wrapper .gfield_required,
#contact a {
    color: #fff;
}

/* Testimonials Slider */

.slick-slider {
  max-width: 800px;
  margin: 10px auto;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
}

ul.slick-dots {
	text-align: center;
	bottom: 0;
	margin: 20px auto;
	right: 0;
	left: 0;
}

ul.slick-dots li {
	list-style-type: none;
	display: inline-block;
}

ul.slick-dots button {
	text-indent: -9999px;
	background: transparent;
	border: 2px solid #a17c8c;
	border-radius: 100%;
	padding: 0;
	height: 15px;
	width: 15px;
	margin: 0 3px;

}

ul.slick-dots button:hover {
	background: #fff;
}

ul.slick-dots li.slick-active button {
	background: #fff;
}

.testimonial:after {
  content: '';
  display: block;
  max-width: 200px;
  margin: 40px auto;
  border-bottom: 2px solid #c5c9ae;
}


/* Transitions */

.scrolled.slide-in-top,
.no-scroll.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.scrolled.slide-in-left,
.no-scroll.slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.scrolled.slide-in-right,
.no-scroll.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.scrolled.fade-in,
.no-scroll.fade-in {
	-webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes slide-in-top {
    0% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-top {
    0% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }

  
@-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  