: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-caret-left,
body[dir="rtl"] .fa-caret-right,
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) {
  font-size: 24px;
  line-height: 35px;
  height: 35px;
  overflow: hidden;
  word-wrap: break-word;
}

/* start section Case Studies */
.CaseStudies .titleSection {
  color: white;
  background-color: #2b99c5;
  padding: 60px 12px;
}
.CaseStudies .titleStudies {
  color: var(--secand-color);
  margin-bottom: 10px;
}
.CaseStudies .cardStudies .titleStudiesH5 {
  height: 70px !important;
  margin-bottom: 10px;
}
.CaseStudies .cardStudies .card-des {
  height: 120px;
  overflow: hidden;
}
.CaseStudies .imageStudies {
  height: 300px;
  position: relative;
}
.CaseStudies .imageStudies img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px 7px 0px 0px;
}
.CaseStudies .imageStudies .imageLogoCompany {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: calc(100% - 80px);
}
body[dir="rtl"] .CaseStudies .imageStudies .imageLogoCompany {
  right: calc(100% - 80px) !important;
}

.CaseStudies .imageStudies .imageLogoCompany img {
  border-radius: 50%;
}
@media (max-width: 500px) {
  img {
    border-radius: 15px !important;
  }
  .card {
    box-shadow: none !important;
    border: none !important;
  }
  .card .card-body {
    padding: 12px 0px 0px 0px;
  }
}
.CaseStudies a:hover {
  color: black;
}
/*next and back page*/
.pagination {
  display: inline-block;
  display: flex;
  justify-content: end;
  margin-top: 15px;
}

.pagination a {
  color: #8b8991;
  font-weight: bold;
  padding: 4px 8px;
  text-decoration: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pagination a.active {
  background-color: #008db2;
  border-radius: 50%;
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  border-radius: 50%;
  color: #008db2;
}

/* end section Case Studies */
