/* Base: reset, typography, colors, buttons, utilities */

*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  overflow-x: clip;
  max-width: 100%;
}

html {
  direction: ltr;
  overflow-y: auto;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.875;
  color: #475569;
  background-color: #EDF0F6;
  padding: 0 !important;
  direction: ltr;
  text-align: initial;
  overflow-y: visible;
}

body > :not(script):not(style):not(noscript) {
  direction: rtl;
  text-align: right;
}

body > .container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.181;
  margin-top: 0;
  color: #141414;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: inherit;
  margin: 0;
}

html[dir="rtl"] body {
  font-family: "Cairo", "Manrope", sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-title-clinic,
html[dir="rtl"] .hero-title-specialty,
html[dir="rtl"] .title {
  font-family: "Cairo", "Outfit", sans-serif;
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition-duration: 300ms;
}

a,
button,
img,
input {
  transition: all 0.3s ease 0s;
}

*:focus {
  outline: none;
}

a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #7DDCFF;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ul:last-child {
  margin-bottom: 0;
}

hr {
  border-top-width: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 18px 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
}

.btn-primary {
  border-color: #7DDCFF;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #141414;
}

.btn-dark:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #141414;
}

.btn-dark.btn-hover-outline {
  border-color: #141414;
}

.btn-secondary-outline {
  border-color: #141414;
}

.btn-secondary-outline:hover {
  color: #141414;
  background-color: #7DDCFF;
  border-color: #7DDCFF;
}

.btn-icon {
  display: inline-block;
  margin-left: 7px;
}

.btn:hover .animate-arrow-up,
.btn:hover .contact-btn-icon,
.btn:hover .btn-icon {
  animation: moveUp 0.8s linear;
}

.contact-btn-icon {
  display: inline-block;
  margin-left: 7px;
}

.error {
  color: #F44336;
}

@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(5px) translateY(-5px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-5px) translateY(5px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
}
