: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 !important;
}
@media (max-width: 500px) {
  .titleH1 {
    font-size: 40px;
    line-height: 60px;
    text-align: center;
  }
}
.titleH5 {
  font-size: 50px;
  line-height: 70px;
}
p {
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 18px;
}
h5:not(.footer h5, .header h5) {
  font-size: 24px;
  line-height: 35px;
  height: 30px;
  overflow: hidden;
  word-wrap: break-word;
}


.btn {
  line-height: 30px;
  font-size: 18px;
}
.slideTopPage {
  background-color: #2b99c5;
  padding: 120px 0px;
}
.slideTopPage h1 {
  line-height: 60px;
}
.contantPage h2 {
  font-size: 40px;
}
@media (max-width: 500px) {
  .contantPage h2 {
    font-size: 30px;
  }
}
@media (max-width: 940px) {
  .slideTopPage {
    padding: 60px 0px;
    text-align: center;
  }
}

/**/
.cardClient {
  background-color: #dcf2f7;
  border-radius: 15px;
}
.imageCilentBottom,
.cardClient .imageClient {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.imageCilentBottom img,
.cardClient .imageClient img {
  border-radius: 75%;
}
.cardClient .title i {
  font-size: 30px;
  color: #008db2;
}
.name {
  color: #008db2;
}

/**/
/**/
.cardClient {
  position: relative;
}
.imageHoverClient {
  height: 250px;
  position: relative;
}
.imageHoverClient::after {
  content: "";
  background: linear-gradient(
    0deg,
    rgba(43, 153, 197, 1) 0%,
    rgba(21, 40, 48, 0) 50%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: block;
}
.imageHoverClient img {
  border-radius: 15px 15px 0px 0px;
}
.cardClient .title{
  transition: all 0.3s ease-in-out;

}
.cardClient .imageHoverClient {
}
.cardClient .title {
  height: 50px;
  margin-top: 24px !important;
}
/*
.cardClient:hover .title {
  height: 0px;
 overflow: hidden;
  margin-top: 0px !important;
}

.cardClient .imageHoverClient {
  height: 0px !important;
}
.cardClient:hover .textBottom {
  position: absolute;
  right: 0;
  top: 180px;
  width: calc(100% - 48px);
  transition: all 0.3s ease-in-out;
  color: white;
}
.cardClient:hover .contantP {
  height: 85px ;
}
*/
.cardClient .imageHoverClient {
  height: 250px !important;
}

.cardClient .contantP {
  height: 176px;
  overflow: hidden;
  max-height: 176px !important;
}
.modal-dialog{
  max-width: 1000px;
}
.cardClient .iconVideo{
  background-color: #0b88b4;
  color: white;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  margin: 0px 5px;
  padding: 0px 15px;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .cardClient .contantP {
    height: 210px;
    overflow: hidden;
    margin: 20px 12px !important;
  }
  .cardClient .textBottom {
  margin: 0px 12px 20px !important;
}
  .modal-header{
    padding: 12px;
  }
  .modal-body{
    padding: 0px;
  }


}



/**/
/**/
.contantPage .btnSeeMore {
  background-color: var(--secand-color);
  border-radius: 9px;
  padding: 10px 15px;
  color: white;
  display: flex;
  margin: 20px auto;
  line-height: 30px;
}
.contantPage .btnSeeMore:hover {
  background-color: var(--blue-color);
  color: white;
}
/**/
/**/
.groupImage {
  background-color: #2c9ecc;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  border: dashed 2px #62bad1;
}
.centerImage {
  background-color: #2b99c5;
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.groupImage .imageCenter {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.groupImage .imageOne {
  width: 70px;
  height: 70px;
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
}
.groupImage .imageInside img {
  border: 2px solid #2c9ecc;
}
.groupImage .imageInside {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  bottom: -3px;
  right: 0px;
}
.groupImage .imageTwo {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 35px;
  left: calc(100% - 50px);
}
.groupImage .imagesThree {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 195px;
  left: calc(100% - 50px);
}
.groupImage .imageFour {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 35px;
  right: calc(100% - 50px);
}
.groupImage .imageFive {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 195px;
  right: calc(100% - 50px);
}
.groupImage .imageSix {
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -35px;
  left: calc(50% - 35px);
}
.groupImage img {
  border-radius: 50%;
  border: 3px solid white;
}

/**/