/*

Tooplate 2137 Barista

https://www.tooplate.com/view/2137-barista-cafe

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --black-color:                  #000000; 
  --primary-color:                #9b7d65;
  /* --secondary-color:              #ffeebe; */
  --secondary-color:              #f0eada; 
  --hover-color:                  rgb(50, 50, 50); 
  /* --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #BC6C25;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51; */

  --body-font-family:             'Plus Jakarta Sans', sans-serif;

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--primary-color);
  font-family: var(--body-font-family); 
  box-sizing: border-box; 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  /* color: var(--text-color); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  /* color: var(--p-color); */
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  /* color: var(--p-color); */
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  /* color: var(--link-hover-color); */
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--primary-color);
}

.section-overlay {
  /* background-color: var(--dark-color); */
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #7c5c52;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 5px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--primary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--hover-color); 
  border: 2px solid var(--hover-color); 
}

.special-button:hover {
  background: var(--primary-color); 

}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar {
  width: 100%; 
  position: absolute; 
  background: transpaprent; 
  z-index: 50;
  margin: 0px; 
  padding: 0px; 
  margin-top: 25px; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.navbar .container {
  /* background: rgba(0, 0, 0, 0.35); */
  background: var(--primary-color); 
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  width: 150px; 
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  width: 48px;
  height: auto;
  margin-right: 10px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--hover-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.board-img {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
  background: url('../assets/images/united-group.png') no-repeat;  
  background-size: cover;
  background-position: center;
}

/* .board-img::after {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 250px;
  height: 350px;
  pointer-events: none;
} */


.resource-container {
  width: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  align-items: center; 
  background-color: var(--primary-color); 
  /* padding: 25px;  */
  /* border-radius: 45px;  */
  color: white; 
  border-radius: 45px; 
}

.resource-container img {
  width: 100%; 
  border-top-left-radius: 45px;
  border-top-right-radius: 45px; 
}

.resource-container .resource-content-column {
  width: 70%; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  margin: 45px 0px; 
  /* row-gap: 65px;
  column-gap: 65px; */
}

.resource-container .resource-content-column .resource-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
  gap: 0.5em; 
  /* justify-items: center; */
}

.resource-container .resource-content-column .resource-content-grid a {
  color: lightskyblue; 
}

.resource-container .resource-content-column p {
  margin-bottom: 25px; 
}

.resource-container .resource-content-column .resource-content-grid p {
  margin-bottom: 25px; 
}

input[type="checkbox"] {
  width: 18px; 
  height: 18px; 
  cursor: pointer; 
}



.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
  background: url('../assets/images/home-back-img.png') no-repeat;  
  background-size: cover;
  background-position: center;
}

.tab-1 {
  margin-left: 35px; 
  list-style-type: circle; 
}

.tab-2 {
  margin-left: 55px; 
  list-style-type: square; 
}

/* .hero-section::after {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 250px;
  height: 350px;
  pointer-events: none;
} */

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }

  .board-img {
    height: 100vh; 
  }
}

.hero-section h1 {
  color: var(--white-color);
}

.board-img h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.board-img .custom-border-btn {
  border-color: transparent; 
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.board-img .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .underline {
  background-color: rgba(255, 255, 255, 0.75);
  width: 15%;
  height: 1px;
  margin: auto 15px 0 15px;
}

.button-container {
  width: 100%; 
  display: flex; 
  justify-content: center;
  align-items: center; 
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: var(--secondary-color);
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 1));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 40px;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
}

.team-block-wrap:hover .team-block-image {
  transform: scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.team-block-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 1));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
}

.side-img-text-container {
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin: 50px 0px; 
}

.side-img-text-container .img-div {
  width: 45%; 
}

.side-img-text-container .img-div img {
  width: 100%; 
}

.user-icon {
  cursor: pointer; 
}

.relative-user-icon-container {
  position: relative; 
}

#login-buttons {
  position: absolute; 
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 25px 35px; 
  border-radius: 15px; 
  display: flex; 
  flex-direction: column; 
  bottom: -50px; 
}

.user-icon-pop-links {
  color: white; 
  margin: 5px 0px; 
}

.side-img-text-container .text-div {
  width: 45%; 
  color: var(--black-color); 
}

.underline-page {
  padding-bottom: 15px; 
  border-bottom: 4px solid var(--primary-color); 
  margin-top: 75px; 
}

.stir-img-partner {
  max-width: 60%;
  height: auto;
}

.alto-img-partner {
  max-width: 90%;
  height: auto;
}

.no-m-t {
  padding-top: 0px !important; 
}

.no-m-b {
  padding-bottom: 0px !important; 
}

/* .stir-img-partner,
.alto-img-partner {
  max-width: 90%;
  height: auto;
} */

#partner-icon {
  width: 300px;
  height: 325px;
  background-color: var(--secondary-color);
  border-radius: 35px;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden; 
}

.services-offered-container {
  width: 100%; 
}

.services-offered-container p {
  margin-bottom: 45px; 
}

.services-offered-container .title-p {
  margin-bottom: 75px; 
}

.services-offered-container .img-container {
  display: flex; 
  justify-content: center; 
  margin-bottom: 45px;  
}

.services-offered-container .img-container img {
  width: 70%; 
}

.alert-section {
  background-color: var(--secondary-color); 
  border-top: 3px solid var(--primary-color); 
}

.img-container .services-img {
  width: 50%; 
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/happy-waitress-giving-coffee-customers-while-serving-them-coffee-shop.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background-color: var(--secondary-color);
  color: var(--black-color); 
}

.reviews-block {
  /* background-color: var(--section-bg-color); */
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.reviews-block-image-wrap {
  background-image: url('../images/mid-section-waitress-wiping-espresso-machine-with-napkin-cafa-c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size: var(--btn-font-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-group i {
  color: var(--white-color);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--secondary-color);
  padding-top: 200px; 
  color: var(--black-color); 
}

.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(100);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.form-control {
  color: rgb(0, 0, 0); 
  margin-bottom: 25px; 
  border: none; 
  border-left: 4px solid var(--primary-color); 
  background: var(--secondary-color); 
  border-radius: 0px; 
  outline: none; 
}

.form-control::placeholder {
  color: rgb(50, 50, 50); 
}

.form-control::-webkit-input-placeholder {
  color: rgb(50, 50, 50);
}

.form-control:-moz-placeholder {
  color: rgb(50, 50, 50);
}

.form-control::-moz-placeholder {
  color: rgb(50, 50, 50);
}

.form-control:-ms-input-placeholder {
  color: rgb(50, 50, 50);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-bottom: 2px solid var(--primary-color);
  border-color: none !important; 
}

.custom-form .form-label {
  color: var(--black-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--primary-color);
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 4px solid var(--secondary-color); 
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
	color: rgba(255, 200, 160, 0.75);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.center {
  display: flex; 
  justify-content: center;
  align-items: center; 
}

.spacing-p {
  margin: 45px 0px; 
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}

.resource-checkbox {

}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
  
  .img-container .services-img {
    width: 100%; 
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}










#contact-us .section-heading {
  margin-bottom: 50px;
}

#contact-us .section-heading h6 {
  color: var(--primary-color);
}

#contact-us .left-text-content ul li {
  margin-bottom: 30px;
}

#contact-us .left-text-content ul li {
  /* font-size: 14px; */
  font-weight: 600;
  letter-spacing: 0.5px;
}

#contact-us .left-text-content ul li img {
  margin-right: 15px;
}

#contact-us {
  padding: 120px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%; 
  position: relative; 
}

#contact-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--secondary-color); 
  z-index: 0;
}

#contact-us > * {
  position: relative;
  z-index: 2;
}

#contact {
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  color: #7a7a7a;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 100%;
  height: 46px;
  outline: none;
  padding-top: 3px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-color); 
  border-bottom: 5px solid var(--secondary-color); 
  transition: all ease 500ms; 
}

.photo-img-container {
  width: 100%; 
  display: flex; 
  justify-content: space-evenly; 
  margin: 65px 0px; 
}

.photo-img-container img {
  width: 300px; 
  height: auto; 
  background-color: white; 
  padding: 15px 15px 50px 15px; 
}

.coalition-p-container {
  width: 100%; 
  text-align: left; 
  margin-bottom: 50px; 
}

.prim-back-color {
  background: var(--primary-color) !important; 
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.three-row-services {
  display: flex; 
  justify-content: space-evenly; 
  align-items: center; 
}

.service-box {
  width: 25%; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.direct-services-li {
  margin-left: 50px; 
}

.spacing-h4 {
  margin-top: 45px; 
}

.at-risk-link {
  font-weight: 600; 
  color:rgba(188, 108, 37, 1); 
  text-decoration: underline; 
}

.contact-form ::-webkit-input-placeholder { /* Edge */
  color: #7a7a7a;
}

.contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7a7a7a;
}

.contact-form ::placeholder {
  color: #7a7a7a;
}

.side-img-text-container .img-div img {
  border-radius: 35px; 
}

.get-involved-grid-container {
  width: 100%; 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  justify-items: center;
  row-gap: 65px;
  column-gap: 65px;
}

.volunteer-back {
  background: url("../assets/images/diversity-dark.png") !important; 
}

.get-involved-content {
  /* width: 100%;  */
  display: flex; 
  flex-direction: column; 
}

.get-involved-content h1 {
  color: var(--primary-color); 
}

.get-involved-content h1,
.get-involved-content h3,
.get-involved-content p {
  text-align: center; 
}

form input, 
#zipInput {
  color: #7a7a7a;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 100%;
  height: 46px;
  outline: none;
  padding-top: 3px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-color); 
  border-bottom: 5px solid var(--secondary-color); 
  transition: all ease 500ms; 
}

.actions {
  display: flex; 
  justify-content: center; 
}





.carousel {
  width: 100%;
  max-width: 100%; 
  overflow: hidden;
  position: relative;
  margin: auto;
  padding: 0px; 
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  /* animation: slide 15s infinite; */
}

.carousel-btn {
  position: absolute; 
  top: 350px; 
  width: 40px; 
  height: 75px; 
  border-radius: 8px; 
  background-color: #f0eada; 
  outline: none; 
  border: none; 
}

.prev {
  left: 0%;
}

.next {
  right:  0%; 
}

.slides .carousel-img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover; /* Prevents distortion */
  flex: 1 0 100%;
}

@keyframes slide {
  0%   { transform: translateX(0%); }       /* Slide 1 */
  20%  { transform: translateX(0%); }

  33%  { transform: translateX(-100%); }    /* Slide 2 */
  53%  { transform: translateX(-100%); }

  66%  { transform: translateX(-200%); }    /* Slide 3 */
  86%  { transform: translateX(-200%); }

  100% { transform: translateX(0%); }       /* Back to Slide 1 */
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
  overflow: hidden; 
  flex-shrink: 0; 
}

.slide-text {
  width: 100%; 
  /* height: 400px;  */
  color: white;
  background-color: #9b7d65;
  padding: 45px 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slide-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.slide-text p {
  margin: 10px 0 0;
}

.flyer-event-class-temp {
  width: 70%; 
}





/* @media print {
  body * {
    visibility: hidden;
  }
  #results, #results * {
    visibility: visible;
  }
  #results {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
} */

#results { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 2fr));
  justify-items: center;
  row-gap: 25px;
}

#results div {
  border: none !important; 
}

@media screen and (max-width: 1200px) {
  .photo-img-container img {
    width: 250px; 
  }
}

@media screen and (max-width: 1000px) {
  .side-img-text-container {
    flex-direction: column; 
  }

  .side-img-text-container .img-div {
    width: 100%; 
    order: 1; 
  }

  .side-img-text-container .text-div {
    width: 100%; 
    order: 2; 
    margin-top: 35px; 
  }

  .services-offered-container .img-container img {
    width: 100%; 
  }

  .carousel {
    /* height: 400px;  */
  }

  .photo-img-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 2fr));
    justify-items: center;
    row-gap: 25px;
    /* column-gap: 25px; */
  }

  .photo-img-container img {
    width: 225px; 
  }

  #delete-img {
    display: none; 
  }

  #login-buttons {
    bottom: -100px; 
  }
}

.footer-img-logo {
  width: 500px; 
}

@media screen and (max-width: 768px) {
  #partner-icon {
    width: 200px; 
    height: 225px; 
  }

  .photo-img-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 2fr));
    justify-items: center;
    row-gap: 25px;
  }

  .photo-img-container img {
    width: 190px; 
  }

  .get-involved-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr));
  }

  .footer-img-logo {
    width: 300px; 
  }

  .three-row-services {
    display: flex; 
    flex-direction: column; 
    justify-content: space-evenly; 
    align-items: center; 
  }

  .service-box {
    width: 100%; 
    margin: 35px 0px; 
  }

  .flyer-event-class-temp {
  width: 100%; 
}
}

@media screen and (max-width: 530px) {
  .photo-img-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 2fr));
    justify-items: center;
    row-gap: 25px;
  }

  .photo-img-container img {
    width: 160px; 
  }

  .actions {
    flex-direction: column; 
  }
}

@media screen and (max-width: 500px) {
  #partner-icon {
    width: 140px; 
    height: 165px; 
  }
}

.title-bigger {
  font-size: 80px; 
}
