/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

.custom-design-container {
  width: 100%;
  padding: 40px;
  background-color: #f9f9f9;
}

.custom-design-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2em;
  color: #333;
  font-weight: bold;
}

.section-description {
  font-size: 1.2em;
  color: #777;
}

.custom-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.custom-design-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.custom-design-item:hover {
  transform: translateY(-5px);
}

.item-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.item-title {
  font-size: 1.5em;
  margin-top: 15px;
  color: #333;
}

.item-description {
  font-size: 1em;
  color: #666;
  margin-top: 10px;
}

.item-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.item-link:hover {
  background-color: #0056b3;
}