/* Font faces */

@font-face {
    font-family: font-r;
    src: url('../fonts/Tajawal-Regular.ttf');
  }
@font-face {
    font-family: font-l;
    src: url('../fonts/Tajawal-Light.ttf');
  }
@font-face {
    font-family: font-eb;
    src: url('../fonts/Tajawal-ExtraBold.ttf');
  }
@font-face {
    font-family: font-sb;
    src: url('../fonts/Tajawal-Medium.ttf');
  }
@font-face {
    font-family: font-b;
    src: url('../fonts/Tajawal-Bold.ttf');
  }


/*  COLORS

  Gradient dark header color :  #014857
  Gradient light header color :  #1A87C7
  Dark Main Color : #014857
  Blue Second Color: #36B9E3
  Grey Text Color : #9b9b9b
  Main Text Color: #444

*/
:root {
    --main-color: #014857;
    --secondary-color: #36B9E3;
    --gradient-light-color: #1A87C7;
    --white-color: #fff;
    --text-color: #212529;
    --text-grey-color: #9B9B9B;
}

p, h1, h2, h4, h3, h4, h5 {
    margin: 0;
    padding: 0;
}
a {
  text-decoration: none !important;
}
a:hover {
  color: inherit;
}
.mt-16 {
  margin-top: 16px !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-48 {
  margin-top: 48px !important;
}
.mt-56 {
  margin-top: 56px !important;
}
.mt-64 {
  margin-top: 64px !important;
}
.list-unstyled {
  padding-left: initial;
  padding-right: 0;
}
*{
    box-sizing: border-box;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
body {
    font-family: 'font-r';
    color: var(--text-color);
    direction: rtl;
    text-align: right;
}


/* Common styles */
.transparent-button, .gradient-button {
  padding: 12px 24px;
  background: transparent;
  outline: none;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
}
.gradient-button {
  padding: 12px 32px;
  background: linear-gradient(to top left, #1A87C7 0%, #014857 100%);
  border: none;
  margin-top: 32px;
}
.gradient-button:hover {
  color: #fff;
}
.section-header h2 {
  font-size: 32px;
  color: var(--main-color);
  font-family: 'font-b';
  text-align: center;
  position: relative;
  display: inline-block;
}
.section-header h2 span {
  color: var(--secondary-color);
}
.section-header h2::before {
  content: url('../images/svg/header-title.svg');
  position: absolute;
  right: -64px;
  top: 0;
}
.section-header h2::after {
  content: url('../images/svg/header-title.svg');
  position: absolute;
  left: -64px;
  top: 0;
}
.section-header p {
  color: var(--text-grey-color);
  width: 552px;
  display: inline-block;
}


/* Start of header */
header {
  background: linear-gradient(to top left, #014857 0%, #1A87C7 100%);
  min-height: 700px;
  position: relative;
}
nav.navbar {
  padding-top: 16px;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link {
  color: #fff
}
.navbar-light .navbar-nav .active>.nav-link {
  position: relative;
}
.navbar-light .navbar-nav .active>.nav-link::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  right: 50%;
  top: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.navbar-light .navbar-nav .active>.nav-link {
  font-weight: bold;
}
nav.navbar .dropdown-toggle::after {
  display: none;
}
nav.navbar .lang-icon {
  cursor: pointer;
}
nav.navbar .request-button {
  margin-right: 24px;
}
nav.navbar .request-button:hover {
  color: white;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
  margin-right: 24px;
}
/* Start of hero header */
.hero-header {
  color: #fff;
}
.hero-header .hero-header-left h1 {
  font-family: 'font-b';
  line-height: 64px;
}
.hero-header .hero-header-left h1 span {
  color: var(--secondary-color);
}
.hero-header .hero-header-left .know-more-button {
  padding: 12px 40px;
  background-color: #fff;
  color: var(--main-color);
  font-family: 'font-sb';
  margin-top: 48px;
}
.hero-header-wave img {
  position: absolute;
  width: 100%;
  bottom: -2px;
  right: 0;
}

/* Start of home about us */
.home-aboutus-content .home-aboutus-header span {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: 'font-sb';
  margin-bottom: 8px;
  display: inline-block;
}
.home-aboutus-content .home-aboutus-header h3 {
  color: var(--main-color);
  font-family: 'font-b';
  margin-bottom: 16px;
  font-size: 32px;
}
.home-aboutus-content .home-aboutus-header h3 span {
  color: var(--secondary-color);
  font-family: 'font-eb';
}
.home-aboutus-content .home-aboutus-header p {
  color: var(--text-grey-color);
  font-size: 14px;
}
.home-aboutus-content .home-aboutus-points .aboutus-circle {
  width: 14px;
  height: 14px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: inline-block;
  margin-left: 16px;
}
.home-aboutus-content .home-aboutus-points h4 {
  font-size: 20px;
  margin-bottom: 16px;
  font-family: 'font-sb';
}
.home-aboutus-content .home-aboutus-points p {
  font-size: 14px;
}
/* Start of Services */
.service-container {
  position: relative;
  cursor: pointer;
  margin-bottom: 40px;
}
.service-absoluted-box {
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, .08);
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-out;

}
.service-container:hover .service-absoluted-box {
  visibility: visible;
  opacity: 1;
  transition: all .2s ease-out;
}
.service-absoluted-box h4 {
  color: var(--secondary-color) !important;
  font-family: 'font-b';
  font-size: 20px;
}
.service-absoluted-box p {
  color: var(--text-grey-color);
  font-size: 14px;
  margin-top: 16px;
}
.service-absoluted-box img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.service-container h3 {
  margin-top: 32px;
  color: var(--main-color);
  font-family: 'font-b';
  font-size: 24px;
}
/* Start of Work proccess */
.home-work-process {
  background-color: #fcfcfc;
  padding-top: 56px;
  padding-bottom: 56px;
}
.home-work-process .process-box, .about-cards .process-box {
  background-color: #fcfcfc;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, .08);
  padding: 24px;
  display: flex;
  border-radius: 16px;
  margin-bottom: 40px;
  min-height: 160px;
}
.home-work-process .process-box .process-image, .about-cards .process-box .process-image {
  margin-left: 20px;
}
.home-work-process .process-box .process-details h3, .about-cards .process-box .process-details h3 {
  font-size: 18px;
  font-family: 'font-b';
  color: var(--main-color);
}
.home-work-process .process-box .process-details p, .about-cards .process-box .process-details p {
  color: var(--text-grey-color);
  font-size: 14px;
  margin-top: 8px;
}

/* Start of our projects */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.project-card .project-image {
  overflow: hidden;
}
.project-card .project-details {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .32);
  top: 100%;
  right: 0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 40px;
  color: #fff;
  transition: all .5s ease-in-out;
}
.project-card .project-details h4 {
  font-family: 'font-b';
  margin-bottom: 8px;
}
.project-card .project-details .project-category span {
  margin-left: 4px;
}
.project-card .project-details .project-arrow {
  margin-top: 32px;
}
.project-card:hover .project-details {
  top: 0;
}
.transparent-colored-button > a {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  font-family: 'font-sb';
  padding: 12px 40px;
  transition: all .3s ease-out;
}
.transparent-colored-button > a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Start of project in mind */
.project-inmind {
  background: linear-gradient(to top left, #014857 0%, #1A87C7 100%);
  padding: 64px 0;
  margin-top: 64px;
}
.project-inmind .project-inmind-container {
  display: flex;
  align-items: center;
  color: #fff;
}
.project-inmind .project-inmind-container .project-inmin-details h2 {
  font-size: 40px;
  font-family: 'font-eb';
  margin-bottom: 24px;
}
.project-inmind .project-inmind-container .project-inmin-details p {
  font-family: 'font-l';
  width: 90%;
}
.project-inmind .project-inmind-container .project-inmin-button {
  margin-right: 40px;
}
.project-inmind .project-inmind-container .project-inmin-button > a {
  padding-right: 56px;
  padding-left: 56px;
  width: 200px;
  background-color: #fff;
  color: var(--main-color);
  font-family: 'font-sb';
}
/* Start of contact us */
.home-contact-us {
  background-color: #fcfcfc;
  padding-top: 56px;
  padding-bottom: 56px;
}
.home-contact-us .contactus-form input, .home-contact-us .contactus-form textarea ,
.home-contact-us .contactus-form select {
  width: 100%;
  margin-bottom: 24px;
  padding: 8px 24px;
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, .08);
  outline: none;
}
.home-contact-us .contactus-form select {
  -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    position: relative;
}
.home-contact-us .contactus-form .select-container {
  position: relative;
}
.home-contact-us .contactus-form .select-container::before {
  content: url('../images/svg/arrow-down.svg');
  top: 10px;
  left: 20px;
  position: absolute;
  z-index: 999;
}
.home-contact-us .contactus-form input:focus, .home-contact-us .contactus-form textarea:focus,
.home-contact-us .contactus-form select:focus {
  border: 1px solid var(--secondary-color);
}
.home-contact-us .contactus-form textarea {
  height: 144px;
  padding-top: 20px;
  resize: none;
}
.home-contact-us .contactus-form input::placeholder, .home-contact-us .contactus-form textarea::placeholder {
  font-size: 14px;
  color: var(--text-color);

}
.findus-map h3 {
  font-size: 24px;
  color: var(--main-color);
  font-family: 'font-b';
  margin-top: 16px;
}
.findus-map h3 span {
  font-size: 24px;
  color: var(--secondary-color);
}
.findus-map .findus-map-image {
  height: 184px;
  margin-top: 16px;
  position: relative;
}
.findus-map .findus-map-image img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.findus-map .findus-map-image p {
  position: absolute;
  bottom: 48px;
  right: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: 'font-sb';
}
.form-button button.gradient-button {
    margin-top: 0;
    width: 200px;
}
/* Start of our clients */
.our-clients-slider .item .client-image {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-clients-slider .item .client-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  cursor: pointer;
  transition: all .15s ease-in-out;
}
.our-clients-slider .item .client-image img:hover {
  filter: grayscale(0);
}
/* End of our clients */

/* Start of footer */
footer {
  background-color: #FAFAFA;
  padding-top: 56px;
  padding-bottom: 32px;
  border-top-right-radius: 64px;
  border-top-left-radius: 64px;
  position: relative;
}
footer::before {
  content: url('../images/svg/footer-map-shape.svg');
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer-berif .footer-company-berif p {
  color: var(--text-grey-color);
  font-size: 14px;
  margin-top: 32px;
}
.footer-berif .footer-social li {
  margin-left: 24px;
}
footer .footer-title {
  font-size: 20px;
  font-family: 'font-sb';
  margin-bottom: 64px;
  margin-top: 24px;
}
footer .footer-links-list li {
  margin-bottom: 12px;
}
footer .footer-links-list li a {
  color: #555;
  font-family: 'font-sb';
  font-size: 14px;
  transition: all .3s ease-in-out;
}
footer .footer-links-list li a:hover, footer .footer-contacts-content p:hover {
  font-family: 'font-b';
  padding-right: 8px;
}
footer .footer-contacts-content > div {
  margin-bottom: 16px;
}
footer .footer-contacts-content img, .contactus-info img {
  margin-left: 16px;
}
footer .footer-contacts-content p, footer .footer-contacts-content a {
  font-size: 14px;
  color: #555;
  font-family: 'font-sb';
  transition: all .3s ease-in-out;
}
footer hr {
  margin: 32px 0;
}
footer .copyrights {
  display: flex;
  justify-content: center;
}
footer .copyrights p {
  color: var(--text-grey-color);
  font-size: 14px;
  font-family: 'font-sb';
}
footer .copyrights p span {
  color: var(--main-color);
  font-family: 'font-b';
}

/* Start of inner pages */
.header-pages .page-navigation a {
  color: #fff;
  font-family: 'font-b';
}
header.header-pages {
  min-height: 420px !important;
}

/* Our Services Page */
.our-services-content h2, .project-inside-content h2 {
  color: var(--main-color);
  width: 744px;
  text-align: center;
  font-size: 32px;
  font-family: 'font-b';
  line-height: 52px;
}
.services-icons .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.services-icons .icon-box span {
  font-size: 14px;
  font-family: 'font-sb';
  margin-top: 16px;
}
.our-services-details h4 {
  color: var(--secondary-color);
}
.services-process-details span {
  margin-right: 16px;
}

/* Start of portfolio */
.portfolio-header {
  display: flex;
  justify-content: center;
}
.portfolio-header button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #F4F4F4;
  color: var(--main-color);
  border: none;
  border-radius: 8px;
  margin-left: 32px;
  font-family: 'font-sb';
  cursor: pointer;
  outline: none;
}
.portfolio-header button:last-child {
  margin-left: 0;
}
.portfolio-header button.active {
  background-color: var(--secondary-color);
  color: #fff;
}
/* Start of project inside  */
/* Start of our clients */
.project-images-slider .item .client-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-images-slider .item .client-image img {

  object-fit: contain;
  cursor: pointer;
}

/* End of our clients */
.project-info-box {
  padding: 56px;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, .08);
  border-radius: 16px;
}
.project-info-box .project-info-column h4 {
  font-size: 16px;
  font-family: 'font-b';
}
.project-info-box .project-info-column span {
  font-size: 14px;
  color: var(--text-grey-color);
  margin-top: 20px;
  display: block;
}
.project-inside-details .project-details-title, .contactus-title {
  font-size: 20px;
  font-family: 'font-b';
  position: relative;
  margin-top: 32px;
}
.project-inside-details .project-details-title::before, .contactus-title::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 48px;
  height: 2px;
  background-color: var(--secondary-color);
}
.project-inside-details .project-details-description {
  margin-top: 32px;
  line-height: 26px;
}
.project-technologies-row img {
  margin-left: 8px;
}

/* Start of contact us page */
.contactus-page {
  background: #fff;
  padding: 0;
}
.contactus-info img {
  width: 24px;
}
.contactus-info p {
  font-family: 'font-sb';
}
.contactus-info p a {
  color: var(--text-color);
}
.contactus-info p.contactus-description {
  font-size: 14px;
  color: var(--text-grey-color);
  font-family: 'font-r';
  margin-top: 16px;
  margin-bottom: 32px;
}
.contactus-googlemap iframe {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
    filter: gray; /* IE6-9 */
	  -webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
	  -webkit-backface-visibility: hidden;  /* Fix for transition flickering */
      position:absolute;
      top:0;
      right:0;
      width:100%;
      height:100%;
      margin-top: 32px;
}

/* Media Query */
@media screen and ( min-width: 1200px) {
  .container {
    padding: 0;
  }
}

@media (max-width: 992px) {
  header {
    min-height: 860px;
  }
  .hero-header .d-flex.align-items-center {
    display: block !important;
  }
  .hero-header-left {
    text-align: center;
    margin-bottom: 32px;
  }
  .hero-header-left {
    text-align: center;
  }
  /* .hero-header-left img {
    width: 70%;
  } */
  .service-absoluted-box {
    display: none;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
  }
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  header {
    min-height: 800px;
  }
  .hero-header .hero-header-left h1 {
    font-size: 32px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 0;
  }
  nav.navbar .request-button {
    margin-right: 0;
    margin-top: 24px;
  }
  .navbar-light .navbar-nav .active>.nav-link::before {
    content: none;
  }
  .aboutus-discovermore {
    display: flex;
    justify-content: center;
  }
  .process-hero-image {
    display: none;
  }
  .project-card {
    margin-bottom: 32px;
  }
  .project-inmind-container {
    display: block !important;
    text-align: center;
  }
  .project-inmind .project-inmind-container .project-inmin-details p {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-header p {
    width: 85%;
  }
  .section-header h2 {
    font-size: 24px;
  }
  footer {
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
  }
  footer::before {
    content: none;
  }
  footer .copyrights p {
    text-align: center;
    line-height: 28px;
  }
  header.header-pages {
    min-height: 350px !important;
}
  .aboutus-image {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .project-inmind .project-inmind-container .project-inmin-button {
    margin-right: 0;
  }
  .our-clients-slider .item .client-image img {
    filter: grayscale(0);
  }
  .our-services-content h2, .project-inside-content h2 {
    color: var(--main-color);
    width: 90%;
    text-align: center;
    font-size: 24px;
    font-family: 'font-b';
    line-height: 38px;
  }
  .portfolio-header {
    flex-wrap: wrap;
  }
  .portfolio-header button {
    margin-left: 16px;
    margin-bottom: 20px;
  }
  .project-info-column {
    margin-bottom: 24px;
  }
  .project-info-box .project-info-column span {
    margin-top: 8px;
  }
  .project-info-box {
    padding: 32px;
    padding-bottom: 8px;
  }
  .project-inmind .project-inmind-container .project-inmin-details h2 {
    font-size: 28px;
  }
  .contactus-page .section-header, .request-service-page.section-header {
    margin-top: 32px;
  }
  footer hr {
    margin: 12px 0;
  }
  .contactus-googlemap iframe {
    position:relative;
    top:0;
    right:0;
    width:100%;
    height:100%;
  }
  .section-header h2::after, .section-header h2::before {
    content: none;
  }
  .process-box {
    display: block !important;
  }
  .home-work-process .process-box .process-image {
    margin-left: 0;
    margin-bottom: 16px;
  }
  .home-work-process {
    padding-bottom: 16px;
  }
  .form-button {
   text-align: center;
  }
  
  .aboutus-discovermore .gradient-button {
    margin-bottom: 16px;
  }

  .aboutus-discovermore {
    flex-direction: column;
  }
}

.whatsapp-icon {
    position: fixed;
    right: 40px;
    bottom: 100px;
}
.scroll-top img {
    position: fixed;
    right: 40px;
    bottom: 40px;
    cursor: pointer;
}

button {
    outline: none !important;
}




.download-profile-button {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.download-profile-button:hover {
    color: var(--secondary-color);
}

.header-social ul li {
    margin-left: 12px;
}

.navbar-brand img {
    width: 110px;
}
