body {
  font-family: Sky !important;
  direction: rtl;
  text-align: right;
  position: relative;
}

@font-face {
  font-family: Sky;
  src: url(../css/sky.ttf);
}

body::-webkit-scrollbar {
  width: 9px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #eee;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #cccccc6e;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid #cccccc6e;
  /* creates padding around scroll thumb */
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

/* custom */
:root {
  --main-color: #249DD1;
  --sub-color: #FFC200;
  --bg-color: #f0f8ffa6;
  --font-color: #7c8ba4;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url(../images/arrow.png) !important;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: left 14px center;
  color: #777 !important;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:hover {
  text-decoration: none;
}

.title {
  margin: 20px 0px 40px 0px;
  position: relative;
  color: var(--main-color);
}

.title img {
  width: 35px;
  margin-right: 3px;
}

.pd {
  padding: 60px 0;
}

.custom-text {
  color: var(--font-color);
}
.text-sm {font-size: small;}
.text-xsm {font-size: x-small;}
.text-md {font-size: medium;}
.line-height {line-height: 1.6em;} 
.bg-color {background-color: var(--main-color);}
/* .custom-content .card {background-color: #fdfdfd;} */
.no-label {
  cursor: pointer;
  color: var(--font-color);
  margin-left: 12px;
  position: relative;
}

form label:not(.no-label) {
  display: block;
  margin-bottom: 12px;
  /* font-weight: bold; */
  color: #333;
}

.file {
  position: relative;
  display: flex;
  align-items: center;
}

.file>input[type='file'] {
  display: none
}

.file>label {
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  outline: 0;
  user-select: none;
  border-color: var(--main-color);
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  background-color: #e0f2f1;
  color: hsl(0, 0%, 29%);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 9px;
  padding-bottom: 7px;
  /* display: flex;
    justify-content: center;
    align-items: center; */
}

.file--upload>label {
  color: var(--main-color) !important;
  border-color: var(--hover-color);
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  accent-color: var(--sub-color);
}

select,
textarea,
input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="password"],input[type="tel"] {
  display: block;
  background-color: #fbfbfb;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  margin-top: 5px;
  border-radius: 5px;
  width: 100%;
  padding: 0px 10px;
}

input[type="text"],
select,
input[type="number"],
input[type="date"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  height: 40px;
}

textarea {
  height: 150px;
}

input:focus,
textarea:focus,
select {
  outline: none;
  box-shadow: none;
}

form button,
.custom-btn {
  background: var(--main-color);
  color: #fff;
  border-radius: 25px;
  display: inline-block;
  padding: 9px 30px 6px;
  cursor: pointer;
  border: none;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:hover {
  text-decoration: none;
}
.success {width: 300px;margin-left:auto ;margin-right: auto;}
.success img {width: 80px;display: block;margin: 20px auto;}
.loader {
  margin: auto;
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--sub-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* end custom */
/* navbar */
.navbar {
  padding: 0;
  background-color: #fff;
  transition: all .3s ease-in-out;
}

.navbar .nav-link {
  font-size: 18px;
  margin: 0px 6px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.navbar .nav-link:hover {
  color: var(--sub-color) !important;
}

.navbar .navbar-brand img {
  width: 90px;
}
/* header */
header {background-color: aliceblue;}
header .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  justify-content: center;
  margin: 20px 0;
}
header .text h3,header .text h1 {color: var(--main-color);}
header a {
  padding: 9px 24px 8px;
    border: none;
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    display: inline-block;
    transition: all .3s ease-in-out;
    background: var(--sub-color);
    cursor: pointer;
    box-shadow: 0px 3px 4px 0px #3333334d;
    font-size: 17px;
}
header a:hover {background-color: var(--main-color);color: #fff;}
header .text p {color:var(--font-color);line-height: 1.6em;margin-bottom: 32px;margin-top: 12px;font-size: 17px;}
header img {width: 60%;}
/* about */
.about p {font-size: 18px;color: var(--font-color);}
.about .card a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 0px 1000px rgb(36 157 209 / 49%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}
.about .card span {
  background-color: var(--sub-color);
  padding: 10px 45px;
  border-radius: 7px;
}
/* services */
.services {background-color: aliceblue;}
.services p {color: var(--font-color);}
.services .card {height: 95%;}
.services h5 {font-weight: bold;}
.services .card img {
  width: auto;
  display: block;
  margin: 20px auto;
  max-height: 136px;
}

/* testimonials */
.testimonials .test {position: relative;margin: 20px 0;}
.testimonials .test .img {
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 0 auto;
  border: 2px solid var(--sub-color);
}
.testimonials .item {margin-top: 50px;transition: all .3s ease-in-out;}
.testimonials .test .img img {width: 100%;margin: auto;display: block;}
.testimonials .quotes {
  position: absolute;
  left: 20px;
  top: -19px;
  width: 34px !important;
  background-color: #fff;
  border-radius: 50%;
}
/* contact us */
.contact-us {background-color: aliceblue;}
.contact-us ul {margin-top: 80px;}
.contact-us ul li {font-size: 18px;margin-bottom: 15px;}
.contact-us ul li a {color: var(--main-color);}
.contact-us ul li i {width: 30px;text-align: center;color: var(--sub-color);}
/* scrollUp */
.scrollUp {
  position: fixed;
  bottom: 40px;
  right: 45px;
  z-index: 777;
  display: none;
}
.scrollUp i {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  padding: 10px 13px;
  cursor: pointer;
  font-size: 20px;
  height: 40px;
  width: 40px;
}
.social ol {
  text-align: right;
  margin-bottom: 0;
  padding: 0;
}

.social ol li {
  color: #fff;
  background-color: var(--sub-color);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding-top: 10px;
  text-align: center;
}
.social ol li a {color: #fff;}
    /* statistics */
    .statistics ul {
      margin: 25px 0;
      display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    }
    .statistics ul li {
      background-color: #f3f3f352;
        display: flex;
        align-items: center;
        padding: 15px 20px;
        border-radius: 5px;
        justify-content: flex-start;
        width: 23%;
        box-shadow: 0px 3px 4px 0px rgba(0,0,0,.1);
        border: 1px solid #ddd;
    }
    .statistics ul li img {
      width: 40px;
    height: 40px;
    margin-left: 10px;
    }
    .statistics ul li h5 {
      margin-bottom: auto;
    font-weight: bold;
    font-size: 21px;
    }

    /* partners */
    .partners .item img {
      width: auto;
    max-height: 132px;
    }
/* footer */
footer {
  background-color: var(--main-color);
}
footer h5 {margin-bottom: 18px;color: #fff;}
footer ul li {margin: 8px 0;}
footer ul li a {color: #fff;transition: all .3s ease-in-out;}
footer ul li a:hover {color: var(--main-color);}
footer p {color:#fff;line-height: 1.6em;font-size: 14px;text-align: center;margin: 10px;}
.copyright {color: #fff;}
@media(width <= 820px) {
  .statistics ul li {width: 45%;margin-bottom: 20px;}
}
@media(width <= 567px) {
  .navbar {padding: 10px 15px;}
  header img {margin-top: 30px;}
  header p {font-size: 18px !important;}
  .about p ,.about b,.services p,.about ul li{font-size: small;}
  .services h3 {font-size: larger;}
  .about .card span {padding: 10px 33px;font-size: small;}
  .contact-us form {padding: 25px !important;}
  .partners .item img {
    width: auto;
    max-height: 83px;
}
}