/* Custom CSS for Panama Immigration Site */

/* Root Variables */
:root {
	--primary: #AD9625;
	--light: #F4F4F4;
	--secondary: #AC2E19;
	--success: #256022;
	--dark-bg: #0a0a0a;
}

/*Bootstrap Icons */
@font-face {
  font-family: "bootstrap-icons";
  src: url("https://amandarankin.com/wp-content/themes/nvbarebones/bs5/fonts/bootstrap-icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap !important;
}
/* BEGIN Montserrat Font */
@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* END Montserrat Font */
/* BEGIN Playfair Display Font */

@font-face {
  font-family: 'Playfair Display';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/PlayfairDisplay/PlayfairDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('https://amandarankin.com/wp-content/themes/nvbarebones/fonts/PlayfairDisplay/PlayfairDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.montserrat-font{
  font-family: 'Montserrat', system-ui, sans-serif !important;
}

/* END Playfair Display Font */



.bg-primary {
	background-color: var(--primary) !important;
}
.bg-secondary {
	background-color: #AC2E19 !important;
}
.bg-light {
	background-color: #F4F4F4 !important;
}
.bg-light-gray {
  background: linear-gradient(270deg, #f5efe3, #fbfbfb);
}
.bg-dark-blue {
  background-color: #020d3b !important;
}
.bg-dark-green {
  background-color: #adc68c !important;
}

.text-primary {
	color: var(--primary) !important;
}
.text-danger{
	color: #AC2E19 !important;
}
.text-darker-danger {
	color: #ad0000 !important;
}
.text-white {
	color: #fff !important;
}
.text-black {
	color: #000 !important;
}
.text-green {
	color: #256022 !important;
}
.text-gold {
	color: #c4a35a !important;
}

.btn-primary{
	background-color: var(--primary) !important;
	border-radius: 10px;
	padding: 5px 0.8rem;
	border: none;
	color: black !important;
}
.btn-primary:hover{
	background-color: #886D20 !important;
	color: rgb(255, 255, 255) !important;
}
.btn-secondary{
	background-color: #AC2E19 !important;
	border-radius: 10px;
	padding-left: 0.8rem ;
	padding-right: 0.8rem ;
	margin-left: 0.4rem;
	margin-right: 0.4rem;
	border: none;
}
.btn-danger{
	background-color: #AC2E19 !important;
	border-radius: 10px;
	border: none;
	color: #fff !important;
	letter-spacing: 0.7px;
	font-family: 'Montserrat', system-ui, sans-serif;
	display: flex;
	justify-content: center;
	transition: transform 0.3s ease-in-out;
}
.btn-danger:hover {
  /* Move the button upwards by 10 pixels on hover */
  transform: translateY(-10px); 
}
.border-primary{
	border-color: var(--primary) !important;
}
.border-white{
	border-color: #fff !important;
}
.bg-gold-soft {
  background: linear-gradient(45deg,#cbbd7c 0%,#ad9625 100%);
}

.bg-dark-gradient{
	background: var(--gradient-black, linear-gradient(284deg, #2C2B2B 14.01%, #0A0A0A 92.79%));
}
hr{
	border: none !important;
    height: 1px !important;
    background-color: #c4a35a !important;
    opacity: 100 !important;
}
/* Body and General Styles */
body {
	font-family: 'Montserrat', system-ui, sans-serif;
	margin: 0;
	padding: 0;
}
footer ul li,
ol li {
  	margin-bottom: 0.75rem;
}
ul .navbar-nav{
  	margin-bottom: 0rem !important;
}
h1, h2, h3 {
	font-family: 'Playfair Display', 'Times New Roman', Times, serif;
}

p, a, button, input, textarea, select, label, span, div {
	font-family: 'Montserrat', sans-serif;
}
/* Navigation */
.navbar {
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	background-color: #020d3b !important;
}
.navbar-brand {
	font-size: 1.2rem;
	letter-spacing: 0.7px;
	font-family: 'Montserrat', system-ui, sans-serif;
}
.navbar-nav .nav-link {
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
	letter-spacing: 0.5px;
}
.navbar-nav .nav-link-btn {
	transition: color 0.3s ease;
	letter-spacing: 0.5px;
	font-family: 'Montserrat', system-ui, sans-serif;
	text-decoration: none;
	color: black !important;

}
.navbar-nav .nav-link-btn:hover {
	color: white !important;
}
.nav-item a {
	font-family: 'Montserrat', system-ui, sans-serif;
}
.nav-link:focus {
	outline: 2px solid #5e676f !important;   
	outline-offset: 2px !important;      
}
.nav-link-btn:focus {
	outline: 2px solid #5e676f !important;   
	outline-offset: 2px !important;      
}
.navbar-nav .nav-link:hover {
	color: var(--primary) !important;
}
header .nav-link:focus, .footer-section .nav-link:active {
	outline: none !important;
}
.fs-6{
	font-size: 1rem !important;
}
.fs-7{
	font-size: 0.8rem !important;
}



/* [AY 2026-01-28] Slick Carousel Styling */
.glory-horse-slick-carousel {
    padding: 2rem 0 4rem 0;
}

.glory-horse-slick-carousel .book-slide {
    padding: 0 15px;
}

.glory-horse-slick-carousel .book-card {
    padding: 1rem;
}

.glory-horse-slick-carousel .book-cover-img {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    box-shadow: rgb(0 0 0 / 39%) 0px 13px 33px;
}

/* Slick Arrows */
.glory-horse-slick-carousel .slick-prev,
.glory-horse-slick-carousel .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}


.glory-horse-slick-carousel .slick-prev:before,
.glory-horse-slick-carousel .slick-next:before {
    font-size: 50px;
    color: #333;
}

/* Slick Dots */
.glory-horse-slick-carousel .slick-dots {
    bottom: -40px;
}

.glory-horse-slick-carousel .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
}

.glory-horse-slick-carousel .slick-dots li.slick-active button:before {
    color: #333;
}


/* BEGIN Gravity Forms – Field styling */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper select,
.gform_wrapper textarea {
	text-align: left;
	color: black !important;
	border: 1.5px solid black !important;
	border-radius: 0px !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
	padding: 10px 12px;
	background-color: transparent !important;
}
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	outline: none;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_page_footer input[type="submit"] {
	border: 2px solid #b89f6e !important;
	background: transparent !important;
	color: #b89f6e !important;
	padding: 1px 60px !important;
	border-radius: 30px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.3s !important;
	margin-left: 0px !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_page_footer input[type="submit"]:hover {
	background: #b89f6e !important;
	color: #ffffff !important;
}
.gform_wrapper .gform_footer{
	justify-content: center !important;
}
.gform_wrapper ::placeholder {
	color: black !important;
	opacity: 1;
}
/* #gform_wrapper_1 ::placeholder,#gform_wrapper_2 ::placeholder {
	color: black !important;
} */
/* END Gravity Forms – Field styling */


.hero-section { 
  background: url('https://amandarankin.com/media/home-hero-section-desktop.webp');
  background-size: cover;
  background-position: 38%;
  height: 60vh;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
}
.hero-content {
  background: #d2e4bd;
  padding: 3rem;
  color: #333;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.book-card {
  transition: transform 0.3s;
  cursor: pointer;
}
.book-card:hover {
  transform: translateY(-10px);
}
.btn-custom {
  border: 2px solid #020d3b;
  background: transparent;
  color: #020d3b;
  padding: 8px 24px;
  border-radius: 20px;
  transition: all 0.3s;
}
.btn-custom:hover {
  background: #020d3b;
  color: white;
}
.btn-outline-green {
  border: 2px solid #020d3b;
  background: transparent;
  color: #020d3b;
  padding: 8px 24px;
  border-radius: 20px;
  transition: all 0.3s;
}
.btn-outline-green:hover {
  background: #9ab378;
  border: 2px solid #9ab378;
  color: white;
}
.btn-outline-gold {
  border: 2px solid #c4a35a;
  background: transparent;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: #c4a35a;
  border: 2px solid #c4a35a;
  color: white;
}
.btn-outline-style {
  border: 2px solid #020d3b;
  background: transparent;
  color: #020d3b;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-style:hover {
  background: #020d3b;
  color: white;
  text-decoration: none;
}
.glory-horse-section {
  padding: 4rem 0;
  background: url("https://amandarankin.com/media/horses-bg-hero.webp");
  background-size: cover;
  background-position: center;
}
.other-works-section {
  background: url("https://amandarankin.com/media/blue-texture-bg.webp");
  background-size: contain;
  background-position: center;
  color: white;
  padding: 4rem 0;
}
.testimonial-section {
  background: white;
  padding: 2rem;
}
.testimonial-section .container-fluid {
  background: url("https://amandarankin.com/media/reviews-bg.webp");
  background-size: cover;
}
.testimonial-card {
  background: white;
  color: #333;
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
}
.quotes-slick-carousel .slick-slide {
  padding: 0 12px;
}

.quotes-slick-carousel .slick-list {
  margin: 0 -12px;
}
.quotes-slick-carousel .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M14 17L9 12' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 12L14 7' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  left: -58px !important;
}

.quotes-slick-carousel .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M10 17L15 12' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15 12L10 7' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  right: -58px !important;
}
.quotes-slick-carousel .slick-prev:before,
.quotes-slick-carousel .slick-next:before {
  content: '' !important;
  display: none !important;
}
.quotes-slick-carousel .slick-prev,
.quotes-slick-carousel .slick-next {
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: 10;
}

.meet-amanda-section {
  background: url("https://amandarankin.com/media/meet-amanda-bg.webp");
  padding: 2rem !important;
  background-size: cover;
  background-position: center;
}
.info-box {
  background: #adc68c;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.miracle-section {
  background: #020d3b;
}
.contact-section {
  background: url("https://amandarankin.com/media/lest-connect-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.latest-release-section {
  background: url('https://amandarankin.com/media/horses-bg-hero.webp');
  background-size: cover;
  background-position: center;
  padding: 12rem 0;
  position: relative;
}

.latest-release-section .container {
  position: relative;
  z-index: 2;
}

.latest-release-books {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 450px;
  padding: 2rem 0;
}

.book-cover {
  position: absolute;
  transition: transform 0.3s;
}

.book-cover img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Left back book */
.book-1 {
  width: 32%;
  left: 5%;
  z-index: 1;
  bottom: -30px;
}

/* Center front book */
.book-2 {
  width: 38%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  top: -15px;
}

/* Right back book */
.book-3 {
  width: 32%;
  right: 5%;
  z-index: 2;
  bottom: -30px;
}

.book-cover:hover {
  transform: translateY(-10px);
}

.book-1:hover {
  transform: translateY(-10px);
  z-index: 4;
}

.book-2:hover {
  transform: translateX(-50%) translateY(-10px);
  z-index: 4;
}

.book-3:hover {
  transform: translateY(-10px);
  z-index: 4;
}

.newsletter-section {
  background: url('https://amandarankin.com/media/newsletter-bg-hero.webp');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  position: relative;
}
.newsletter-box {
  background: url('https://amandarankin.com/media/white-texture-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.newsletter-form {
  max-width: 900px;
  margin: 0 auto;
}
.btn-newsletter {
  border: 2px solid #c4a35a;
  background: transparent;
  color: #c4a35a;
  padding: 12px 60px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-newsletter:hover {
  background: #c4a35a;
  color: white;
}


.glory-horse-carousel {
  position: relative;
  padding: 2rem 0 4rem 0;
}

.glory-horse-carousel .carousel-item {
  min-height: 500px;
  padding: 1rem;
}

.book-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.book-card p {
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
  width: 80%;
}


.glory-horse-carousel .carousel-control-prev,
.glory-horse-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.glory-horse-carousel .carousel-control-prev-icon,
.glory-horse-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.glory-horse-carousel .carousel-control-prev:hover,
.glory-horse-carousel .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.glory-horse-carousel .carousel-indicators {
  bottom: -30px;
  margin-bottom: 0;
}

.glory-horse-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
}

.glory-horse-carousel .carousel-indicators button.active {
  background-color: #333;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") !important;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}
.carousel-inner {
  min-height: 700px;
}
.glory-horse-slick-carousel .slick-prev,
.glory-horse-slick-carousel .slick-next {
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: 10;
}

.glory-horse-slick-carousel .slick-prev:before,
.glory-horse-slick-carousel .slick-next:before {
  content: '';
  display: none;
}

/* Previous Arrow (Flipped) */
.glory-horse-slick-carousel .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M14 17L9 12' stroke='%23292929' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 12L14 7' stroke='%23292929' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  /* left: -60px; */
}

/* Next Arrow */
.glory-horse-slick-carousel .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M10 17L15 12' stroke='%23292929' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15 12L10 7' stroke='%23292929' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
    /* right: -60px; */
}

.glory-horse-slick-carousel .slick-prev:hover,
.glory-horse-slick-carousel .slick-next:hover {
  opacity: 0.7;
}

  /* Other Works Slick Carousel Styling */
.other-works-slick-carousel {
  padding: 2rem 0 4rem 0;
}

.other-works-slick-carousel .book-slide {
  padding: 0 15px;
}

.other-works-slick-carousel .book-card {
  padding: 1rem;
}

.other-works-slick-carousel .book-cover-img {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  box-shadow: rgb(0 0 0 / 39%) 0px 13px 33px;
}

/* Slick Arrows */
.other-works-slick-carousel .slick-prev,
.other-works-slick-carousel .slick-next {
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: 10;
}

.other-works-slick-carousel .slick-prev:before,
.other-works-slick-carousel .slick-next:before {
  content: '';
  display: none;
}

.other-works-slick-carousel .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M14 17L9 12' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 12L14 7' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  /* left: -60px !important; */
}

.other-works-slick-carousel .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M10 17L15 12' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15 12L10 7' stroke='%23c4a35a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  /* right: -60px !important; */
}

.other-works-slick-carousel .slick-prev:hover,
.other-works-slick-carousel .slick-next:hover {
  opacity: 0.7;
}

/* Slick Dots */
.other-works-slick-carousel .slick-dots {
  bottom: -40px;
}

.other-works-slick-carousel .slick-dots li button:before {
  font-size: 12px;
  color: #c4a35a;
}

.other-works-slick-carousel .slick-dots li.slick-active button:before {
  color: #c4a35a;
}
/* Media Queries */
@media (min-width: 1201px) {
  .testimonial-card{
    min-height: 280px;
  }
}
@media (max-width: 1200px) {
  .testimonial-card{
    min-height: 328px;
  }
}
@media (max-width: 991px) {
      
	.latest-release-books {
		min-height: 350px;
	}

	.book-1 {
		width: 28%;
		left: 10%;
		bottom: -48px;
	}

	.book-2 {
		width: 32%;
	}

	.book-3 {
		width: 28%;
		right: 10%;
		bottom: -48px;
	}
	.glory-horse-carousel .carousel-item {
		min-height: 550px;
	}
	.glory-horse-slick-carousel .slick-prev {
		left: 10px;
	}
	
	.glory-horse-slick-carousel .slick-next {
		right: 10px;
	}
  .other-works-slick-carousel .slick-prev {
    left: 10px !important;
  }
  .other-works-slick-carousel .slick-next {
    right: 10px !important;
  }
  .testimonial-card{
    min-height: 328px;
  }
}
@media (max-width: 820px) {
    .hero-section {
      background-position: 38% !important;
    }
    .hero-content {
      padding: 2rem 1.5rem;
      max-width: 536px !important;
    }
}
@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 56px) !important;
    padding: 5rem 6rem !important;
    justify-content: center !important;
    align-items: end !important;
    background:  url('https://amandarankin.com/media/home-hero-mobile.webp') !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
	.book-1 {
		width: 33%;
		bottom: -14px;
	}
	
	.book-2 {
		width: 36%;
	}
	
	.book-3 {
		width: 33%;
		bottom: -14px;
	}
	.newsletter-box {
    padding: 2rem 1.5rem;
  }
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
  .btn-newsletter {
    padding: 12px 40px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    height: calc(100vh - 56px) !important;
    padding: 0px !important;
    justify-content: center !important;
    align-items: end !important;
    background:  url('https://amandarankin.com/media/home-hero-mobile.webp') !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero-section p {
    font-size: 0.9rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p strong {
    font-size: 1rem;
  }
  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
	.latest-release-section{
		padding: 6rem 0 !important; 
	}
	.book-1 {
		width: 33% !important;
		bottom: 0px !important;
	}
	
	.book-2 {
		width: 36% !important;
		top: unset !important;
	}
	
	.book-3 {
		width: 33% !important;
		bottom: 0px !important;
	}
  .quotes-slick-carousel .slick-prev {
    left: -44px !important;
  }
  .quotes-slick-carousel .slick-next {
    right: -44px !important;
  }
}
@media (max-width: 375px) {
    .hero-content {
      padding: 2rem !important;
    }
}