@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

body {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  direction: rtl; /* Set text direction to RTL */
}

.bold {
  font-weight: 700;
  font-size: 1.75em;
  text-transform: uppercase;
}

.semi-bold {
  font-weight: 500;
  font-size: .9em;
}

.resume {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.resume_left {
  flex-basis: 30%;
  /*padding: 10px;*/
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  width: 30%;
  height: auto;
  background: #0bb5f4;
}

.resume_right {
  width: 70%;
  height: auto;
  background: #fff;
  /*padding: 25px;*/
  border: .5px solid #0bb5f4;
  flex-basis: 70%;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
}

.resume .resume_left .resume_profile {
  width: 100%;
  height: 280px;
}

.resume .resume_left .resume_profile img {
  width: 100%;
  height: 100%;
}

.resume .resume_left .resume_content {
  padding: 0 25px;
}

.resume .title {
  margin-bottom: 20px;
}

.resume .resume_left .bold {
  color: #fff;
}

.resume .resume_left .regular {
  color: #b1eaff;
}

.resume .resume_item {
  padding: 20px 0;
  border-bottom: 2px solid #b1eaff;
}

.resume .resume_left .resume_item:last-child,
.resume .resume_right .resume_item:last-child {
  border-bottom: 0px;
}

.resume .resume_left ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: flex-start; /* Align items to the left */
}

.resume .resume_left ul li:last-child {
  margin-bottom: 0;
}

.resume .resume_left ul li .icon {
  width: 30px;
  height: 30px;
  background: #fff;
  /*color: #0bb5f4;*/
  border-radius: 50%;
  margin-left: 25px; /* Adjust margin to create space */
  /*font-size: 16px;*/
  position: relative;
  float: left; /* Change float right to left for RTL */
}

.resume .icon svg {
  position: absolute;
  top: 50%;
  left: 50%; /* Change right to left for RTL */
  transform: translate(-50%, -50%);
}

.resume .resume_left ul li .data {
  color: #b1eaff;
  margin-left: 10px; /* Adjust margin to create space */
}

.resume .resume_left .resume_skills ul li {
  display: flex;
  margin-bottom: 10px;
  color: #b1eaff;
  justify-content: space-between;
  align-items: center;
}

.resume .resume_left .resume_skills ul li .skill_name {
  width: 40%;
}

.resume .resume_left .resume_skills ul li .skill_progress {
  width: 35%;
  margin: 0 5px;
  height: 5px;
  background: #009fd9;
  position: relative;
}

.resume .resume_left .resume_skills ul li .skill_per {
  width: 10%;
}

.resume .resume_left .resume_skills ul li .skill_progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
}

.resume .resume_left .resume_social .semi-bold {
  color: #fff;
  margin-bottom: 3px;
}

.resume .resume_right .bold {
  color: #0bb5f4;
}

.resume .resume_right .resume_work ul,
.resume .resume_right .resume_education ul {
  padding-right: 40px; /* Change left to right for RTL */
  overflow: hidden;
}

.resume .resume_right ul li {
  position: relative;
}

.resume .resume_right ul li .date {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.resume .resume_right ul li .info {
  margin-bottom: 20px;
}

.resume .resume_right ul li:last-child .info {
  margin-bottom: 0;
}

.resume .resume_right .resume_work ul li:before,
.resume .resume_right .resume_education ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -23px; /* Change left to right for RTL */
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid #0bb5f4;
}

.resume .resume_right .resume_work ul li:after,
.resume .resume_right .resume_education ul li:after {
  content: "";
  position: absolute;
  top: 14px;
  right: -21px; /* Change left to right for RTL */
  width: 2px;
  min-height: 115px;
  background: #0bb5f4;
}
