@import url("https://fonts.googleapis.com/css?family=Poiret+One|Poppins:400,700");

* {
  box-sizing: border-box;
  margin: 0;
}

#wrapper {
  --theme-color: #6aa84f;
  --hover-color: #38761d;
  --selection-color: #45818e;
  --font-color: #000000;
  --border-color: #d9ead3;
  --border-width: 1px;
  --border-radius: 5px;
  --header-border-color: #d9ead3;
  --header-border-width: 2px;
  --header-bg-color: #fff;
  --header-underline-color: #d9ead3;
  --header-underline-width: 2px;
  --gallery-border-color: #d9ead3;
  --gallery-border-width: 1px;
  --gallery-border-radius: 5px;
  --why-us-bg: #f5f5f5;
  --tab-bg-color: #fff;
  --gallery-bg-color: #ffffff;

  background-color: #fff;
  border-top: 2px solid var(--theme-color);
  color: var(--font-color);
  font-family: "Poppins", sans-serif;
  margin: auto;
}

.header-container {
  background-color: var(--header-bg-color);
}

.gallery-container {
  background-color: var(--gallery-bg-color);
}

.main-container {
  padding-top: 30px;
}

h1,
h3,
h4 {
  font-weight: 400;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: var(--font-color);
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover,
a:focus {
  color: initial;
  text-decoration: none;
}

.button {
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
}

.button > span {
  position: relative;
}

.button > span > span::after {
  background-color: var(--hover-color);
  content: "";
  height: 2px;
  opacity: 0;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: opacity 0.5s;
  width: 100%;
}

.button:hover > span > span::after,
.button:focus > span > span::after {
  opacity: 1;
}

#signup_button {
  background-color: var(--theme-color);
}

#signup_button:hover,
#signup_button:focus {
  background-color: var(--hover-color);
}

#action-buttons > a {
  background-color: rgba(106, 168, 79, 0.15);
  border-radius: var(--border-radius);
  color: var(--theme-color);
  margin-right: 10px;
}

img {
  max-width: 100%;
}

.container {
  padding-right: 0;
  padding-left: 0;
  max-width: 1050px;
  margin: auto;
}

.container::after {
  clear: both;
  content: "";
  display: block;
}

.left {
  float: left;
}

.right {
  float: right;
}

#wrapper h3 {
  color: var(--theme-color);
  font-size: 14px;
}

/* Header section */
#header {
  border-bottom-width: var(--header-underline-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-underline-color);
  display: flex;
  margin: auto;
  max-width: 1050px;
  min-height: 112px;
  padding: 15px 0;
}

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

.logo {
  max-height: 100px;
}

#greeting_and_nav_container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#greeting {
  font-size: 12px;
}

#nav {
  font-size: 14px;
  margin-top: 50px;
}

#nav ul li {
  display: inline-block;
  margin-left: 2.5rem;
}

#nav ul li:first-child {
  margin-left: 0;
}

/* Header presets */
.preset_2#header {
  flex-direction: row-reverse;
}

.preset_2 .text-right {
  text-align: left;
}

.preset_3#header {
  flex-direction: column;
}

.preset_3 .text-right {
  text-align: center;
}

#header.preset_3 #greeting {
  margin-top: 15px;
}

.preset_3 #nav {
  margin-top: 15px;
}

.preset_4 #greeting_and_nav_container {
  text-align: left;
}

.preset_4 #brand {
  margin-right: 60px;
}
/* Header section end */

#categories ul li a,
#helpful_links ul li a {
  color: #6aa84f;
}

#nav ul li a::after,
#categories ul li a::after,
#helpful_links ul li a::after,
#view_all_reviews a::after {
  background-color: var(--hover-color);
  content: "";
  display: block;
  height: 2px;
  opacity: 0;
  transition: opacity 0.5s;
}

#nav ul li a::after {
  height: 2px;
}

#nav ul li a:hover::after,
#categories ul li a:hover::after,
#helpful_links ul li a:hover::after,
#view_all_reviews a:hover::after {
  opacity: 1;
}

.gallery .gallery-thumb:hover,
.gallery .gallery-thumb:focus {
  border-color: var(--hover-color) !important;
}

.gallery input:checked + .gallery-thumb {
  border-color: var(--selection-color);
}

.gallery input:checked + .gallery-thumb + .gallery-base {
  opacity: 1;
}

/* Common gallery width scroll start */
#hero {
  display: flex;
  min-height: 540px;
  padding: 15px 0 30px;
  position: relative;
}

#hero #gallery {
  margin: auto;
}

.preset_3 #gallery,
.preset_4 #gallery {
  order: 2;
}

.gallery {
  min-height: 500px;
  position: relative;
  padding-left: 2.25%;
  text-align: center;
  width: 670px;
}

.preset_5 .gallery,
.preset_6 .gallery,
.preset_7 .gallery,
.preset_8 .gallery {
  width: 555px;
}

.preset_5 .gallery,
.preset_6 .gallery,
.preset_7 .gallery,
.preset_8 .gallery {
  min-height: 610px;
}

.gallery .gallery-thumb {
  border-width: var(--gallery-border-width);
  border-style: solid;
  border-color: var(--gallery-border-color);
  border-radius: var(--gallery-border-radius);
  cursor: pointer;
  height: 60px;
  width: 60px;
  position: relative;
  overflow: hidden;
  transition: border 0.5s;
  z-index: 1;
}

.preset_1 .gallery .gallery-thumb,
.preset_2 .gallery .gallery-thumb,
.preset_3 .gallery .gallery-thumb,
.preset_4 .gallery .gallery-thumb {
  top: 424px;
}

.preset_2 .gallery .gallery-thumb {
  right: 55px;
}

.gallery .gallery-base {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s;
  width: 500px;
  max-height: 500px;
}

.gallery .gallery-thumb > img {
  max-width: 50px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}

.gallery .gallery-thumb:hover,
.gallery .gallery-thumb:focus {
  border-color: var(--hover-color) !important;
}

.gallery input {
  display: none;
}

.gallery input:checked + .gallery-thumb + .gallery-base {
  opacity: 1;
}

.gallery {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
}

.preset_3 .gallery {
  justify-content: flex-end;
}

.preset_2 .gallery {
  justify-content: flex-end;
}

.gallery-thumb {
  min-width: 52px;
  display: none;
}

.gallery input#scroll-left-input:checked ~ .gallery-thumb:nth-child(-n + 22),
.gallery input#scroll-right-input:checked ~ .gallery-thumb:nth-child(n + 22) {
  display: inline-block;
}

.preset_4 .gallery input#scroll-left-input:checked ~ .gallery-thumb:nth-child(-n + 22),
.preset_4 .gallery input#scroll-right-input:checked ~ .gallery-thumb:nth-child(n + 22) {
  left: 55px;
}

.gallery input#scroll-left-input:checked ~ .scroll-left,
.gallery input#scroll-right-input:checked ~ .scroll-right {
  /* color: var(--theme-color); */
}

.scroll-left,
.scroll-right {
  position: absolute;
  cursor: pointer;
  left: 22px;
  color: rgba(0, 0, 0, 0.6);
}

.scroll-left {
  top: -4px;
  height: 20px;
  width: 20px;
}

.scroll-right {
  bottom: -6px;
  height: 20px;
  width: 20px;
}

.preset_2 .scroll-left,
.preset_2 .scroll-right {
  left: unset;
  right: 75px;
}

.preset_3 .scroll-left,
.preset_3 .scroll-right {
  left: unset;
  right: 18px;
}

.preset_4 .scroll-left,
.preset_4 .scroll-right {
  left: 77px;
}

.preset_5 .scroll-right,
.preset_6 .scroll-right,
.preset_8 .scroll-right {
  left: 486px;
}

.preset_5 .scroll-right,
.preset_7 .scroll-right {
  left: unset;
  right: -5px;
}

.preset_5 .scroll-right,
.preset_6 .scroll-right,
.preset_7 .scroll-right,
.preset_8 .scroll-right {
  bottom: 50px;
}

.preset_5 .scroll-left,
.preset_6 .scroll-left,
.preset_7 .scroll-left,
.preset_8 .scroll-left {
  bottom: 50px;
  top: unset;
  left: -4px;
}

.preset_5 .scroll-left,
.preset_7 .scroll-left {
  top: unset;
  left: unset;
  right: 486px;
}

.gallery .gallery-thumb {
  position: absolute;
}

.gallery .gallery-thumb:nth-of-type(2),
.gallery .gallery-thumb:nth-of-type(9) {
  top: 16px;
}

.gallery .gallery-thumb:nth-of-type(3),
.gallery .gallery-thumb:nth-of-type(10) {
  top: 84px;
}

.gallery .gallery-thumb:nth-of-type(4),
.gallery .gallery-thumb:nth-of-type(11) {
  top: 152px;
}

.gallery .gallery-thumb:nth-of-type(5),
.gallery .gallery-thumb:nth-of-type(12) {
  top: 220px;
}

.gallery .gallery-thumb:nth-of-type(6),
.gallery .gallery-thumb:nth-of-type(13) {
  top: 288px;
}

.gallery .gallery-thumb:nth-of-type(7),
.gallery .gallery-thumb:nth-of-type(14) {
  top: 356px;
}

.gallery.thumb-right .gallery-thumb {
  right: 0;
}
.gallery.thumb-right .gallery-thumb:nth-of-type(n + 8) {
  right: 60px;
  left: initial;
}

.gallery .gallery-base {
  top: 50%;
  left: 116px;
  transform: translateY(-50%);
}

.preset_2 .gallery .gallery-base {
  left: 0px;
}

.preset_7 #gallery,
.preset_5 #gallery {
  order: 2;
}

.preset_5 .gallery .gallery-base,
.preset_6 .gallery .gallery-base,
.preset_7 .gallery .gallery-base,
.preset_8 .gallery .gallery-base {
  top: 41%;
  left: 0px;
}

.preset_7 .gallery .gallery-base,
.preset_5 .gallery .gallery-base {
  left: unset;
  right: 0;
}

.preset_3 .gallery .gallery-base {
  left: 55px;
}

.preset_4 .gallery .gallery-base {
  left: 170px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(2),
.preset_8 .gallery .gallery-thumb:nth-of-type(2),
.preset_6 .gallery .gallery-thumb:nth-of-type(9),
.preset_8 .gallery .gallery-thumb:nth-of-type(9) {
  top: unset;
  bottom: 30px;
  left: 16px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(3),
.preset_8 .gallery .gallery-thumb:nth-of-type(3),
.preset_6 .gallery .gallery-thumb:nth-of-type(10),
.preset_8 .gallery .gallery-thumb:nth-of-type(10) {
  top: unset;
  bottom: 30px;
  left: 84px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(4),
.preset_8 .gallery .gallery-thumb:nth-of-type(4),
.preset_6 .gallery .gallery-thumb:nth-of-type(11),
.preset_8 .gallery .gallery-thumb:nth-of-type(11) {
  top: unset;
  bottom: 30px;
  left: 152px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(5),
.preset_8 .gallery .gallery-thumb:nth-of-type(5),
.preset_6 .gallery .gallery-thumb:nth-of-type(12),
.preset_8 .gallery .gallery-thumb:nth-of-type(12) {
  top: unset;
  bottom: 30px;
  left: 220px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(6),
.preset_8 .gallery .gallery-thumb:nth-of-type(6),
.preset_6 .gallery .gallery-thumb:nth-of-type(13),
.preset_8 .gallery .gallery-thumb:nth-of-type(13) {
  top: unset;
  bottom: 30px;
  left: 288px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(7),
.preset_8 .gallery .gallery-thumb:nth-of-type(7),
.preset_6 .gallery .gallery-thumb:nth-of-type(14),
.preset_8 .gallery .gallery-thumb:nth-of-type(14) {
  top: unset;
  bottom: 30px;
  left: 356px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(8),
.preset_8 .gallery .gallery-thumb:nth-of-type(8),
.preset_6 .gallery .gallery-thumb:nth-of-type(15),
.preset_8 .gallery .gallery-thumb:nth-of-type(15) {
  top: unset;
  bottom: 30px;
  left: 424px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(2),
.preset_7 .gallery .gallery-thumb:nth-of-type(2),
.preset_5 .gallery .gallery-thumb:nth-of-type(9),
.preset_7 .gallery .gallery-thumb:nth-of-type(9) {
  top: unset;
  bottom: 30px;
  right: 424px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(3),
.preset_7 .gallery .gallery-thumb:nth-of-type(3),
.preset_5 .gallery .gallery-thumb:nth-of-type(10),
.preset_7 .gallery .gallery-thumb:nth-of-type(10) {
  top: unset;
  bottom: 30px;
  right: 356px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(4),
.preset_7 .gallery .gallery-thumb:nth-of-type(4),
.preset_5 .gallery .gallery-thumb:nth-of-type(11),
.preset_7 .gallery .gallery-thumb:nth-of-type(11) {
  top: unset;
  bottom: 30px;
  right: 288px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(5),
.preset_7 .gallery .gallery-thumb:nth-of-type(5),
.preset_5 .gallery .gallery-thumb:nth-of-type(12),
.preset_7 .gallery .gallery-thumb:nth-of-type(12) {
  top: unset;
  bottom: 30px;
  right: 220px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(6),
.preset_7 .gallery .gallery-thumb:nth-of-type(6),
.preset_5 .gallery .gallery-thumb:nth-of-type(13),
.preset_7 .gallery .gallery-thumb:nth-of-type(13) {
  top: unset;
  bottom: 30px;
  right: 152px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(7),
.preset_7 .gallery .gallery-thumb:nth-of-type(7),
.preset_5 .gallery .gallery-thumb:nth-of-type(14),
.preset_7 .gallery .gallery-thumb:nth-of-type(14) {
  top: unset;
  bottom: 30px;
  right: 84px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(8),
.preset_7 .gallery .gallery-thumb:nth-of-type(8),
.preset_5 .gallery .gallery-thumb:nth-of-type(15),
.preset_7 .gallery .gallery-thumb:nth-of-type(15) {
  top: unset;
  bottom: 30px;
  right: 16px;
}

.preset_1 i.fas.fa-chevron-right::before,
.preset_2 i.fas.fa-chevron-right::before,
.preset_3 i.fas.fa-chevron-right::before,
.preset_4 i.fas.fa-chevron-right::before {
  content: "\f078";
}

.preset_1 i.fas.fa-chevron-left::before,
.preset_2 i.fas.fa-chevron-left::before,
.preset_3 i.fas.fa-chevron-left::before,
.preset_4 i.fas.fa-chevron-left::before {
  content: "\f077";
}
/* Common gallery with scroll end */

#description {
  font-size: 14px;
}

#description ul {
  list-style: initial;
}

#description strong {
  font-weight: 700;
}

.title {
  font: 22px "Poiret One", cursive;
}

.label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

#price {
  color: #c00;
  font-size: 28px;
}

.title,
#price_container,
#why-us {
  margin-bottom: 30px;
}

#why-us ul li {
  background-color: var(--why-us-bg);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  padding: 10px 10px 10px 70px;
  position: relative;
  text-align: left;
}

#why-us ul li i {
  color: var(--theme-color);
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.why_us__heading,
.why_us__content {
  font-size: 12px;
  margin-bottom: 0;
  min-height: 15px;
}

.why_us__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.panel {
  background-color: transparent;
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 13px;
  padding: 0;
}

.panel-header,
.tab-header {
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
}

.panel-header {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  color: var(--theme-color);
}

.panel-header h3 {
  margin-bottom: 0;
  padding: 10px 14px;
}

.panel-content {
  padding: 15px;
}

.panel-content p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.tab {
  margin-bottom: 12px;
  position: relative;
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

.tab .tab-header {
  background-color: #fff;
  position: absolute;
  top: 0;
  text-align: center;
  width: 20%;
  z-index: 1;
  color: var(--theme-color);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  transition: all 0.5s;
  padding: 10px 14px;
}

.tab .tab-header:nth-of-type(1) {
  left: 0;
}
.tab .tab-header:nth-of-type(2) {
  left: 20%;
}
.tab .tab-header:nth-of-type(3) {
  left: 40%;
}
.tab .tab-header:nth-of-type(4) {
  left: 60%;
}
.tab .tab-header:nth-of-type(5) {
  left: 80%;
}

.tab .tab-content {
  display: none;
  padding: 55px 15px 15px;
  opacity: 0;
  transition: opacity 0.5s;
  width: 100%;
}

.tab input {
  display: none;
}

.tab-header:first-of-type {
  border-top-left-radius: var(--border-radius);
}

.tab-header:last-of-type {
  border-top-right-radius: var(--border-radius);
}

.tab input:checked + .tab-header {
  background-color: var(--tab-bg-color);
  border-color: var(--selection-color);
  color: var(--selection-color);
}

.tab .tab-header:hover,
.tab .tab-header:focus {
  border-color: var(--hover-color) !important;
  color: var(--hover-color) !important;
}

.tab input:checked + .tab-header + .tab-content {
  display: block;
  opacity: 1;
}

.tab-content p {
  font-size: 13px;
  margin-bottom: 1em;
}

.tab-content ul {
  list-style-type: initial;
}

.tab-content p:last-child {
  margin-bottom: 0;
}

#main {
  border-bottom: var(--header-underline-width) solid var(--header-underline-color);
}

#mid_left {
  width: 19.75%;
}

#mid_right {
  width: 79%;
}

#category_list {
  font-size: 13px;
}

#categories ul,
#helpful_links ul {
  margin-bottom: 0;
}

#categories li,
#helpful_links li {
  margin-bottom: 10px;
}

#categories li:last-child,
#helpful_links li:last-child {
  margin-bottom: 0;
}

#helpful_links a {
  font-size: 13px;
}

#newsletter {
  background-color: #274e13;
  border-radius: var(--border-radius);
  color: #fff;
  margin-bottom: 10px;
  padding: 18px;
  text-align: center;
}

#newsletter h3 {
  text-transform: uppercase;
}

#newsletter #newsletter_icon {
  color: var(--theme-color);
  font-size: 2.5rem;
  margin: 10px 0;
}

#newsletter p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

#mid_left_banners {
  text-align: center;
}

#mid_left_banners > a {
  margin-bottom: 10px;
}

#technical_information > .panel-content > * {
  margin-top: 15px;
  margin-bottom: 30px;
}

#item_specifics_heading {
  margin-bottom: 10px;
}

#item_specifics li {
  border-bottom: 1px solid #f5f5f5;
  float: left;
  padding-bottom: 15px;
  text-transform: uppercase;
  width: 48.75%;
}

#item_specifics li:not(:last-of-type) {
  margin-bottom: 15px;
  padding-left: 5px;
}

#item_specifics li strong {
  color: #38761d;
  display: block;
  font-size: 13px;
}

#item_specifics li span {
  font-size: 11px;
}

#custom_block {
  margin-top: 30px !important;  /* update custom block spacing problem 19/1/2024 */
}

#custom_block_content {
  font-size: 14px;
  margin-top: 7px;
}

#description_banner {
  margin-bottom: 8px;
  text-align: center;
}

#description_banner_img_url {
  border-radius: var(--border-radius);
}

#customer_reviews {
  color: #274e13;
  width: 100%;
}

#customer_reviews tr th {
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  text-align: left;
}

#customer_reviews tr th:first-child {
  width: 75%;
}

#customer_reviews tr th:last-child {
  width: 25%;
}

#customer_reviews tr td {
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  padding: 10px 10px 10px 20px;
  position: relative;
}

#customer_reviews tr td:nth-child(odd) i {
  color: #80c366;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#customer_reviews tr td:nth-child(even) {
  padding-left: 0;
}

#view_all_reviews {
  margin-bottom: 0;
  padding-top: 10px;
}

#mini_banners {
  margin-top: 15px;
  text-align: center;
}

#mini_banners a {
  margin-right: 8px;
  margin-bottom: 10px;
  max-width: 265px;
}

.mini_banner_url_cheesecake_d4 {
    overflow: hidden !important;
}

.mini_banner_url_cheesecake_d4 > img {
  border-radius: var(--border-radius) !important;
  transition: 0.5s all ease-in-out !important;
}

.mini_banner_url_cheesecake_d4:hover img {
    transform: scale(1.1) !important;
}

#related_products {
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

#related_products h3 {
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  margin-bottom: 15px;
  padding: 10px 15px;
}

#related_products .product {
  padding: 15px;
  text-align: center;
  width: 31.33%;
}

#related_products .product > a {
  height: 229px;
  overflow-y: hidden;
}

#related_products .product img {
  background-image: url("https://etg.boostontime.com/public/img/no-image.png");
  max-width: 100%;
}

#related_products .product h4 {
  font: 13px "Poppins", sans-serif;
  padding: 1rem;
}

#related_products .product h4 a:hover {
  color: var(--hover-color) !important;
}

#related_products .product .price {
  color: var(--theme-color);
  font-size: 15px;
}

#footer {
  padding: 25px 0;
}

#footer.text-center.preset_2 {
  text-align: left;
}

#footer.text-center.preset_3 {
  text-align: right;
}

.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.hide {
  display: none !important;
}
.margin-right-0 {
  margin-right: 0 !important;
}

#title-price-why_us.full-width {
  text-align: center;
  width: 100%;
}

#title-price-why_us.full-width #why-us ul {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 0 10px;
}

#title-price-why_us.vc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1050px) {
  #header {
    padding: 12px 0;
    justify-content: center;
  }

  #logo_container {
    float: none;
    text-align: center;
  }

  #greeting_and_nav_container {
    display: none;
  }

  #hero #gallery {
    width: 100%;
  }

  #title-price-why_us {
    width: 100%;
  }

  .title {
    margin-top: 15px;
  }

  #price_container {
    margin: 30px 0;
  }
}
