:root {
  --blue-color: #00556b;
  --secand-color: #008db2;
  --gray-color: #6e7e89;
  --three-color: #c3e7f0;
  --four-color: #1aa2c6;
  --black-color: #212629;
  --nav-color: #dcf2f7;
  --back-color: #fefefe;
  --bg-client: #92d0e0;
}
/* CSS Reset - Resetting default styles applied by browsers */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* Remove list styles for ul, ol */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Jost", sans-serif;
  background-color: var(--backgroud-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body[dir="rtl"] {
  overflow-wrap: break-word !important;
}
body[dir="rtl"] .fa-arrow-right {
  transform: rotate(180deg);
}
body[dir="rtl"] .me-auto {
  margin-left: auto;
  margin-right: 10px !important;
}
body[dir="rtl"] .dropdown-menu li a {
  text-align: start;
}
main {
  flex: 1;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn {
  line-height: 30px;
  font-size: 18px;
}
.titleH1 {
  font-size: 50px;
  line-height: 70px;
}
@media (max-width: 500px) {
  .titleH1 {
    font-size: 40px;
    line-height: 60px;
    text-align: center;
  }
}
.titleH5 {
  font-size: 20px;
  line-height: 35px;
}
p {
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 18px;
}
h5:not(.footer h5, .header h5) {
  height: 35px;
  font-size: 24px;
  overflow: hidden;
  word-wrap: break-word;
}

@media (min-width: 1000px) {
  body[dir="rtl"] .me-2 {
    margin-right: 0px !important;
    margin-left: 0.5rem !important;
  }
}

/* start contact */
.TitleContact .titleSection {
  color: white;
  background-color: #2b99c5;
  padding: 60px 12px;
}
.TitleServices h1 {
  line-height: 60px;
}
.SectionContact .cardContact {
  background-color: #008db2;
  padding: 40px;
  border-radius: 15px;
  color: white;
  position: relative;
}
.SectionContact .cardContact::after {
  content: "";
  position: absolute;
  background-color: #31a3c1;
  right: 0px;
  bottom: 0px;
  width: 130px;
  height: 130px;
  border-radius: 100% 0px 15px 0px;
}
body[dir="rtl"] .SectionContact .cardContact::after {
  right: inherit;
  left: 0px !important;
  border-radius: 0px 100% 0px 15px !important;
}

.SectionContact .cardContact .Information h5 {
  font-size: 24px;
  margin: 10px 0;
}
.SectionContact .cardContact .Information p {
  margin-bottom: 10px;
  height: 115px;
  overflow: hidden;
}
.SectionContact .cardContact .socialMedia i {
  font-size: 20px;
  color: #ffffffa9;
}
.SectionContact .cardContact .socialMedia a:hover i {
  color: white;
}
/*formContact*/
.formContact .form-label {
  font-size: 20px;
  margin-bottom: 15px;
}

.formContact .form-control {
  padding: 12px 10px !important;
}
.formContact .btnSeeMore {
  background-color: var(--secand-color);
  border-radius: 9px;
  padding: 10px 15px;
  color: white;
  line-height: 30px;
}
.formContact .btnSeeMore:hover {
  background-color: var(--blue-color);
  color: white;
}

.formContact textarea:focus,
.formContact input:focus {
  box-shadow: none;
}
/*formContact*/
/* end contact */
