/*==========================================================
Theme Name: Nutritionist
Author: OG Web Solutions
Author URL: https://www.ogwebsolutions.com/
Version: 1.1
==========================================================*/

/**
@File: Nutritionist
This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

==========================================================
		CSS Index 
============================================================

# Global Styles
	## Back to top
	## Header
	## Footer

# Home Page
	## Hero Section
	## About Section
	## Offer Section
	## Second About Section
	## Testimonials Section
	## FAQ's Section

# Additional Styles added

==========================================================**/

/*==========================================================

    # Global Styles

==========================================================*/
body {
  color: #000;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1rem;
}

/*========== Text Colors ==========*/

.text-green {
  color: #99be4f;
}

/*========== Background Colors ==========*/

.bg-green {
  background-color: #99be4f;
}
.bg-gray {
  background-color: #f0f0f0;
}
.bg-light-green {
  background-color: #f4f5ee;
}

/*========== Font Weight ==========*/

.font-weight-regular {
  font-weight: 400;
}

.font-weight-bold {
  font-weight: 700;
}

/*========== Small text ==========*/
.small-text {
  font-size: 13px;
}

/*========== Text Decoration ==========*/

.text-underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: #99be4f;
}
a:hover {
  text-decoration: underline;
  color: #99be4f;
}

/*========== Line Height ==========*/

.line-height-1-5 {
  line-height: 1.5 !important;
}

.line-height-1-2 {
  line-height: 1.2 !important;
}

p:last-child {
  margin-bottom: 0;
}

/*========== Section Title ==========*/
.section-title {
  max-width: 870px;
  margin: 0 auto;
}
.section-title h2 {
  font-size: 65px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 15px;
  border-left: 10px solid #66cc6c;
  padding-left: 1rem;
}

.section-title h2.text-center {
  border-left: 0;
}
.section-title p {
  line-height: 1.5;
  color: #000;
}

.col-heading h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
}

/* --- Responsive css --- */
@media (max-width: 1199.98px) {
  .section-title h2 {
    font-size: 40px;
  }
  .section-title p {
    /* font-size: 16px; */
  }
  .col-heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .section-title h2 {
    font-size: 34px;
  }
  .col-heading h2 {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 28px;
  }
  .col-heading h2 {
    font-size: 22px;
  }
}

/*========== Buttons ==========*/

.btn {
  border-radius: 50px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff !important;
  background-color: #99be4f !important;
  padding: 15px 30px;
}
.btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

.order-btn {
  background-color: #fff;
  color: #99be4f;
  padding: 18px 40px;
}
.order-btn span {
  display: block;
}
.order-btn .elButtonSub {
  font-size: 13px;
}

@media (max-width: 1199.98px) {
  .btn {
    font-size: 19px;
  }
}
@media (max-width: 767.98px) {
  .order-btn {
    padding: 16px 30px;
  }
  .order-btn .elButtonSub {
    font-size: 12px;
  }
}

/*========== Image ==========*/
img {
  max-width: 100%;
}

/* --- Responsive css --- */

@media (max-width: 767.98px) {
  .btn {
    font-size: 16px;
  }
}

/*========== Section Spacer ==========*/

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

.section-alt-spacer {
  padding-top: 90px;
  padding-bottom: 100px;
}

/* --- Responsive css --- */

@media (max-width: 1199.98px) {
  .section-spacer {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-alt-spacer {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991.98px) {
  .section-spacer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-alt-spacer {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

/*========== Custom List ==========*/

.custom-list-arrow {
  list-style-type: none;
  padding-left: 0;
}

.custom-list-arrow li {
  position: relative;
  padding-left: 40px;
}

.custom-list-arrow li:not(:last-child) {
  margin-bottom: 5px;
}

.custom-list-arrow li:before {
  content: url("../img/home-05-right-arrow-icon.png");
  position: absolute;
  left: 0;
  top: 0;
}

/*========== Custom Bullet ==========*/

.custom-list-blue {
  list-style-type: none;
  padding-left: 0;
}

.custom-list-blue li {
  position: relative;
  padding-left: 25px;
}

.custom-list-blue li:not(:last-child) {
  margin-bottom: 5px;
}

.custom-list-blue li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #99be4f;
}

/*========== Blockquote ==========*/

.blockquote {
  background-color: #f5f5f5;
  padding: 20px;
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 767.98px) {
  .blockquote * {
    font-size: 16px;
  }
}

/* Container */

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

/* ## Back to top */

.backtotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  height: 40px;
  width: 40px;
  background-color: #99be4f;
  cursor: pointer;
  border: 2px solid #547316;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  opacity: 0.9;
  transition: opacity 200ms linear;
  display: none;
}

.backtotop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -7px;
  margin-top: -4px;
  transform: rotate(-45deg);
  height: 0px;
  width: 0px;
  border-width: 3px 3px 0 0;
  border-style: solid;
  padding: 5px;
  border-color: #fff;
}

.backtotop:hover {
  opacity: 1;
  transition: opacity 200ms linear;
}

/*----------------------------------------------------------

    ## Header

---------------------------------------------------------*/

header {
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
header.sticky {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px #c1c1c1;
  box-shadow: 0 0 5px #c1c1c1;
  z-index: 11;
}
.navbar-brand {
  max-width: 170px;
  width: 100%;
}

@media (max-width: 767.98px) {
  header p {
    font-size: 13px;
  }
}

/*----------------------------------------------------------
	## Footer
---------------------------------------------------------*/

footer {
  background: #99be4f;
  padding-top: 50px;
  padding-bottom: 45px;
}

@media (max-width: 767.98px) {
  footer {
    font-size: 16px;
  }
}

/*==========================================================
		 # Home Page
==========================================================*/

/*----------------------------------------------------------
	## Hero Section
---------------------------------------------------------*/

.hero-section {
  /* background-image: url(../img/hero-bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section .row {
  padding-top: 150px;
}
.hero-section .left-col {
  padding-top: 100px;
  padding-bottom: 180px;
}
.hero-section h1 {
  font-size: 44px;
}
.hero-section h2 {
  font-size: 60px;
}

@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 34px;
  }
  .hero-section h2 {
    font-size: 50px;
  }
  .hero-section .left-col {
    padding-top: 50px;
    padding-bottom: 140px;
  }
}

@media (max-width: 991.98px) {
  .hero-section .row {
    padding-top: 120px;
  }
  .hero-section h1 {
    font-size: 30px;
  }
  .hero-section h2 {
    font-size: 40px;
  }
  .hero-section .left-col {
    padding-top: 0px;
    padding-bottom: 70px;
  }
  p,
  li {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .hero-section .left-col {
    text-align: center;
    padding-bottom: 40px;
  }
  .hero-section h1 {
    font-size: 24px;
  }
  .hero-section h2 {
    font-size: 30px;
  }
  .hero-section .right-col {
    justify-content: center;
  }
  .hero-section .right-col img {
    max-width: 280px;
  }
}

/*----------------------------------------------------------
	## About Section 
---------------------------------------------------------*/

.about-section {
  padding: 60px 0 0 0;
}
.about-section .right-col h3 {
  font-size: 29px;
}

@media (max-width: 1199.98px) {
  .about-section {
    padding: 60px 0 70px 0;
  }
  .about-section .right-col h3 {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .offer-row .offer-box h2 {
    font-size: 20px;
  }
  .about-section .right-col h3 {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .about-section .right-col h3 {
    font-size: 20px;
  }
  .about-section {
    padding: 50px 0 35px 0;
  }
}

/*----------------------------------------------------------
	## Offer Section 
---------------------------------------------------------*/

.offer-row .offer-box img {
  border-radius: 5px;
}
.offer-row .offer-box h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .offer-row .offer-box h2 {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .offer-row .offer-box {
    text-align: center;
  }
  .offer-row .offer-box h2 {
    font-size: 22px;
  }
}

/*----------------------------------------------------------
	## About 2 Section 
---------------------------------------------------------*/
@media (max-width: 767.98px) {
  .section .right-col {
    order: 1;
  }
  .section .left-col {
    order: 2;
    margin-top: 30px;
  }
}

/*----------------------------------------------------------
	## Testimonial Section 
---------------------------------------------------------*/
.innerBox {
  padding: 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.innerBox h4 {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .innerBox {
    padding: 15px;
  }
}

@media (max-width: 768.98px) {
  .col-12:last-child .innerBox {
    margin-bottom: 0;
  }
}

/*----------------------------------------------------------
	## FAQ 
---------------------------------------------------------*/

.faq-section .container {
  max-width: 980px;
}

.faq-section .section-title h2 {
  font-size: 56px;
}

.accordion .accordion-section {
  margin-bottom: 20px;
  background-color: #fff;
}

.accordion .accordion-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.accordion .accordion-section-title {
  color: #000;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  position: relative;
  display: block;
  transition: ease 0.3s all;
  padding: 18px 45px 18px 20px;
  border: 1px solid #e6e9e3;
}

.accordion .accordion-section-title.active {
  color: #99be4f;
  border: 1px solid #99be4f;
}

.accordion .accordion-section-title:after {
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -3px;
  content: "";
  height: 0;
  width: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #000;
  transition: all 300ms ease;
}

.accordion .accordion-section-title.active:after {
  border-top: 7px solid #99be4f;
  transform: rotate(180deg);
}

.accordion-section-content {
  display: none;
  padding: 20px 40px 20px 20px;
}

.accordion-section-content.open {
  border: 1px solid #99be4f;
  border-top: 0;
}

.accordion-section-content p {
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.4;
}

.accordion .accordion-section-title:hover {
  text-decoration: none;
  color: #99be4f;
}

@media (max-width: 1199.98px) {
  .faq-section .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 768.98px) {
  .faq-section .section-title h2 {
    font-size: 28px;
  }
  .accordion-section-content p {
    font-size: 16px;
  }
  .accordion .accordion-section-title {
    font-size: 18px;
  }
  .accordion .accordion-section-title:after {
    right: 10px;
  }
}

/*----------------------------------------------------------
	## Free Consultation Popup
---------------------------------------------------------*/

.free-consultation-popup .close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  background-color: #000000;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 100%;
  opacity: 1 !important;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.free-consultation-popup .close:hover {
  opacity: 1;
}

.free-consultation-popup .modal-content {
  border-radius: 0;
  border: none;
}

.free-consultation-popup .top-content h3 {
  font-size: 26px;
}

.free-consultation-popup .top-content h3:before,
.free-consultation-popup .top-content h3:after {
  content: "\f103";
  font-family: "FontAwesome";
  color: #fff;
  position: absolute;
  font-size: 50px;
  top: -10px;
}

.free-consultation-popup .top-content h3:before {
  left: 20px;
}

.free-consultation-popup .top-content h3:after {
  right: 20px;
}

.free-consultation-popup .top-content.inner-container {
  padding: 20px;
}

.free-consultation-popup .bottom-content.inner-container {
  padding: 30px 15px;
}

.free-consultation-popup .bottom-content .btn {
  max-width: 330px;
}

.free-consultation-popup .form-status {
  display: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  border: 1px solid #99be4f;
  background: #99be4f;
}

@media (max-width: 991.98px) {
  .free-consultation-popup .top-content h3 {
    font-size: 20px;
  }
  .free-consultation-popup .top-content h3:before,
  .free-consultation-popup .top-content h3:after {
    font-size: 30px;
    top: -5px;
  }
  .free-consultation-popup .top-content h3:before {
    left: 0px;
  }
  .free-consultation-popup .top-content h3:after {
    right: 0px;
  }
}

@media (max-width: 767.98px) {
  .form-control {
    font-size: 14px;
  }
}

/*----------------------------------------------------------

	## Additional Section

  ---------------------------------------------------------*/
.fs-7 {
  font-size: 14px;
}

.hero-section .row.pt-2r {
  padding-top: 2rem;
}

.mt-smol {
  margin-top: -0.25rem;
}
.needs {
  background-color: yellow;
}

.main-blue {
  background-color: 00557d;
}

.secondary-blue {
  background-color: #4d88a4;
}

.tri-blue {
  background-color: #99bbcb;
}

.bg-green {
  background-color: #3b5982;
}

.bg-lblue {
  background-color: #88a5ce;
}

.bg-light-blue {
  background-color: #dde5f1;
}

/* original - #00557d */
/* color of product - #6693CC */
/* darker - 3b5982 */
/* lighter - 88a5ce */
/* lightest - dde5f1 */

.med-blue {
  background-color: #6693cc;
}

.pr-3 {
  padding-right: 3rem;
}

.section-spacing-200 {
  padding: 200px 0 200px 0;
}

.section-spacing-150 {
  padding: 150px 0 150px 0;
}

.section-spacing-100 {
  padding: 100px 0 1cap 0;
}

.offer-box img {
  border: 1px solid #fff;
}

.how-works h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 15px;
}
.how-works p {
  line-height: 1.5;
  color: #000;
}

.accordion .accordion-section-title.active {
  color: #3b5982;
  border: 1px solid #3b5982;
}

.accordion .accordion-section-title.active:after {
  border-top: 7px solid #3b5982;
}

.accordion-section-content.open {
  border: 1px solid #3b5982;
  border-top: 0;
}

.accordion .accordion-section-title:hover {
  text-decoration: none;
  color: #3b5982;
}

footer {
  background-color: #0b0744;
}

a {
  color: #88a5ce;
}

.light-orange {
  background-color: #ed7600;
}

.orange {
  background-color: #ea4400;
}

.btn {
  background-color: #55b95d !important;
  border-radius: 8px;
}

.blue-brick {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  background-color: #3b5982;
}
.blue-brick .blue-brick__link {
  margin-bottom: 32px;
  padding: 12px 24px;
  border: 1px solid #fff;
  background-color: #1f2029;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s linear;
}
.blue-brick .blue-brick__link:hover {
  color: #1f2029;
  border-color: #1f2029;
  background-color: #ffeba7;
}
.blue-brick .blue-brick__list {
  position: relative;
  width: 100%;
  max-width: 1600px;
  display: grid;
  grid-auto-rows: 200px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .blue-brick .blue-brick__list {
    grid-auto-rows: 330px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list {
    grid-auto-flow: revert-layer;
    grid-auto-rows: initial;
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 3), 1fr));
    grid-template-rows: repeat(2, 1fr);
    height: 600px;
  }
}
.blue-brick .blue-brick__list .blue-brick__item {
  position: relative;
  flex: 1;
  display: flex;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item {
    position: static;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(1) {
    grid-row: -2;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(1)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(1)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    bottom: 0;
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(2) {
    grid-row: -2;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(2)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(2)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    bottom: 0;
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(3) {
    grid-row: -2;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(3)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(3)
    .blue-brick__item-description::after {
    bottom: 0;
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(4) {
    grid-row: -2;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(4)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(4)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    bottom: 0;
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(5) {
    grid-row: 0.5;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(5)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(5)
    .blue-brick__item-description {
    justify-content: flex-start;
    padding: 40px 0 0;
  }
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(5)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(6) {
    grid-row: 0.5;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(6)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(6)
    .blue-brick__item-description {
    justify-content: flex-start;
    padding: 40px 0 0;
  }
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(6)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(7) {
    grid-row: 0.5;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(7)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(7)
    .blue-brick__item-description {
    justify-content: flex-start;
    padding: 40px 0 0;
  }
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(7)
    .blue-brick__item-description::after {
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item:nth-child(8) {
    grid-row: 0.5;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(8)
  .blue-brick__item-description {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(8)
    .blue-brick__item-description {
    justify-content: flex-start;
    padding: 40px 0 0;
  }
  .blue-brick
    .blue-brick__list
    .blue-brick__item:nth-child(8)
    .blue-brick__item-description::after {
    background-color: rgba(255, 235, 167, 0.5);
    content: "";
    display: block;
    height: 150px;
    left: 100%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:nth-child(1)
  .blue-brick__item-figure {
  opacity: 1;
}
.blue-brick .blue-brick__list .blue-brick__item:hover {
  transition: 350ms;
}
.blue-brick .blue-brick__list .blue-brick__item:hover .blue-brick__item-figure {
  opacity: 1;
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:hover
  .blue-brick__item-description::before {
  opacity: 1;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:hover
    .blue-brick__item-description
    .blue-brick__item-title {
    font-size: 21px;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item:hover
  .blue-brick__item-description
  .blue-brick__excerpt {
  line-height: 1.6;
  padding: 20px;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item:hover
    .blue-brick__item-description
    .blue-brick__link {
    border-color: #fff;
    line-height: 1.6;
    opacity: 1;
    padding: 8px 20px;
  }
}
.blue-brick .blue-brick__list .blue-brick__item .blue-brick__item-figure {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition: 500ms;
}
@media (min-width: 1024px) {
  .blue-brick .blue-brick__list .blue-brick__item .blue-brick__item-figure {
    opacity: 0;
  }
}
.blue-brick .blue-brick__list .blue-brick__item .blue-brick__item-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.blue-brick .blue-brick__list .blue-brick__item .blue-brick__item-description {
  isolation: isolate;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  z-index: 1;
}
@media (min-width: 600px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item
    .blue-brick__item-description {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item
    .blue-brick__item-description {
    align-items: center;
    padding: 0 20px;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item
  .blue-brick__item-description::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 59, 94, 0) 0%,
    rgba(0, 41, 66, 0.8) 100%
  );
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item
    .blue-brick__item-description::before {
    opacity: 0;
  }
}
.blue-brick
  .blue-brick__list
  .blue-brick__item
  .blue-brick__item-description
  .blue-brick__item-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 350ms ease;
}
@media (min-width: 1024px) {
  .blue-brick
    .blue-brick__list
    .blue-brick__item
    .blue-brick__item-description
    .blue-brick__item-title {
    text-align: center;
  }
}

.blue-brick__item-excerpt {
  display: none;
}

.item-1:hover .blue-brick__item-excerpt.item-p-1,
.item-2:hover .blue-brick__item-excerpt.item-p-2,
.item-3:hover .blue-brick__item-excerpt.item-p-3,
.item-4:hover .blue-brick__item-excerpt.item-p-4,
.item-5:hover .blue-brick__item-excerpt.item-p-5,
.item-6:hover .blue-brick__item-excerpt.item-p-6 {
  display: block;
  padding: 0 1rem;
}

.wrap-img {
  width: 400px;
  color: #111;
  border-radius: 50%;
  text-align: center;
  float: right;
  shape-outside: ellipse();
  padding: 30px;
  margin-top: 1rem;
  background-clip: content-box;
}

@media (max-width: 767.98px) {
  .wrap-img {
    float: none;
  }
}

.clay-img {
  background-image: url("../img/grass.jpg");
}

.hr-row {
  margin-top: 8rem;
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(
    to right,
    transparent,
    rgb(48, 49, 51),
    transparent
  );
  height: 3px;
  width: 100%;
  max-width: 100%;
  z-index: 0;
  position: relative;
}

.hr-row div {
  content: url("../img/4402.png");
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}

.bg-slate-100 {
  background-color: rgb(241 245 249 / 1);
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.uppercase {
  text-transform: uppercase;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.max-w-900 {
  max-width: 900px;
}

.w-full {
  width: 100%;
}

img {
  display: block;
}

.py-75 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

h1.heading-lead {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 2px;
}

h6.heading-sub {
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.25;
  font-size: 32px;
  max-width: 920px;
}

.heading-sm {
  font-size: 50px;
}

@media (min-width: 1200px) {
  .h3,
  h3 {
    font-size: 2rem;
  }
}

.offer-section .container,
.important-section .container,
.accordion,
.wrapper,
.about-section .container,
.testimonial-section .container,
.what-else.container,
.get-here .container,
.guarantee-section .container,
.faq-section .container {
  max-width: 770px;
}

.faq-section {
  padding-bottom: 100px;
}

.offer-row {
  padding: 3rem 0 0 0;
}

ul li.item-4,
ul li.item-5,
ul li.item-6 {
  height: 200px;
  margin-top: 12rem;
  padding-top: 6rem;
}

ul li.item-4 .blue-brick__item-description,
ul li.item-5 .blue-brick__item-description,
ul li.item-6 .blue-brick__item-description {
  height: 200px;
}

ul li.item-1 .blue-brick__item-description,
ul li.item-2 .blue-brick__item-description,
ul li.item-3 .blue-brick__item-description {
  text-align: left;
  margin-top: -6rem;
  height: 200px;
}

.clay-quotes {
  width: 65%;
}

.clay-quotes p {
  margin-left: -1rem;
}

@media (max-width: 767.98px) {
  .clay-quotes {
    width: 90%;
  }
}

.cost .btn {
  padding: 4% 9%;
}

.backtotop {
  background-color: #55b95d !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  color: #2f4765;
  line-height: 1.35;
  letter-spacing: 1px;
}

.checkmark {
  display: inline-block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  background: #55b95d;
  border-radius: 50%;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 6px;
  margin-right: 1rem;
}

.checkmark:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #fff;
  left: 11px;
  top: 6px;
}

.checkmark:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #fff;
  left: 8px;
  top: 12px;
}

ul {
  list-style-type: none;
}

ul li {
  list-style-position: inside;
  padding: 10px 0 10px 20px;
  text-indent: -1.75em;
}

.what-else ul li {
  text-indent: -2em;
}

.strikethrough {
  position: relative;
}
.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 5px solid;
  border-color: #2f4765;
  z-index: -1;

  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-9deg);
}

.btn.add-to-cart {
  font-size: 48px;
}

.caption {
  font-size: 1rem;
  font-weight: 300;
}

.callout-bar {
  background: #c91d1d;
  color: #fff;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.callout-bar p {
  font-size: 24px;
}

.accordion p {
  font-size: 22px;
}

.mp-img-container {
  width: 150%;
  margin-left: -25%;
}

@media (max-width: 1199.98px) {
  .mp-img-container {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .accordion p {
    font-size: 16px;
  }
  h1.heading-lead {
    font-size: 51px;
  }
  .callout-bar p {
    font-size: 18px;
  }
}

.offer-end {
  padding-top: 2rem;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  column-gap: 1em;
  padding: 2em;
}
.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.column {
  display: flex;
  flex-direction: column;
}

.testimonial-wrapper {
  width: 77%;
  margin-left: 11.5%;
}

.testimonial-video .col {
  position:relative;
}

@media (max-width: 1050px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 0;
  }
  .innerBox {
    padding: 20px;
  }
}

@media (max-width: 800px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .column:nth-child(3) {
    display: none;
  }
}

@media (max-width: 550px) {
  .testimonial-wrapper {
    width: 100%;
    margin-left: 0px;
  }

  .testimonial-video .col {
    padding: 25% 0;
  }
  
  .testimonial-container {
    grid-template-columns: 2fr;
    gap: 0;
    padding: 1rem;
  }

  .column:nth-child(3) {
    display: flex;
  }

  .column:last-child {
    display: flex;
  }
  .innerBox img {
    width: 50px;
  }
}

/* Sales page additions */
.star {
  font-size: 14px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.star i {
  position: relative;

  display: inline-block;
  width: 0;
  height: 0;

  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 1.2em;

  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #fc0;
  border-left: 0.3em solid transparent;

  /* Controlls the size of the stars. */
  font-size: 14px;

  &:before,
  &:after {
    content: "";

    display: block;
    width: 0;
    height: 0;

    position: absolute;
    top: 0.6em;
    left: -1em;

    border-right: 1em solid transparent;
    border-bottom: 0.7em solid #fc0;
    border-left: 1em solid transparent;

    transform: rotate(-35deg);
  }

  &:after {
    transform: rotate(35deg);
  }
}

.star i:last-child {
  padding-left: 1rem;
}

.star span {
  font-style: italic;
  vertical-align: super;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .star span {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .star span {
    display: inline-block;
  }
}

.product-image {
  display: block;
}

.image-list li {
  margin: 0;
}

.product-image img,
.image-list img {
  width: 100%;
}

.product-image img:active {
  display: block;
  margin: 0 0 0.75rem 0;
}

.image-list {
  display: flex;
  overflow: hidden;
  padding-left: 0;
}

.image-list li {
  margin: 0 0.75rem 0 0;
  flex-basis: 100%;
}

.image-list li:nth-child(3) {
  margin: 0;
}
.image-list img {
  width: 100%;
  transition: opacity 0.3s ease;
  cursor: pointer;
  height: 97px;
}

.image-list img:hover {
  opacity: 0.7;
}

@keyframes fadeImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sales .left-col {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 3rem;
  padding-top: 85px;
}

.product-image {
  height: 350px;
}

.heading-lead {
  padding-top: 2rem;
}

.guarantee-img {
  display: inline-block;
  width: 18%;
  vertical-align: middle;
}

.guarantee-img img {
  width: 85px;
}

.guarantee-txt {
  padding-left: 1rem;
  width: 80%;
}

.sales .strikethrough {
  margin-right: 1rem;
}

.sales .btn {
  width: 100%;
}

.guarantee {
  padding: 1rem 2rem;
  border-radius: 8px;
  margin-top: -2.5rem;
}

.guarantee p {
  padding-top: 1rem;
  line-height: 40px;
}

.benefits {
  margin-top: -1rem;
}

@media (max-width: 991.98px) {
  .product-image {
    height: 275px;
  }
  .hero-section.sales h1 {
    font-size: 40px;
  }
  .guarantee-img {
    vertical-align: inherit;
  }
}

@media (max-width: 767.98px) {
  .sales .left-col {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 35px;
  }

  .heading-lead {
    padding-top: 1rem;
  }

  .guarantee p {
    line-height: initial;
  }
}
