@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
html {
  height:100%;
}

body {
  margin:0;
  font-family: "Outfit", sans-serif;
}

.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #00636ea3 50%, #00636e 50%);
  bottom: 0;
  left: -50%;
  opacity: .5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

/* .content {
  border-radius:.25em;
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
} */

h1 {
  font-family:monospace;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

/*===== card section css =====*/

.card {
  width: 100%;
  height: 260px;
  background: white;
  border-radius: 32px;
  padding: 3px;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: #604b4a30 0px 70px 30px -50px;
  border: 4px solid #fff;
}
.card .mail {
  position: absolute;
  right: 10px;
  top: 9px;
  background: transparent;
  border: none;
}
.card .mail svg {
  stroke: #00636e;
  stroke-width: 3px;
}
.card .mail svg:hover {
  stroke: #f55d56;
}
.card .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #00636e;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}
.card .profile-pic img {
  /* object-fit: cover; */
  width: 100%;
  height: auto;
  object-position: 0px 0px;
  transition: all 0.5s ease-in-out 0s;
}
.card .bottom {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #00636e;
  top: 84%;
  border-radius: 29px;
  z-index: 2;
  box-shadow: #604b4a30 0px 5px 5px 0px inset;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 145px;
}
.card .bottom .content .name {
  display: block;
  font-size: 18px;
  color: white;
  font-weight: 900;
}
.card .bottom .content .about-me {
  display: block;
  color: white;
  margin-top: 5px;
  font-size:13px;
}
.card .bottom .bottom-bottom {
  position: absolute;
  bottom: 1.1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .bottom .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;
}
.card .bottom .bottom-bottom .social-links-container svg {
  height: 20px;
  fill: white;
  filter: drop-shadow(0 5px 5px #a5848222);
}
.card .bottom .bottom-bottom .social-links-container svg:hover {
  fill: #f55d56;
  transform: scale(1.2);
}
.card .bottom .bottom-bottom .button {
  background: white;
  color: #00636e;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  padding: 0.4rem 1rem;
  box-shadow: #a5848222 0px 5px 5px 0px;
  font-weight: 800;
  text-decoration: none;
}
.card .bottom .bottom-bottom .button:hover {
  background: #000;
  color: white;
}
.card:hover {
  border-top-left-radius: 55px;
}
.card:hover .bottom {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
}
.card:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #00636e;
  box-shadow: #604b4a30 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
}
.card:hover .profile-pic:hover {
  transform: scale(1.3);
  border-radius: 0px;
}
.card:hover .profile-pic img {
  transform: scale(2.5);
  object-position: 0px 25px;
  transition: all 0.5s ease-in-out 0.5s;
}
.card:hover .profile-pic2 img {
  transform: scale(2);
  object-position: 0px 15px;
}
.main-section .row-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-height: 100vh;
  gap: 25px;
  
}
.main-section .row-section .card-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.row-section.project-list.dental .card-section {
    grid-template-columns: repeat(3, 1fr);

}
header {
  text-align: center;
}
header img {
  max-width: 185px;
  border-radius: 0px 0px 25px 0px;
  background: #fff;
  padding: 13px;
  margin: 0px auto;
} 
header {
  position: fixed;
}
.social-links-container h1 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin: 0px;
  line-height: 28px;
}
.card .mail img {
  width: 50px;
}
.video {
  background: #fff;
  padding: 4px 4px 0px;
  border-radius: 16px;
}
.video iframe {
  margin-top: 1px;
}
.video iframe{
  border-radius: 16px;
}
.main-section .row-section.project-list {
  grid-template-columns: repeat(1, 1fr);
}
.row-section.project-list .card {
  width: 100%;
  height: 330px; 
} 
.main-section.project {
  padding: 0px 0px;
}
.row-section.project-list .card .bottom .bottom-bottom {
  position: absolute;
  bottom: 1rem; 
}
.main-section.project.remove-space {
  padding: 0px;
}
.row-section.project-list .card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 212px;
}
.card-section.main-card .card {
  width: 100%;
  height: 170px; 
}
.card-section.main-card .card .profile-pic {
  position: absolute;
  width: calc(37% - 0px);
  height: calc(63% - 0px);
}
.card-section.main-card .card:hover .bottom {
  top: 38%; 
}
.card-section.main-card .card:hover .profile-pic:hover {
  transform: scale(1.1);
}
.card-section.main-card .card:hover .profile-pic {
  border: 5px solid #fff;
}
.card-section.main-card  .card .bottom {
  min-height: 40px;
}
.card-section.main-card  .card .bottom .bottom-bottom {
  bottom: 0.6rem; 
}
/* .card-section.main-card .card:after {
  content: " ";
  position: absolute;
  right: -4px;
  top: -5px;
  height: 50px;
  width: 62px;
  background: #286f78;
  border-radius: 0px 34px 0px 55px;
} */
.card-section.main-card button.mail.logo img {
  display: none;
}
.main-section .row-section.project-list .simple-card {
  background: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 20px 15px;
  max-width: 400px;
  transition: 0.6s;
}
.main-section .row-section.project-list .simple-card:hover {
  transform: scale(1.05);
}
.main-section .row-section.project-list .simple-card img {
  max-width: 80px;
}
.main-section .row-section.project-list .card-section.small-card {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
    margin: 0px auto;
}
.main-section .row-section.project-list .card-section.small-card a {
  background: #00636E;
  color: #fff;
  padding: 10px 25px;
  display: inline-flex;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.main-section .row-section.project-list .card-section.small-card h3 {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 19px;
    line-height: 26px;
    min-height: 47px;
}
.main-section .row-section.project-list .card-section.small-card a:hover {
  background: #02343a;
}
.pdf-card iframe {
  width: 100%;
  height: 82vh;
  border: none;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
} 
a.back {
  position: absolute;
  top: 30px;
  background: #fff;
  padding: 10px 17px 8px 6px;
  border-radius: 0px 15px 15px 0px;
  text-decoration: none !important;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
}
.qrcode img {
  max-width: 300px;
  margin: 0px auto;
  border-radius: 20px;
}
.qrcode {
  text-align: center;
}
a.back img {
  width: 17px;
  margin-right: 6px;
  height: 16px;
}
.row-section.project-list.slider-section button.owl-prev {
  position: absolute;
  left: -55px;
  top: 45%;
  background: #00626e;
  padding: 28px;
  width: 50px;
  height: 50px;
  z-index: 6;
  border-radius: 50%;
  font-size: 27px;
  color: #fff !important;
  border: 2px solid #fff;
}
.row-section.project-list.slider-section button.owl-next {
  position: absolute;
  right: -55px;
  top: 45%;
  background: #00626e;
  padding: 28px;
  width: 50px;
  height: 50px;
  z-index: 6;
  border-radius: 50%;
  font-size: 27px;
  color: #fff !important;
  border: 2px solid #fff;
}
.owl-item .item {
  transform: translate3d(0, 0, 0);
  /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
  margin: 20px 0;
  /* OVERWRITE PLUGIN MARGIN */
}

.screenshot_slider .owl-item .item img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.main-section .row-section.project-list .card-section.small-card.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.main-section .row-section.project-list .card-section.small-card.three-col h3 {
  min-height: auto;
}
.row-section.project-list.research {
  max-width: 100%;
  margin: 0px auto;
}
.screenshot_slider .owl-item.center .item img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.row-section.project-list.research .card-section.small-card.three-col {
    max-width: 100% !important;
    grid-template-columns: repeat(4, 1fr);
}
.screenshot_slider .owl-nav {
  text-align: center;
}

.screenshot_slider .owl-nav button {
  font-size: 24px !important;
  margin: 10px;
  color: #033aff !important;
}
.screenshot_slider .owl-dots {
  display: none;
}
.row-section.project-list.slider-section {
  display: flex;
}
.card-section.main-card .card {
  box-shadow: none !important;
  border: none;
}
.main-section .row-section.project-list .card-section.small-card.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
}
.row-section.full-width {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.row-section.full-width .card-section.main-card {
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
}
.row-section.full-width .card-section.main-card .card img {
  height: 200px;
  margin: 0px auto;
  width: 200px;
  border-radius: 50%;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px #ffffff;
  background: #fff;
  transition: 0.6s;
  border: 9px solid #e7e7e7;
}
.row-section.full-width .card-section.main-card .card img:hover {
  transform: scale(1.1);
  transition: 0.6s;
}
a.logo-area img {
  border-radius: 20px;
  max-width: 350px;
  background: #fff;
  padding: 15px;
}
.card.top-card {
  margin-bottom: -70px;
}
.card.bottom-card {
  margin-top: -70px;
}
tr.mid-row td {
  padding: 40px 0px;
}
.row-section.full-width .card h1 {
  font-size: 25px;
  color: #017680;
  font-weight: 700;
  margin-top: 15px;
}
.row-section.full-width .card .icon img {
  width: 100px;
}
.row-section.full-width .card-section.main-card .card a {
  text-decoration: none;
}
.row-section.full-width .card {
  background: none;
  height: auto;
}
.row-section.full-width .card h1 {
  color: #fff;
  margin-bottom: 0px;
}
.row-section.full-width .card.left {
  padding-left: 30px;
}
.row-section.full-width .card.right {
  padding-right: 30px;
}
.zoom-in-zoom-out {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.front-page {
  max-width: 1500px;
  margin: 0px auto;
}
.saudi-logo img {
    width: 180px;
}
.saudi-logo {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
}
.content.main-page {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.journey-section {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 150px;
    margin-bottom: 40px;
}
.step_one {
    background: #00636F;
    color: #fff;
    clip-path: polygon(100% 0, 100% 78%, 50% 100%, 0 79%, 0 0, 50% 11%);
}
.step_one {
    padding: 45px 0px;
}
.content.main-page {
    min-height: 100vh;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.step_one {
    background: #00636F;
    color: #fff;
}
.step_one h3 {
    padding: 15px;
    margin: 0px;
}
.step_two {
    background: rgb(11 39 49 / 18%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24.7px);
    -webkit-backdrop-filter: blur(6.7px);
    padding: 50px 30px;
    color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #c2c2c2;
}
.step_two h3 {
    font-size: 30px;
    text-align: center;
    max-width: 220px;
}
.step_three, .step_four {
    background: rgb(11 39 49 / 18%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24.7px);
    -webkit-backdrop-filter: blur(6.7px);
    padding: 20px 30px;
    color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #c2c2c2;
}
.step_five {
    background: rgb(11 39 49 / 18%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24.7px);
    -webkit-backdrop-filter: blur(6.7px);
    padding: 30px;
    color: #fff;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #c2c2c2;
}

.step_two ul, .step_three ul, .step_four ul {
    list-style: none;
    padding-left: 0px;
    margin: 0px;
}
.step_two a, .step_three a, .step_four a {
    color: #fff;
    background: #00636F;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 16px;
    white-space: nowrap;
    padding: 10px 25px;
    font-size: 19px;
    text-decoration: none;
    font-weight:600;
    transition: 0.6s;
    text-transform: uppercase;
}
.step_two a {
    max-width: 206px;
    min-width: 206px;
    white-space: break-spaces;
    line-height: 22px;
}
.step_two a:hover, .step_three a:hover, .step_four a:hover {
    color: #00636f;
    text-decoration: none;
    transform: scale(1.05);
    transition: 0.6s;
    background: #fff;
}
.step_two a:focus, .step_three a:focus, .step_four a:focus {
     background: #fff;
}
.step_three li, .step_four li {
    margin: 10px 0px;
}
.step_five h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    line-height: 38px;
    margin: 0;
    padding: 20px 0px;
}
.step_five h3 span {
    font-family: "Bebas Neue", sans-serif;
    display: block;
    font-size: 46px;
}
.project-card .content h3{
  font-size: 40px;
  line-height: 1;
}
.project-card{
  transition: 0.8s;
}
.project-card:hover{
  transform: scale(0.95);
  transition: 0.8s;
}
.project-card img {
    width: 100%;
}
.project-card .content {
    position: absolute;
    bottom: 5px;
    left: 15px;
}
.project-card {
    position: relative;
}
.project-card img.play-icon {
    width: 40px;
    position: absolute;
    right: 25px;
    bottom: 25px;
}
.project-card .media img {
    border-radius: 16px;
}
.two_col {
    background: #ffffff00;
    backdrop-filter: blur(24.7px);
}
.video_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 90%;
    margin: 0px auto;
}
.project-card .content h3 {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
}
.project-card .media img {
    max-height: 250px;
    object-fit: cover;
}
.main-section .container-fluid {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
/*.main-section .container-fluid:after {*/
/*    content: " ";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: -20px;*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    background: #00636f;*/
/*    border: 3px solid #fff;*/
/*    border-radius: 10px;*/
/*    margin: 0px auto;*/
/*    transform: rotate(45deg);*/
/*}*/
.step_two:after {
    content: " ";
    position: absolute;
    top: -100px;
    left:0;
    right:0;
    width: 75px;
    height: 74px;
    width: 45px;
    height: 45px;
    background: #00636f;
    border-radius: 50%;
    border: 5px solid;
    margin: 0px auto;
}
.step_two:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -158px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(img/arrow.svg) no-repeat center center;
    background-size: contain;
    margin-left: 6px;
    margin: 0px auto;
}
.step_five:before {
    content: "";
    position: absolute;
    right: 0px;
    left: 0px;
    top: -30px;
    bottom: auto;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(img/arrow.svg) no-repeat center center;
    background-size: contain;
    margin-left: 6px;
    margin: 0px auto;
}
.video_list {
    margin-top: 20px;
}
.main-section {
    padding: 35px 0px;
    min-width: 100%;
}
.journey-section > *:first-child {
  margin-left: 0;
}
.video-card video {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    background: rgb(255, 255, 255);
    padding: 12px;
    border-radius: 24px;
}
.step_three h3 {
    text-align: center;
    margin-top: 0px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}
.two_col {
    border: 3px solid #fff;
    border-style: dashed;
    padding: 15px 20px 20px;
}
.two_col .d-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
.two_col h3 {
    text-align: center;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.hero-content-for-video {
    padding: 25px;
    max-width: 438px;
    border-radius: 20px;
    background: rgb(11 39 49 / 18%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    border: 1px solid rgba(255, 255, 255, 0.47);
    min-height: 460px;
}
.hero-content-for-video h3 {
    background: rgba(1, 99, 112, 1);
    text-align: center;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    padding: 10px 5px;
    margin-top: 0px;
}
.features-point {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* thumb color | track color */
}

/* For Webkit browsers (Chrome, Safari, Edge) */
.features-point::-webkit-scrollbar {
    width: 6px; /* Thin width */
}

.features-point::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

.features-point::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px; /* Rounded edges */
    border: 1px solid #f1f1f1; /* Optional: space around thumb */
}

.features-point::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker on hover */
}


.features-point {
  height: 325px;
  overflow: hidden; 
  position: relative;
}

.features-point ul {
  position: absolute;
  bottom: -100%;          
  width: 100%;
  animation: scrollUp 35s linear infinite; 
  padding: 0;
  margin: 0;
  list-style: none;
  color:#fff;
}

.features-point li {
  margin: 10px 0;
}
.features-point li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    padding-bottom: 20px;
    line-height: 20px;
}
.features-point img {
    position: absolute;
    left: 0px;
    top: -7px;
    width: 40px;
}
.two_slider {
    overflow: hidden;
}
.two_slider {
    display: flex;
    align-items: center;
}
.slider-div {
    overflow:hidden;
}
.main-section.project.remove-space.doseapp .row {
    overflow: hidden;
}
.doseapp .row-section.project-list.slider-section button.owl-prev {
    left: -8px;
    top: 45%; 
}
.doseapp .row-section.project-list.slider-section button.owl-next {
    right: -8px;
}
.slider-div.desktop {
    padding-right: 60px;
}
.doseapp .row {
    align-items: center !important;
}
.slider-div.desktop {
    padding-top:30px;
}
.qr-logo {
    position: absolute;
    left: 10px;
    top: 10px;
    text-align:center;
}
.qr-logo img {
    max-width: 100px;
    border-radius: 10px;
}
.qr-logo p {
    color: #fff;
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 0px;
}
.main-section .journey-section:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: -115px;
    width: 8px;
    height: 100%;
    display: block;
    background: #fff;
    margin: 0px auto;
    z-index: 0;
}
/* Keyframes for scrolling */
@keyframes scrollUp {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 100%;
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 05);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 05);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.06, 1.06);
  }
  100% {
    transform: scale(1, 1);
  }
}
.step_two {
    margin: 0px auto;
}
.step_five {
    margin: 0px auto;
}
.step_one {
    margin: 0px auto !important;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .main-section .row-section {
    grid-template-columns: repeat(1, 1fr); 
  }
  .main-section {
      padding: 35px 0px;
  }
  .main-section.project {
      padding: 0px 0px;
  }
}

@media (min-width: 1200px) {
  .container {
      width: 1240px !important;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    width: 100% !important;
}
}

 @media (min-width: 1920px) and (max-width: 4000px) {
    .container.large-ct {
        width: 1550px !important;
    }
    .main-section .row-section.project-list .card-section.small-card {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1500px;
        margin: 0px auto;
    }
    .main-section .row-section.project-list .card-section.small-card h3 {
        margin-bottom: 25px;
        font-weight: 700;
        font-size: 26px;
        line-height: 32px;
        min-height: 60px;
    }
    .row-section.project-list.research {
        max-width: 1500px;
        margin: 0px auto;
    }
    .row-section.project-list.it-sevices .card {
        height: 435px;
    }
    .it-sevices .social-links-container h1 {
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        margin: 0px;
        line-height: 40px;
    }
    .social-links-container h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .qrcode img {
    max-width: 540px; 
    }
    a.back img {
        width: 36px;
        margin-right: 6px;
        height: 37px;
    }
    a.back {
        padding: 12px 22px 10px 6px;
        font-size: 50px;
        line-height: 29px;
    }
}

@media (min-width: 1350px) and (max-width: 1380px) {
    .step_five h3 {
        font-family: "Bebas Neue", sans-serif;
        font-size: 33px; 
    }
    .step_five h3 span {
        font-family: "Bebas Neue", sans-serif;
        display: block;
        font-size: 46px;
    }
    .step_two h3 {
      font-size: 23px; 
    }
    .step_three a, .step_four a {
       font-size: 18px; 
    }
    .step_two a, .step_three a, .step_four a {
       font-size: 19px; 
    }
}
@media (min-width: 1300px) and (max-width: 1350px) {
    .step_five h3 {
        font-family: "Bebas Neue", sans-serif;
        font-size: 33px; 
    }
    .step_five h3 span {
        font-family: "Bebas Neue", sans-serif;
        display: block;
        font-size: 46px;
    }
    .step_two h3 {
      font-size: 23px; 
    }
    .step_three a, .step_four a {
       font-size: 18px; 
    }
    .step_two a, .step_three a, .step_four a {
       font-size: 17px; 
    }
    .step_two:before {
        bottom: -171px; 
    }
    .step_two:after {
        bottom: -170px;
    }
    .step_four:after {
      bottom: -77px; 
    }.main-section
}
@media (min-width: 1200px) and (max-width: 1299px) { 
    .step_five h3 {
        font-size: 39px; 
    }
    .step_two:after {
        bottom: -167px; 
    }
    .step_two:before {
        bottom: -170px; 
    }
    .step_four:after {
        bottom: -79px;
    }
    .step_five h3 span {
        font-size: 38px;
    }

}
@media (min-width: 2000px) {
        .container, .container-fluid {
    max-width: 3000px !important; 
    margin: 0 auto;
    width:100% !important;
  }
  .project-card .media img {
        max-height: 500px;
        object-fit: cover;
    }
    .step_two a {
        max-width: 100%;
        min-width: 206px;
        white-space: break-spaces;
        line-height: 22px;
        width: 100% !important;
    }
    .step_two a, .step_three a, .step_four a {
      font-size: 1.2vw;
    }
    .step_two a, .step_three a, .step_four a {
    padding: 25px 50px; 
    }
    .step_five h3 {
        font-size: 5vw;
    }
    .step_five h3 span {
        font-size: 5.6vw;
    }
    .step_five h3 {
      line-height: 4.8vw;
    }
    .step_two a {
        line-height: 1; 
    }
    .step_three li, .step_four li {
        margin: 1vw 0px;
    }
    .two_col h3 {
        font-size: 1.6vw;
    }
    .saudi-logo img {
        width: 10vw;
    }
    .project-card .content h3 {
        font-size: 3vw;
    }
    .step_two:after {
        bottom: auto;
        top: -119px;
        width: 75px;
        height: 74px;
        border: 8px solid;
    }
    .step_two:before {
        bottom: -171px;
        width: 75px;
        height: 75px;
        left: 0px;
        right: 0;
        margin: 0px auto;
    }
    .step_five:before {
        bottom: 0;
        top: -58px;
        width: 75px;
        height: 75px;
    }
    .step_three:after {
       bottom: -7.1vw;
        width: 75px;
        height: 75px;
        border: 8px solid;
    }
    .step_five:before {
         bottom: -7.4vw;
        width: 75px;
        height: 75px;
    }
    .step_four:after { 
        width: 75px;
        height: 75px;
        border: 8px solid;
        bottom: -3.1vw;
    }
    .journey-section {
        margin-bottom: 60px;
    }
    .main-section .container-fluid:before {
        height: 6px;
    }
    .qr-logo img {
        max-width: 5vw; 
    }
    .qr-logo p {
        color: #fff;
        font-size: 1vw; 
    }
    .container.large-ct {
        width: 100% !important;
        max-width: 3000px !important; 
    }
    .row-section.project-list.slider-section button.owl-prev {
        width: 4vw;
        height: 4vw;
        font-size: 1.5vw !important;
        left:30px;
    }
    .row-section.project-list.slider-section button.owl-next {
        width: 4vw;
        height: 4vw;
        font-size: 1.5vw !important;
        right:30px;
    }
    .minimum_screen {
        max-width: 2400px !important;
    }
    .screenshot_slider .owl-item.center .item img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.05);
    }
    .step_two a {
        max-width: 100%;
        min-width: 100%; 
    }
    .step_two a, .step_three a, .step_four a {
        font-size: 2.5vw;
    }
    .step_two a {
      max-width: 100%;
    }
    .step_one h3 {
        padding: 15px;
        margin: 0px;
        font-size: 2.5vw;
        padding: 100px 30px;
    }
    .journey-section {
        gap: 156px; 
    }
    .journey-section
    {
        margin-bottom: 130px;
    }
    .journey-section {
        position: relative;
        z-index: 0;
    }
    .main-section .journey-section:before {
        content: " ";
        position: absolute;
        left: 0;
        right: 0;
        top: -115px;
        width: 8px;
        height: 100%;
        display: block;
        background: #fff;
        margin: 0px auto;
        z-index: 0;
    }
    .row-section.project-list.slider-section.smiely_gesture .col-xl-12 {
        width: 100% !important;
    }
    .row-section.project-list.slider-section.smiely_gesture.virtual {
        display: inline-grid;
         width: 68%;
        margin: 0px auto;
        align-items: center;
    }
    .main-section.project.remove-space {
        padding: 0px;
        text-align: center;
    }
    .row-section.project-list.remove-space.video_section .col-lg-4 {
        width: 100%;
    }
    
    .row-section.project-list.remove-space.video_section .col-lg-8 {
        width: 100%;
    }
    .row-section.project-list.remove-space.video_section .col-lg-4 .hero-content-for-video {
        max-width: 100%;
    }
    .features-point li {
        position: relative;
        padding-left: 110px;
        padding-bottom: 20px;
        line-height: 1;
        font-size: 3vw;
    }
    .row-section.project-list.remove-space.video_section {
        padding: 5%;
    }
    .features-point {
        height: 30vh; 
    }
    .features-point img {
        position: absolute;
        left: 0px;
        top: -7px;
        width: 4vw;
    }
    .hero-content-for-video h3 {
        font-size: 4vw;
    }
    .features-point li {
        margin-bottom: 20px;
        margin-top: 40px; 
    }
    .row-section.project-list.remove-space.video_section .col-lg-4 .hero-content-for-video {
        margin-bottom: 50px;
    }
}