body {
  transition: 0.3s all;
}

/*** Button Widget ***/
.mocco_button {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.mocco_button.regular {
  background: #222;
  border: 1px solid #222;
  color: #fff;
}
.mocco_button.regular:hover,
.mocco_button.regular:focus {
  background: transparent;
  color: #222;
}

.mocco_button.border {
  background: transparent;
  border: 1px solid #222;
  color: #222;
}
.mocco_button.border:hover,
.mocco_button.border:focus {
  background: #222;
  color: #fff;
}

.mocco_button.text {
  color: #222;
}
.mocco_button.text:hover,
.mocco_button.text:focus {
  color: rgba(0, 0, 0, 0.3);
}

.mocco_button.underline-thin::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  bottom: -3px;
  left: 0;
  border-radius: 1rem;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.mocco_button.underline-thin:hover::before,
.mocco_button.underline-thin:focus::before {
  transform-origin: left;
  transform: scaleX(1);
}

.mocco_button.underline-thik::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  bottom: -3px;
  left: 0;
  border-radius: 1rem;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.mocco_button.underline-thik:hover::before,
.mocco_button.underline-thik:focus::before {
  transform-origin: left;
  transform: scaleX(1);
}

/*** Banner Widget ***/
.mocco_banner_container {
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  overflow: hidden;

  display: flex;
  justify-content: start;
  align-items: start;
}
.mocco_banner_wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

/*** Product Grid Widget ***/
.mocco_product_grid_widget {
  gap: 1rem;
}

/*** Product Grid Widget ***/
.mocco_elementor_banner_two_col_container {
  display: flex;
}
.mocco_elementor_banner_two_col_content_wrapper {
  display: flex;
}
.mocco_elementor_banner_two_col_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mocco_elementor_banner_two_col_content .title span {
  background: #ff9090;
  padding: 2px 8px;
  color: #222;
}

.mocco_elementor_banner_two_col_image_wrapper {
  flex: 1;
}

/*** Product Grid Widget ***/
.mocco_modern_image_container {
  display: flex;
}
.mocco_modern_image_link {
  width: 100%;
}

/*** Product Grid Widget ***/
.mocco_image_gallery_grid {
  gap: 1rem;
}
.mocco_image_gallery_grid .mocco_image_gallery_image {
  object-fit: cover;
  width: 100%;
}

/*** Product Grid Widget ***/
.mocco_blockquote_container {
  display: flex;
}
.mocco_blockquote_content {
  font-size: 1.5rem;
  color: #333;
  letter-spacing: 1px;
  line-height: 2rem;
}
.mocco_blockquote_author {
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
}
.mocco_blockquote_author_position {
  font-weight: 300;
  color: #555;
}
.mocco_blockquote_image img {
  border-radius: 12rem;
}

/*** Product Grid Widget ***/
.mocco_site_logo_container {
  display: flex;
}
.mocco_site_logo_container a {
  display: block;
}

/*** Icon Widget ***/
.mocco_icon_container {
  display: flex;
}

/*** Icon Box Widget ***/
.mocco_icon_box_container {
  display: flex;
  justify-content: center;
}
.mocco_icon_box_wrapper {
  display: flex;
  flex-direction: column;

  align-items: center;
  width: 50%;
}
.mocco_icon_box_wrapper > i,
.mocco_icon_box_wrapper > a > i {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.mocco_icon_box_title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.mocco_icon_box_subtitle {
  margin-bottom: 1.5rem;
}

/*** Product Category Banner ***/
.mocco_product_category_banner_container {
  display: flex;
}
.mocco_product_category_banner_wrapper {
  position: relative;
  overflow: hidden;
}
.mocco_product_category_banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
}
.mocco_product_category_banner_wrapper > img,
.mocco_product_category_banner_wrapper > a > img {
  object-fit: cover;
}
.mocco_product_category_banner_content h2,
.mocco_product_category_banner_content a {
  color: #fff;
}

/*** Text Editor ***/
.mocco_text_editor_content h1 {
	font-size: 2rem;
	line-height: 4rem;
}
.mocco_text_editor_content h2 {
	font-size: 1.75rem;
	line-height: 3.5rem;
}
.mocco_text_editor_content h3 {
	font-size: 1.5rem;
	line-height: 3rem;
}
.mocco_text_editor_content h4 {
	font-size: 1.25rem;
	line-height: 2.5rem;
}
.mocco_text_editor_content h5 {
	font-size: 1.15rem;
	line-height: 2.3rem;
}
.mocco_text_editor_content h6 {
	font-size: 1rem;
	line-height: 2rem;
}
.mocco_text_editor_content p {
	line-height: 1.5rem;
	margin-bottom:0.5rem;
}

/****** Responsive ******/
@media (max-width: 1199px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
  .mocco_archive_blog_grid .post-card-style-1,
  .mocco_archive_blog_grid .post-card-style-2,
  .mocco_archive_blog_grid .post-card-style-3 {
    border: none;
  }
  .mocco_archive_blog_grid .post-card-style-1:hover,
  .mocco_archive_blog_grid .post-card-style-2:hover,
  .mocco_archive_blog_grid .post-card-style-3:hover {
    border: none;
  }
}

@media (max-width: 575px) {
}
