/*
Theme Name: mbusiness theme
Author: Mimoun
Description: Une description
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #047c89;
  --primary-color-opacity: #047c8913;
  --secondary-color: #15202c;
  --main-color: #efefef;
  --plan-icon-color: black;
  --gray-bg: #282828;
  --text-gray-color: #c8c8c8;
  --radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

html {
  margin: 0 !important;
}

.max__width {
  padding: 0 140px;
  height: 100%;
}

#wpadminbar {
  display: none;
}

.entry-footer {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .max__width {
    padding: 0 80px;
  }
}

@media screen and (max-width: 996px) {
  .max__width {
    padding: 0 60px;
  }
}

@media screen and (max-width: 748px) {
  .max__width {
    padding: 0 40px;
  }
}

@media screen and (max-width: 500px) {
  .max__width {
    padding: 0 20px;
  }
}

.content__wrapper {
  margin-top: 200px;
}

.woocommerce__wrapper {
  margin-top: 200px;
}

/* Primary btn */

.primary-btn,
.secondary-btn {
  position: relative;
  width: max-content;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--primary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-radius: var(--radius);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.secondary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  color: white;
}

.primary-btn.loading {
  transition: none;
  color: var(--primary-color);
}

.primary-btn.loading::before {
  content: "";
  background-image: url(./assets/icons/laoder.gif);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Main title style */

.main-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-title.center {
  text-align: center;
  align-items: center;
}

.main-title .sub-title {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
}

.main-title .title {
  font-weight: 700;
  font-size: 28px;
  max-width: 400px;
}

.page-title {
  width: 0px;
  height: 0px;
  overflow: hidden;
}

/* Form control */

.form__control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__control label {
  font-size: 14px;
  font-weight: 500;
}

.form__control input,
.form__control textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--text-gray-color);
  border-radius: var(--radius);
  resize: none;
  transition: 0.3s ease-in-out;
}

.form__control input:focus,
.form__control textarea:focus {
  border: 1px solid var(--primary-color);
}

.hidden {
  display: none !important;
}
