.highlight-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: var(--Rusty-Red, #B85C4E);
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.secondary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 2px solid #FFF;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.tertiary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #03424C;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
    z-index: 1;
}

/* FEATURES */

.features {
    background: #03424C;
    display: flex;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.features ul {
    display: flex;
    gap: 20px;
    padding: 28px 58px;
    min-width: 1440px;
    animation: scrollLeft 20s linear infinite;
}

.features:hover ul {
    animation-play-state: paused; /* Pause animation on hover */
}

.features ul li {
    color: #FFF;
    text-align: center;
    font-family: "SofiaRough", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 100;
    line-height: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.features ul li.separator::after {
    content: '';
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-90%);
    }
}


.benefits {
    background: #3F646D;
    padding: 124px 0 62px 0;
    display: flex;
    position: relative;
    justify-content: center;
}

.benefits .container {
    display: flex;
    justify-content: space-between;
}

.benefits .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.benefits .content {
    color: #FFF;
}

.benefits .content h2 {
    font-family: 'TrendSlabOne', serif;;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    width: 397px;
    margin-bottom: 24px;
}

.benefits .content p {
    color: #FFF;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 397px;
    margin-bottom: 48px;
}

.benefits .content .btn-group {
    display: flex;
    width: 430px;
    justify-content: space-between;
}

.benefits .content .btn-group .highlight-btn {
    margin-right: 8px;
}

.benefits .items {
    display: grid;
    grid-template-columns: 316px 316px;
    grid-row: auto auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 648px;
}

.benefits .items .item {
    padding: 16px;
    border-radius: 8px;
    background: #DCE8E6;
    display: flex;
    width: 316px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
}

.benefits .items .item h4 {
    color: #03424C;
    font-family: 'Gotham', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
}

.benefits .items .item p {
    color: #03424C;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
}

.benefits .items .item img {
    border-radius: 50%;
    border: 2px solid #FFF;
}

.locations {
    background: #EFF0F2;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 84px 0 94px 0;
}

.locations .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.locations .container {
    display: flex;
    flex-direction: column;
}

.locations .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.locations h2 {
    color: #03424C;
    text-align: center;
    font-family: 'TrendSlabOne', sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    width: 732px;
    margin-bottom: 24px;
}

.locations p {
    color: #000;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 540px;
    margin-bottom: 32px;
}

.locations .content .tertiary-btn {
    width: 260px;
    padding: 10px 20px;
}

.locations .content .location-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 33px;
}

.locations .content .location-group .location-item {
    width: 664px;
    height: 680px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    color: #03424C;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-content: flex-start;
    color: #000;
}

.locations .content .location-group .location-item h4 {
    color: #03424C;
    font-family: 'Gotham';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 100%;
    padding: 0;
    margin-top: 13px;
    margin-bottom: 15px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
}

.locations .content .location-group .location-item p {
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 100%;
    text-align: left;
}

.locations .content .location-group .location-item:nth-child(odd) {
    background: #03424C;
    color: #ffffff;
}

.locations .content .location-group .location-item:nth-child(odd) p {
    color: #fff;
}

.locations .content .location-group .location-item:nth-child(odd) .secondary-btn {
    border-color: #ffff;
    color: #ffff;
}

.locations .content .location-group .location-item:nth-child(odd) h4 {
    color: #FFF;
}

.locations .content .location-group .location-item:after {
    content: '';
    display: block;
    height: 14px;
    width: 100%;
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/location-bottom.jpg);
    position: absolute;
    bottom: 0;
    left: 0;
}

.locations .location-group .location-item img {
    border-radius: 4px;
    margin: 12px;
    aspect-ratio: 640 / 427;
    width: calc(100% - 24px);
    height: 427px;
    display: block;
}

.locations .location-group .location-item .details {
    text-align: left;
    padding-left: 32px;
    width: 100%;
    flex: inherit;
    margin-bottom: 14px;
    padding-bottom: 17px;
}

.locations .location-group .location-item .details .secondary-btn {
    width: 183px;
    border-color: #0D4E55;
    color: #0D4E55;
}

.locations .location-group .location-item .attributes {
    padding-right: 24px;
}

.locations .location-group .location-item .attributes span.reviews {
    color: #000;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
}

.locations .content .location-group .location-item:nth-child(odd) span.reviews {
    color: #FFF;
}

.locations .location-group .location-item .attributes span.reviews svg {
    margin-left: 10px;
}

.main > .reviews {
    background: #EFF0F2;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 84px 0 94px 0;
}

.main > .reviews .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main > .reviews .content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main > .reviews .content h2 {
    color: #03424C;
    text-align: center;
    font-family: 'TrendSlabOne', sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    width: 833px;
    margin-bottom: 24px;
}

.main > .reviews .content p {
    color: #000;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 500px;
    margin-bottom: 0;
}

.main > .reviews .review-items {
    display: flex;
    flex-direction: row;
    margin-top: 60px;
    justify-content: space-between;
    width: 100%;
}

.main > .reviews .review-items .review-item {
    border-radius: 4px;
    border: 1px solid #F4F4F4;
    background: #FFF;
    width: 437px;
    border-radius: 4px;
    border: 1px solid #F4F4F4;
    background: #FFF;
    padding: 24px;
}

.main > .reviews .review-items .review-item span {
    display: flex;
    align-items: center;
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

.main > .reviews .review-items .review-item span svg {
    margin-left: 7px;
}

.main > .reviews .review-items .review-item p {
    width: 100%;
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    margin-top: 25px;
    text-align: left;
}

.main > .reviews .review-items .review-item .author {
    margin-top: 48px;
    display: flex;
}

.main > .reviews .review-items .review-item .author .author-img {
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background: lightgray 50% / cover no-repeat;
    margin-right: 10px;
}

.main > .reviews .review-items .review-item .author .author-details {
    display: flex;
    flex-direction: column;
}

.main > .reviews .review-items .review-item .author .author-details h5 {
    margin-bottom: 5px;
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.main > .reviews .review-items .review-item .author .author-details .author-review-count {
    color: #808080;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.main > .reviews .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main > .reviews .socials .social-icons {
    margin-top: 80px;
    display: flex;
    width: 175px;
    justify-content: space-evenly;
}

.main > .reviews .socials span {
    color: #03424C;
    text-align: center;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 24px
}

/* THE KETCH EXPERIENCE  */
.experience {
    background: #03424C;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 80px 0 114px 0;
    padding-bottom: 0;
}

.experience .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.experience .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/Design-Elements.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.experience h2 {
    color: #FFF;
    text-align: center;
    font-family: 'TrendSlabOne';
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    margin-bottom: 24px;
}

.experience p {
    color: #FFF;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 470px;
    margin-bottom: 30px;
}

.experience .highlight-btn {
    width: 361px;
}

.experience .experience-items {
    display: flex;
    flex-wrap: wrap;
    width: 890px;
    margin-top: 42px;
}

.experience .experience-items li {
    width: 50%;
    color: #FFF;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    text-align: left;
    display: flex;
    list-style: none;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px;
}

.experience .experience-items li:before {
    content: '';
    background: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/Group-526.png);
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 15px
}
  
  .experience #image-carousel {
    position: relative;
    margin: 0 auto;
    width: 800px;
    height: 730px;
  }
  
  .experience #image-carousel .bullet-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .experience #image-carousel .bullet-container .bullet {
    margin-right: 14px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
  }
  
  .experience #image-carousel .bullet-container .bullet:last-child {
    margin-right: 0px;
  }
  
  .experience #image-carousel .bullet-container .bullet.active {
    opacity: 1;
  }
  
  .experience #image-carousel .image-carousel-items {
    position: relative;
    left: 50%;
    top: 35%;
    width: 63%;
    height: 70%;
    transform: translate(-50%, -50%);
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 508px;
    height: 612px;
    transition: z-index 0ms 250ms;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item .slide-img {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    transform: scale(0);
    opacity: 0;
    border-radius: 8px;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item .image-carousel-item-download {
    position: absolute;
    display: block;
    right: -22px;
    bottom: 12px;
    padding: 15px;
    color: #333333;
    background-color: #fdc84b;
    font-size: 18px;
    font-weight: 600;
    font-family: "karla";
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    opacity: 0;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item .image-carousel-item-download:hover,
  .experience #image-carousel .image-carousel-items .image-carousel-item .image-carousel-item-download:focus {
    outline: none;
    text-decoration: none;
  }

  .experience #image-carousel .image-carousel-items .image-carousel-item.preactivede .slide-img {
    transform: translateX(-50%) scale(0);
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.preactive {
    z-index: 1;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.preactive .slide-img {
    opacity: 0.3;
    transform: translateX(-25%) scale(0.8);
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.proactive {
    z-index: 1;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.proactive .slide-img {
    opacity: 0.3;
    transform: translateX(25%) scale(0.8);
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.proactivede .slide-img {
    transform: translateX(50%) scale(0);
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.active {
    z-index: 2;
  }
  
  .experience #image-carousel .image-carousel-items .image-carousel-item.active .slide-img {
    opacity: 1;
    transform: translateX(0%) scale(1);
  }
  
  .experience #image-carousel .slider-left {
    position: absolute;
    z-index: 3;
    display: block;
    right: 93%;
    top: 38%;
    color: #ffffff;
    transform: translateY(-50%);
    margin-right: -2px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.30);
    width: 64px;
    height: 64px;
    padding: 23px;
    text-align: center;
  }
  
  .experience #image-carousel .slider-right {
    position: absolute;
    z-index: 3;
    display: block;
    left: 93%;
    top: 38%;
    color: #ffffff;
    transform: translateY(-50%);
    margin-left: -2px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.30);
    width: 64px;
    height: 64px;
    padding: 23px 16px 23px 20px;
    text-align: center;
  }

  .experience #image-carousel .slider-left i,
  .experience #image-carousel .slider-right i {
    font-size: 20px;
  }
  
  .experience #image-carousel .not-visible {
    display: none !important;
  }
  

/* SUBSCRIPTION */

.subscription {
    background: #eaeaea;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

.subscription .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.subscription .container p {
    color: #000;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 350;
    line-height: 100%;
    margin-top: 48px;
}

.subscription .bg {
    background: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/newsletter-bg.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}

.subscription h2 {
    color: #03424C;
    text-align: center;
    font-family: 'TrendSlabOne', sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    margin-bottom: 48px;
    width: 850px;
}

.subscription .subscription-form form {
    display: flex;
    width: 960px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.subscription .subscription-form form .email {
    width: 615px;
}

.subscription .subscription-form form .birthdate p {
    display: flex;
    gap: 18px;
    align-items: center;
    color: #000;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 350;
    line-height: 100%;
}

.subscription .subscription-form form .birthdate p label {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
}

.subscription .subscription-form form .birthdate p span {
    width: 200px;
    margin-bottom: 0;
}

.subscription .subscription-form form .birthdate p span input {
    width: 200px;
    height: 80px;
    border: 0;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}



.subscription .subscription-form form p {
    margin: 0;
    padding: 0;
    display: inline;
    width: auto;
    position: relative;
}

.subscription .subscription-form form > p {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 47px;
}

.subscription .subscription-form form br {
    display: none;
}

.subscription .subscription-form form label {
    display: none;
}

.subscription .subscription-form .location {
    border: none;
    color: #626262;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    height: 80px;
    padding: 30px 31px;
	background: #ffffff;
}

.subscription .subscription-form .location::selected {
	color: #626262;
    font-weight: 350;
}

.subscription .subscription-form input[type="email"] {
    border: none;
    color: #626262;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    height: 80px;
    padding: 30px 31px;
}

.subscription .subscription-form input[type="email"]::placeholder,
.subscription .subscription-form input::placeholder {
    color: #626262;
    font-weight: 350;
}

.subscription .subscription-form input[type="date"] {
    border: none;
    color: #626262;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350 !important;
    line-height: 120%;
    height: 80px;
    padding: 30px 31px;
}

.subscription .subscription-form input[type="date"]::placeholder,
.subscription .subscription-form input::placeholder {
    color: #626262;
    font-weight: 350;
}

.subscription .subscription-form input[type="text"] {
    border: none;
    color: #626262;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    height: 80px;
    padding: 30px 31px;
}

.subscription .subscription-form input[type="text"]::placeholder,
.subscription .subscription-form input::placeholder {
    color: #626262;
    font-weight: 350;
}

.subscription .subscription-form input[type="submit"] {
    display: inline-flex;
    height: 56px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #CAD9DA;
    color: #03424C;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    border: none;
}

.subscription .subscription-form span.wpcf7-spinner {
    position: absolute;
}

div.wpcf7-response-output, div.wpcf7-validation-errors, div.wpcf7-acceptance-missing, div.wpcf7-spam-blocked, div.wpcf7-mail-sent-ok {
    color: #000 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
}

@keyframes heartbeat {
    0% {
        transform: scale(0);
    }
    25% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
