.w-85 {
  width: 85%;
  margin: 0 auto;
}

hr {
  color: #758db9;
}

header {
  .head-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0px;

    .icons {
      display: flex;
      align-items: center;
      gap: 1rem;

      a {
        display: flex;
        align-items: center;
        gap: 0.5rem;

        img {
          width: 20px;
        }

        &:hover {
          color: #758db9;
          transition: 0.3s;
        }
      }
    }

    .apply-btn {
      background-color: #758db9;
      color: #fff;
      padding: 8px 20px;
      border: #758db9;
      border-radius: 10px;
      font-family: poppins-500;
    }
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .header {
    padding: 0.5rem 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    a {
      display: flex;
      align-items: center;
      gap: 1rem;

      img {
        width: 70px;
      }

      h1 {
        color: #758db9;
        font-weight: bold;
        margin: 0;
        font-size: 35px;
      }
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 2.3rem;
      margin: 0;

      li {
        a {
          color: #757783;
          position: relative;
          transition: all 500ms ease;

          &:hover {
            color: #758db9;
            transition: 0.3s;
          }
        }
      }

      .dropdown {
        position: relative;

        .menu-item {
          padding: 20px;
          color: #757783;
        }

        .dropdown-menu {
          position: absolute;
          top: 90%;
          left: -25%;
          background: white;
          list-style: none;
          padding: 0;
          margin: 0;
          min-width: 230px;
          font-size: 14px;
          box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
          z-index: 99;
          border-radius: 0 0 8px 8px;
          opacity: 0;
          visibility: hidden;
          transition: opacity 50ms ease-in-out;
          border: none;

          li {
            a {
              color: #333;
              padding: 10px;
              display: block;

              &:hover {
                background-color: #758db9;
                color: #fff;
              }
            }

            &:not(:last-child) {
              border-bottom: 1px solid #f0f0f0;
            }
          }
        }

        &:hover .dropdown-menu {
          opacity: 1;
          visibility: visible;
        }
      }

      li:last-child > a {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
      }

      ul > li:last-child > a {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
      }
    }

    .burger-menu {
      display: none;
    }
  }
}

footer {
  background-color: #fff;
  border-top: 1px solid #f1f1f1;

  .footer-widget {
    img {
      width: 100px;
    }

    p {
      font-size: 14px;
      margin: 10px 0;
      color: #757783;
    }
  }

  .footer-contact {
    h2 {
      font-size: 20px;
      font-weight: bold;
      color: #758db9;
    }

    ul {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;

      li {
        img {
          width: 18px;
        }

        a {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 14px;

          &:hover {
            color: #758db9;
            transition: 0.3s;
          }
        }
      }
    }

    .line-footer {
      width: 50px;
      height: 3px;
      background: #758db9;
      margin-bottom: 20px;
      margin-top: 10px;
    }
  }

  .copyright {
    background-color: #758db9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  header {
    .header {
      .menu {
        gap: 1rem;
        display: none;
      }

      .burger-menu {
        display: block;
      }
    }
  }
}

@media only screen and (max-width: 800px) {
  header {
    .head-contact {
      padding: 0.5rem 0px;

      .icons {
        gap: 0.5rem;

        a {
          gap: 0.3em;
          font-size: 13px;

          img {
            width: 15px;
          }
        }
      }
    }

    .header {
      padding: 0.5rem 0px;

      a {
        gap: 0.6rem;

        img {
          width: 50px;
        }

        h1 {
          font-size: 20px;
        }
      }
    }
  }

  footer {
    .copyright {
      font-size: 11px;
      letter-spacing: 1px;
      line-height: 20px;
    }
  }
}

/* sidemenu */

.offcanvas {
  background-color: #f6f6f6;

  .offcanvas-header {
    border-bottom: 1px solid #f0f0f0;

    .offcanvas-title {
      a {
        display: flex;
        gap: 0.5rem;
        align-items: center;

        img {
          width: 50px;
        }

        p {
          color: #758db9;
          font-weight: bold;
        }
      }
    }
  }

  .offcanvas-body {
    .side-menu {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0;

      li {
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 0;
      }

      .contact {
        display: flex;
        align-items: center;
        gap: 5px;

        img {
          width: 20px;
        }
      }
    }
    .dropdown-icon {
      width: 30px;
    }

    .dropdown-toggle-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .dropdown-icon {
      transition: transform 0.3s ease;
    }
  }
}

.btn-close {
  --bs-btn-close-focus-shadow: none;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.5);
    animation: pulse-animation 1.5s infinite ease-out;
    z-index: -1;
  }
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  border: 1px solid #758db9;
  padding: 4px 8px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  width: 70px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  width: 70px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border-radius: 5px;
}

.custom-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 4px 9px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:last-child{
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown-content a:hover {
  background-color: #ddd;

}


/* TranslatePress language switcher */
.azsertus-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}
.azsertus-language-switcher .trp-language-switcher,
.azsertus-language-switcher .trp-language-switcher-container {
  margin: 0;
}
.azsertus-language-switcher a,
.azsertus-language-switcher select {
  font-size: 14px;
  line-height: 1.2;
}
.azsertus-language-switcher--fallback a {
  color: inherit;
  text-decoration: none;
  padding: 6px 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}
