/*------------------------------------------------------------------
[Table of styles content]

1 - Hero
2 - Översikt
3 - Featured
4 - Trust
5 - Process
6 - Kontakta oss
--------------------------------------------------------------------*/
  /*-----------------------------------
      1 - Hero
  ------------------------------------*/

  #hero-home {
    position: relative;
    background-image: url('../images/Collaborative\ Brainstorming\ Session.jpeg'); /* Replace with the path to your background image */
    background-size: cover;
    background-position: center;
    height: 500px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  }
  
  /* Overlay Styling */
  #hero-home .overlay-mote {
    position: absolute;
    top: -160px; /* Adjust this to cover the height of the header */
    left: 0;
    width: 100%;
    height: calc(100% + 160px); /* Extends the overlay to cover both hero and header */
    background-color: rgba(17, 8, 72, 0.8);
    z-index: 1;
  }
  
  /* Content Styling */
  #hero-home .content {
    position: relative;
    z-index: 2; /* Ensures text content appears above the overlay */
  }
  
  #hero-home .content h1 {
    font-size: 48px;
    font-weight: bold;
  
  }
  
  #hero-home .content p {
    font-size: 18px;
    margin-top: 10px;
  }



  @media (max-width: 768px) {
    #hero-home {
      height: 450px; /* Adjust as needed */
    }

  }
/*-----------------------------------
      3 - Featured
------------------------------------*/
.featured {
  padding: 80px 0;
  background-color: #fafafa;
}

.featured p {
  margin: 35px 0 53px;
}

.featured .media i {
  font-size: 24px;
  color: #ee1515;
}

.featured .media h5 {
  text-transform: uppercase;
  color: #26264b;
}

.featured .btn {
  margin-top: 80px;
}

.featured-img {
  position: relative;
  height: 530px;
  margin-top: 60px;
}

.featured-big {
  position: absolute;
  bottom: 0;
  right: 0;
}

.featured-small {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 25px 0 0;
  background-color: #fff;
}



/*-----------------------------------
    4 - Trust
------------------------------------*/
  .trust {
    padding: 75px 0;
    background-color: #26264b;
    color: #ddd;
    position: relative;
  }
  
  .trust .title {
    margin-bottom: 46px;
  }
  
  .trust h1 {
    color: #fff;
  }
  
  .trust h5 {
    font-size: 24px;
    color: #fefefe;
    margin: 28px 0 12px;
  }
  
  .trust ul {
    color: #fff;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  
  .trust li {
    margin-bottom: 15px;
  }
  
  .trust .gallery img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  
  .trust .gal-img {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  
  .trust .gal-img i {
    font-size: 72px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
  }
  
  .trust .gal-img::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  
  .trust .gal-img:hover {
    cursor: pointer;
  }
  
  .trust .gal-img:hover i {
    opacity: 1;
  }
  
  .trust .gal-img:hover::after {
    opacity: 1;
  }
  
  .trust .gal-img3 {
    top: -50%;
    left: 50%;
  }
  
  .arrow-points {
    margin: 20px 0; /* Add some margin above and below the points */
  }

  .arrow-point {
    position: relative;
    padding-left: 50px; /* Space for the arrow circle */
    margin-bottom: 15px; /* Space between each point */
    color: #ffffff; /* Text color to match your theme */
    line-height: 1.6; /* Line height for readability */
  }

  .arrow-point::before {
    content: '\2192'; /* Unicode for right arrow (→) */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    background-color: #ff5555; /* Red background color */
    color: #ffffff; /* Arrow color inside the circle */
    border-radius: 50%; /* Make it a circle */
    width: 30px; /* Width of the circle */
    height: 30px; /* Height of the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Adjust the arrow size */
    font-weight: bold; /* Make the arrow bold */
    border: 2px solid #ff5555; /* Red border around the circle */
  }

/*-----------------------------------
      5 - Process
------------------------------------*/
  .services {
    padding: 50px 0 50px;
  }
  
  .services .title {
    margin-bottom: 20px;
    color: red;
  }
  
  .services .media {
    margin: 40px 0;
  }
  
  .services h5 {
    color: #26264b;
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .icon-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;  
    border: 3px solid #c0392b; 
    color: #c0392b;   
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .lead-success .box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-success .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.lead-success .box .icon {
    font-size: 40px;
    color: #ff0000; /* Adjust the color to match your theme */
    margin-bottom: 15px;
}

.lead-success .box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333; /* Adjust to suit your theme */
}

.lead-success .box p {
    font-size: 16px;
    color: #666666;
}

/*-----------------------------------
    6 - Kontakta oss
------------------------------------*/
/* General Styling */
.mote-contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.mote-contact-info {
  flex: 1;
  max-width: 40%;
}

.mote-breadcrumb {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.mote-contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #26264b;
}

.mote-contact-description {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.mote-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mote-contact-column {
  width: 50%;
}

.mote-contact-column h4 {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #333;
}

.mote-contact-column p {
  font-size: 0.9rem;
  color: #666;
}

/* Form Styling */
.mote-contact-form-container {
  flex: 1;
  max-width: 50%;
  background-color: #f4f7f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mote-form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26264b;
}

.mote-form-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.mote-contact-form input,
.mote-contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
}

.mote-contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Privacy policy styling */
.mote-privacy-policy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea {
    width: 100%;
}

.mote-privacy-policy input[type="checkbox"] {
  margin-right:10px;
}

.mote-privacy-policy label {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

.mote-privacy-policy label a {
  color: #d9534f;
  text-decoration: underline;
}

.mote-privacy-policy label a:hover {
  text-decoration: underline;
}

/* Button styling */
.mote-send-button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #26264b;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevents button text from wrapping */
  flex: 0 1 150px; /* Fixes button width */
}

.mote-send-button:hover {
  background-color: #333;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .mote-contact-section {
    flex-direction: column; /* Stack the columns vertically */
    align-items: center;
    gap: 20px; /* Reduce gap for mobile */
    padding: 20px 10px; /* Reduce padding for mobile */
  }

  .mote-contact-info, .mote-contact-form-container {
    max-width: 100%; /* Set both sections to full width */
  }
}

/* Mobile-friendly adjustments for form */
@media (max-width: 768px) {
  .mote-contact-form-container {
    padding: 20px; /* Reduce padding for mobile */
  }

  .mote-contact-title {
    font-size: 1.8rem; /* Smaller title for mobile */
  }
}
 /*-----------------------------------
      2 - Översikt
  ------------------------------------*/
  .title {
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .title h6 {
    letter-spacing: 4px;
  }
  
  .title h1 {
    font-size: 35px;
    margin-bottom: 50px;
  }
  
  .title .title-blue {
    color: #26264b;
  }
  
  .title .title-primary {
    color: #ee1515;
  }
  
  .services .title {
    margin-bottom: 20px;
  }

.översiktmb-services {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.översiktmb-content {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.översiktmb-left {
  flex: 2;
}

.översiktmb-right {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.översiktmb-heading {
  font-size: 24px;
  color: #26264b; /* Red color for headings */
  margin-top: 20px;
}

.översiktmb-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.översiktmb-left a {
  color: #e53935; /* Red color for links */
  text-decoration: none;
}

.översiktmb-left a:hover {
  text-decoration: underline;
}

.översiktmb-right h3 {
  font-size: 20px;
  color: #e53935;
  margin-bottom: 20px;
}

.översiktmb-service {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.översiktmb-service i {
  font-size: 24px;
  color: #e53935;
  margin-right: 15px;
}

.översiktmb-service span {
  font-size: 16px;
  color: #333;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .översiktmb-content {
      flex-direction: column;
  }

  .översiktmb-right {
      margin-top: 20px;
      padding: 15px;
  }

  .översiktmb-heading {
      font-size: 20px;
  }

  .översiktmb-left p,
  .översiktmb-service span {
      font-size: 14px;
  }

  .översiktmb-right h3 {
      font-size: 18px;
  }

  .översiktmb-service i {
      font-size: 20px;
  }

  .services {
    padding: 40px 0;
  }
}



 /*-----------------------------------
      2 - ABM Stats
  ------------------------------------*/

.mote-services-section {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 40px 40px;
}

.mote-service-box {
  background-color: #fafafa;
  color: #26264b;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1;
  transition: transform 0.3s;
}

.mote-service-box:hover {
  transform: translateY(-5px);
}

.mote-service-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 2px solid #e53935;
  padding-bottom: 5px;
}

.mote-service-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #26264b;
}

.mote-service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.mote-service-list li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #26264b;
}

.mote-service-list li i {
  color: #e53935;
  margin-right: 8px;
}

.mote-service-link {
  color: #e53935;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.mote-service-link i {
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.mote-service-link:hover i {
  margin-left: 8px;
}



.mote-statistics-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  background-color: #f8f8f8; /* Light background */
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

.mote-statistic-box {
  flex: 1;
  margin: 0 20px;
}

.mote-statistic-number {
  font-size: 5rem;
  font-weight: bold;
  color: #26264b;
  margin: 0;
}

.mote-statistic-description {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .mote-services-section {
      flex-direction: column;
      padding: 10px;
  }

  .mote-service-box {
      max-width: 100%;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mote-statistics-section {
      flex-direction: column;
      padding: 20px;
  }

  .mote-statistic-box {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .mote-statistic-number {
      font-size: 4.5rem;
  }

  .mote-statistic-description {
      font-size: 0.9rem;
      max-width: 100%;
  }
}

/* Mobile responsiveness */
@media (max-width: 850px) {
  .mote-services-section {
      flex-direction: column;
      padding: 10px;
  }

  .mote-service-box {
      max-width: 100%;
  }
}