: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;
}

.titleH1 {
  font-size: 50px;
  line-height: 70px;
}
@media (max-width: 500px) {
  .titleH1 {
    font-size: 40px;
    line-height: 60px;
    text-align: center;
  }
}
.btn {
  line-height: 30px;
  font-size: 18px;
}
.titleH5 {
  font-size: 20px;
  line-height: 35px;
}
p {
  margin-bottom: 10px;
  line-height: 30px;
}
h5:not(.footer h5, .header h5) {
  font-size: 20px;
  line-height: 35px;
  height: 30px;
  overflow: hidden;
  word-wrap: break-word;
}

.clientLogos .titleSection {
  color: white;
  background-color: #2b99c5;
  padding: 60px 12px;
}
.clientLogos .logoClient {
  width: 125px;
  height: 125px;
}

.logoClient img{
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burn;
  /*-webkit-filter: grayscale(100%); !* Safari 6.0 - 9.0 *!*/
  /*filter: grayscale(100%);*/
}

.logoClient img:hover{
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}


