/* this coding created by web developer/ Ahmed fawzy mohamed */
/* personal email: ahmedfawzyalhegazy2020@gmail.com */
/* whatsapp: +201094848584 */
/* website: https://orion-comp.com/ */
/* formal email: info@orion-comp.com */
/* linkedin account: https://www.linkedin.com/in/ahmed-fawzy-mohamed-48a771202 */

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --blue: #1f509a;
  --main-color-alt: #1787e0;
  --bluelight: #5f93bd;
  --black: #000000;
  --white: #ffffff;
  --sevtxt: #495057;
  --main-transition: 0.25s;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--blue);
}
::-webkit-scrollbar-thumb {
  background-color: #6edbed;
}
::-webkit-scrollbar-thumb:hover {
  /* background-color: var(--main-color-alt); */
}
html {
  scroll-behavior: smooth;
}
body {
  /* font-family: "Cairo", sans-serif; */
  font-family: "Almarai", serif;
  font-weight: 400;
  font-style: normal;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
section {
  overflow: hidden;
}

.btnnormal {
  display: inline-block;
  background-color: var(--white);
  color: var(--blue);
  padding: 7px 20px;
  border-radius: 30px;
}

.btnarrwhite {
  background-color: var(--white);
  color: var(--blue);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--main-transition);
}
.btnarrwhite span {
  color: var(--white);
  background-color: var(--blue);
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  display: inline-block;
  font-size: 10px;
  margin-right: 3px;
  transition: var(--main-transition);
}
.btnarrwhite:hover span {
  transform: rotate(-90deg);
}

.btnarrblue {
  background-color: var(--blue);
  color: var(--white);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--main-transition);
}
.btnarrblue span {
  color: var(--blue);
  background-color: var(--white);
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  display: inline-block;
  font-size: 10px;
  margin-right: 3px;
  transition: var(--main-transition);
}
.btnarrblue:hover span {
  transform: rotate(-90deg);
}

.h4 {
  position: relative;
  display: inline-block;
  color: var(--blue);
  margin-bottom: 30px;
}
.h4::after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 14px;
  z-index: -1;
  border: 3px solid transparent;
  border-radius: 50%;
  border-bottom-color: var(--blue);
}

.centerhead {
  text-align: center;
  margin-bottom: 40px;
}
.centerhead h3 {
  position: relative;
  display: inline-block;
  color: var(--blue);
  margin-bottom: 30px;
}
.centerhead h3::after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 14px;
  z-index: -1;
  border: 3px solid transparent;
  border-radius: 50%;
  border-bottom-color: var(--blue);
}
.centerhead p {
  font-size: 15px;
}

.upetasil {
  text-align: center;
  margin: 20px 0px;
  display: flex;
  justify-content: center;
}
.etasil {
  background-color: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
}
.etasil span {
  margin-right: 20px;
  font-size: 22px;
}

.pcont {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}
.h2cont {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.amancrumb {
  padding: 20px 0px;
}
.amancrumb a {
  color: var(--black);
  font-size: 20px;
}
.amancrumb .active {
  color: var(--blue);
  text-decoration: underline;
}

.d-inline {
  display: inline;
}

.pbold {
  font-weight: bold;
}

.numlist {
  list-style: arabic-indic;
}

@media (max-width: 576px) {
  .centerhead p {
    font-size: 13px;
  }
  .h4 {
    font-size: 18px;
  }
}
/* media query  */
@media (max-width: 320px) {
  .container {
    max-width: 300px !important;
  }
}
@media (min-width: 360px) {
  .container {
    max-width: 340px !important;
  }
}
@media (min-width: 410px) {
  .container {
    max-width: 390px !important;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
  }
}
/* End @media */

/* End Global Rules */

/* Start header */
.header {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0%;
  z-index: 999;
  overflow: hidden;
}
.headerblog {
  margin-top: 10px;
  background-color: var(--white) !important;
}
.header .container {
  padding: 7px 20px;
  /* background: rgba(255, 255, 255, 0.1); */
  background: rgb(31 80 154);
  border-radius: 50px;
  border: 1px solid #fff;
}
.headerblog .container {
  background-color: var(--blue) !important;
}
.header .container > .row > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: right;
  align-items: center;
}
.header .container > .row > div:last-of-type {
  justify-content: left;
}
.header .linklogo img {
  height: 55px;
}
.header .menubtn {
  border-radius: 5px;
  color: var(--white);
  /* background-color: var(--white); */
  width: 40px;
  height: 40px;
  font-size: 25px;
  text-align: center;
  line-height: 40px;
  position: absolute;
  left: 45px;
  cursor: pointer;
  display: none;
}
.header ul li {
  display: inline-block;
}
.header ul li a {
  margin-left: 15px;
  padding: 5px 8px;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  transition: all 0.35s ease-in-out;
  /* font-family: "El Messiri", sans-serif; */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.header ul li a::after {
  content: " ";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
  background-color: var(--white);
  /* background-color: transparent; */
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -40px;
  transition: all 0.35s ease-in-out;
}
.header ul li a:hover::after {
  bottom: -10px;
}
@media (max-width: 769px) {
  .header {
    position: unset;
    background-color: #34507a;
  }
  .header .container {
    background-color: var(--black-color);
  }
  .header .container > .row > div {
    justify-content: center;
  }
  .header .container > .row > div:first-of-type {
    justify-content: right;
  }
  .header .linklogo img {
    height: 50px;
  }
  .header ul li {
    display: block;
    text-align: center;
    padding: 7px;
  }
  .header ul li a {
    margin-left: 0px;
  }
  .header .container > .row > div:last-of-type {
    justify-content: center;
    text-align: center;
  }
  .header .menubtn {
    display: block;
  }
  .header ul {
    display: none;
  }
  .header .upheadbtn {
    display: none;
  }
  .header ul li a::after {
    display: none;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .header .linklogo img {
    height: 50px;
  }
  .header ul li a {
    margin-right: 0px;
  }
  .header .container > .row > div {
    padding: 0px;
  }
  .header ul li a {
    margin-left: 0px;
    font-size: 12px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header ul li a {
    margin-right: 10px;
  }
}
/* End header */

/* Start intro */
.intro {
  background: url("../img/introbg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 700px;
  position: relative;
}
.intro .container {
  padding: 50px 0px;
  height: 100%;
}
.intro .row {
  display: flex;
  align-items: center;
  align-content: center;
  height: 100%;
}
.intro .row > div:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.intro p {
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 15px;
}
.intro img {
  width: 100%;
}
@media (max-width: 576px) {
  .intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: calc(100vb - 70px);
  }
  .intro h1 {
    font-size: 20px;
  }
  .intro p {
    font-size: 10px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: 700px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .intro {
    height: 550px;
  }
  .intro h1 {
    font-size: 24px;
  }
  .intro p {
    font-size: 14px;
  }
}
/* End intro */

/* Start about */
.about .container {
  padding: 50px 0px;
}
.about .row > div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about p {
  line-height: 2;
  margin-bottom: 30px;
}
.about img {
  width: 80%;
  display: block;
  margin-right: auto;
}
@media (max-width: 576px) {
  .about p {
    font-size: 13px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .about img {
    width: 100%;
  }
}
/* End about */

/* Start services */
.services .container {
  padding: 50px 0px;
}
.services .row > div {
  margin-bottom: 30px;
}
.services .servbox {
  box-shadow: 0px 0px 1px #8b8b8b;
  height: 100%;
  border-radius: 10px;
}
.services .topbox {
  position: relative;
}
.services .topbox::after {
  content: " ";
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px 10px 0px 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgb(31 80 154 / 48%);
  transition: all 0.5s ease-in-out;
}
.services .servbox:hover .topbox::after {
  width: 0px;
  height: 0px;
}
.services .topbox img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.services .topbox h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  text-align: center;
  color: var(--white);
  text-shadow: 1px 2px 2px #000;
}
.services .downbox {
  padding: 50px 20px 1px 20px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.services .servbox:hover .downbox {
  background-color: var(--blue);
}
.services .downbox span {
  display: block;
  background-color: white;
  border-radius: 5px;
  width: 60px;
  padding: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.services .downbox img {
  width: 100%;
}
.services .downbox p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}
.services .servbox:hover .downbox p {
  color: var(--white);
}
@media (max-width: 576px) {
  .services .row > div {
    padding: 0px 5px;
  }
  .services .topbox h5 {
    font-size: 13px;
  }
  .services .downbox span {
    width: 40px;
    top: -20px;
  }
  .services .downbox {
    padding: 29px 5px 1px 5px;
  }
  .services .downbox p {
    font-size: 9px;
  }
  .services .row > div {
    margin-bottom: 10px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .services .downbox p {
    font-size: 11px;
  }
}
/* End services */

/* Start cleanservice */
.cleanservice .container {
  padding: 50px 0px;
}
.cleanservice h6 {
  margin-bottom: 20px;
}
.cleanservice p {
  font-size: 14px;
  color: #282828;
  line-height: 1.7;
  margin-bottom: 10px;
}
.cleanservice span {
  background-color: var(--blue);
  color: var(--white);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  border-radius: 50%;
  margin-left: 5px;
  display: inline-block;
}
.cleanservice strong {
  color: var(--blue);
  font-size: 16px;
}
.cleanservice .upimgs > div {
  margin-bottom: 10px;
  padding: 0px 5px;
}
.cleanservice .upimgs img {
  width: 100%;
  border-radius: 15px;
}
.cleanservice .morebtn {
  background-color: var(--blue);
  color: var(--white);
  display: inline-block;
  padding: 8px 50px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--main-transition);
  border: 1px solid;
}
.morebtn {
  background-color: var(--blue);
  color: var(--white);
  display: inline-block;
  padding: 8px 50px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--main-transition);
  border: 1px solid;
}
@media (max-width: 576px) {
  .cleanservice h6 {
    font-size: 13px;
  }
  .cleanservice strong {
    font-size: 14px;
  }
  .cleanservice p {
    font-size: 12px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
  .cleanservice h6 {
    font-size: 13px;
  }
  .cleanservice p {
    font-size: 11px;
  }
  .cleanservice strong {
    font-size: 13px;
  }
}
/* End cleanservice */

/* Start choose */
.choose {
  background: url("../img/whybg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  background-attachment: fixed;
  width: 100% !important;
  height: auto;
  position: relative;
}
.choose .container {
  padding: 50px 0px;
}
.choose .row {
  width: 80%;
  margin: auto;
}
.choose .row > div {
  margin-bottom: 20px;
}
.choose .choosebox {
  border-top: 1px groove;
  border-right: 4px groove;
  border-bottom: 4px groove;
  border-left: 1px groove;
  border-color: #e4e4e4;
  border-radius: 10px;
  padding: 20px 10px;
  height: 100%;
  transition: var(--main-transition);
}
.choose .choosebox:hover {
  transform: scale(0.95);
  /* border-top: 4px groove;
  border-left: 4px groove; */
}
.choose .choosebox h5 {
  color: var(--blue);
}
.choose .choosebox span {
  background-color: var(--blue);
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 100%;
  padding: 6px;
}
.choose .choosebox img {
  width: 100%;
}
.choose .choosebox p {
  font-size: 14px;
  margin-bottom: 0px;
}
@media (max-width: 576px) {
  .choose .row {
    width: 100%;
  }
  .choose .row > div {
    padding: 0px 5px;
  }
  .choose .choosebox {
    padding: 10px 5px;
  }
  .choose .choosebox h5 {
    font-size: 14px;
    text-align: center;
  }
  .choose .choosebox p {
    font-size: 10px;
    text-align: center;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .choose .row {
    width: 100%;
  }
  .choose .choosebox h5 {
    font-size: 16px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .choose .row {
    width: 100%;
  }
  .choose .choosebox h5 {
    font-size: 15px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .choose .row {
    width: 100%;
  }
}
/* End choose */

/* Start blog */
.blog .container {
  padding: 50px 0px;
}
.blog .upcarbox {
  padding: 5px;
}
.blog .blogbox {
  direction: rtl;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  transition: var(--main-transition);
  height: 100%;
}
.blog .blogbox:hover {
  background-color: #eff9fe;
}
.blog .blogbox > div {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.blog .blogbox img {
  width: 100%;
  border-radius: 10px;
}
.blog .blogbox span {
  color: var(--white);
  background-color: var(--blue);
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  display: inline-block;
  font-size: 10px;
  margin-left: 7px;
  transition: var(--main-transition);
}
.blog .blogbox h5 {
  font-size: 18px;
  color: var(--black);
}
.blog .blogbox p {
  font-size: 13px;
  margin-bottom: 8px;
}
.blog .blogbox a {
  color: var(--blue);
  font-size: 14px;
  text-decoration: underline;
}
.blogpage .container {
  padding-top: 150px;
}
.blogpage .container > .row > div {
  margin-bottom: 20px;
}
.blogpage .articleslider,
.owl-carousel {
  direction: ltr;
}
.blog .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  /* zoom: 1; */
}
.blog .owl-theme .owl-dots .owl-dot.active span {
  width: 30px;
  background-color: var(--blue);
}
.blog .owl-nav button.owl-next,
.blog .owl-nav button.owl-prev {
  width: 30px;
  height: 30px;
  background-color: var(--blue);
  margin: 15px 5px;
  border-radius: 5px;
}
.blog .owl-nav button.owl-next:hover,
.blog .owl-nav button.owl-prev:hover {
  background-color: var(--blue);
}
.blog .owl-nav button.owl-next span,
.blog .owl-nav button.owl-prev span {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 25px;
  color: var(--white);
}
.owl-nav {
  text-align: center;
}
@media (max-width: 576px) {
  .blog .blogbox h5 {
    font-size: 15px;
  }
  .blog .blogbox p {
    font-size: 12px;
  }
  .blog .container > .row > div {
    margin-bottom: 10px;
  }
  .blogpage .container {
    padding-top: 51px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .blog .blogbox h5 {
    font-size: 13px;
  }
  .blog .blogbox p {
    font-size: 12px;
  }
  .blog .blogbox > div {
    font-size: 10px;
  }
  .blog .container > .row > div {
    margin-bottom: 10px;
  }
  .blogpage .container {
    padding-top: 51px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .blog .container > .row > div {
    padding: 0px 5px;
  }
  .blog .blogbox > div {
    font-size: 10px;
  }
  .blog .blogbox h5 {
    font-size: 14px;
  }
  .blog .blogbox p {
    font-size: 12px;
  }
}
/* End blog */

/* Start contact */
.contact .container {
  padding: 50px 0px;
}
.contact .databox {
  background: url("../img/contact-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: auto;
  padding: 30px;
  color: var(--white);
}
.contact .databox > div {
  margin-bottom: 20px;
}
.contact .databox h4 {
  color: var(--white);
  margin-bottom: 23px;
}
.contact .databox .h4::after {
  content: " ";
  border-bottom-color: var(--white);
  z-index: 999;
}
.contact .databox h6 {
  font-size: 16px;
}
.contact .databox .row > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact .icon {
  color: var(--blue);
  background-color: var(--white);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  margin-left: 12px;
  transition: var(--main-transition);
}
.contact .sdtit {
  display: block;
  font-size: 13px;
  color: #86b6ff;
  line-height: 1;
}
.contact .spdes {
  font-size: 13px;
}
.contact .map {
}
.contact .map img {
  width: 100%;
  border-radius: 10px;
}
.contact .map iframe {
  width: 100%;
  height: 300px !important;
  border-radius: 10px;
}
.contact .formbox {
  background-color: #eff9fe;
  padding: 30px;
  height: 100%;
  border-radius: 15px;
}
.contact form {
}
.contact form > div {
  margin-bottom: 20px;
}
.contact form > div:last-of-type {
  text-align: center;
}
.contact form label {
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 10px;
}
.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background-color: #f4fbff;
}
.contact input[type="text"]::placeholder,
.contact input[type="email"]::placeholder,
.contact textarea::placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.contact input[type="submit"] {
  background-color: var(--blue);
  color: var(--white);
  display: inline-block;
  padding: 8px 50px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--main-transition);
  border: 1px solid;
}
@media (max-width: 576px) {
  .contact .spdes {
    font-size: 11px;
  }
  .contact .container > .row > div {
    margin-bottom: 20px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .contact .container > .row > div {
    margin-bottom: 20px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .contact .databox,
  .contact .formbox {
    padding: 10px;
  }
  .contact .spdes {
    font-size: 10px;
  }
}
/* End contact */

/* Start footer */
.footer {
  background: url("../img/footer-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 500px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.footer .container {
  padding: 50px 0px 10px 0px;
}
.footer .container .row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end !important;
}
.footer .container .row > div:nth-of-type(1) {
  justify-content: right;
  text-align: right;
}
.footer .container .row > div:nth-of-type(2) {
  text-align: center;
  justify-content: center;
}
.footer .container .row > div:nth-of-type(3) {
  justify-content: left;
  text-align: left;
}
.footer .container .row > div:nth-of-type(4) {
  margin-top: 20px;
}
.footer img {
  height: 70px;
  margin-bottom: 30px;
}
.footer .upsocial a {
  color: var(--black-color);
}
.footer .upsocial span {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: var(--white);
  color: var(--blue);
  border-radius: 50%;
  margin: 0px 5px;
}
.footer .uplinks h5 {
  color: #86b6ff;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .uplinks a {
  display: block;
  padding: 3px 0px;
  color: var(--white);
  font-size: 13px;
  transition: var(--main-transition);
}
.footer .uplinks a:hover {
  text-decoration: underline;
}
.footer p {
  color: #86b6ff;
  margin-bottom: 0px;
  font-size: 14px;
}
@media (max-width: 769px) {
  .footer .container .row > div {
    margin-bottom: 20px;
    justify-content: flex-start !important;
    text-align: center;
  }
  .footer {
    background-image: none;
    background-color: #0a3981;
    height: auto;
  }
  .footer .container {
    padding: 20px 0px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .footer {
    background-image: none;
    background-color: #0a3981;
    height: auto;
  }
  .footer .container .row > div {
    justify-content: flex-start !important;
    text-align: center;
  }
  .footer p {
    font-size: 11px;
  }
}
@media (min-width: 993px) and (max-width: 1450px) {
  .footer {
    background-image: none;
    background-color: #0a3981;
    height: auto;
  }
  .footer .container .row > div {
    justify-content: flex-start !important;
    text-align: center;
  }
}
/* End footer */

/* Start servabout */
.servabout .container {
  padding: 180px 0px 100px 0px;
}
.servabout .row > div {
  margin-bottom: 10px;
}
.servabout .updata {
  background-color: #ddd;
  padding: 30px 10px 10px 10px;
  border-radius: 10px;
  height: 100%;
}
.servabout .servicon {
  border: 2px solid var(--bluelight);
  width: 60px;
  height: 60px;
  line-height: 53px;
  text-align: center;
  border-radius: 5px;
  display: block;
  transform: rotate(45deg);
  margin: auto;
  margin-bottom: 25px;
}
.servabout .servicon img {
  transform: rotate(-45deg);
  width: 45px;
}
.servabout h1 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.servabout h2 {
  color: var(--bluelight);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.servabout p {
  color: var(--black);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 7px;
}
.servabout .servbtns {
  display: flex;
  justify-content: space-evenly;
}
.servabout .servbtns a {
  background-color: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
}
.servabout .servbtns span {
  margin-right: 20px;
  font-size: 22px;
}
.servabout .servmainimg {
  width: 100%;
  border-radius: 10px;
}
.servabout strong {
  color: red;
}
@media (max-width: 576px) {
  .servabout .container {
    padding: 100px 0px 50px 0px;
  }
}
/* End servabout */

/* Start servbody */
.servbody .servgroupcont {
  margin-bottom: 40px;
}
.servbody .servgroupcont h2 {
  margin-bottom: 20x;
  font-size: 22px;
  font-weight: bold;
}
.servbody .servgroupcont h3 {
  margin-bottom: 10x;
  font-size: 20px;
  font-weight: bold;
}
.servbody .servgroupcont p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--sevtxt);
}
.servbody .servgroupcont ul li {
  list-style: disc;
  color: var(--sevtxt);
  font-size: 18px;
}
.servbody .services-thumb {
  margin-bottom: 50px;
}
.servbody .services-thumb h4 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.servbody .services-thumb .row > div {
  padding: 0px 3px;
  margin-bottom: 10px;
}
.servbody .services-thumb a {
  display: block;
}
.servbody .services-thumb .servthumbox {
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 1px 1px #8b8b8b, -1px -1px 1px #8b8b8b;
}
.servbody .services-thumb .servthumbox:hover img {
  transform: scale(1.2) rotate(5deg);
}
.servbody .services-thumb img {
  width: 100%;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
}
.servbody .services-thumb h5 {
  font-size: 14px;
  font-weight: bold;
  color: var(--sevtxt);
  padding: 20px 3px;
  text-align: center;
}
.servbody strong {
  color: red;
}
/* End servbody */

/* Start article */
.article .container {
  padding: 180px 0px 100px 0px;
}
.article h1 {
  font-size: 26px;
  font-weight: bold;
}
.article h1 span {
  color: var(--blue);
}
.article p {
  font-size: 18px;
  color: #555555;
}
.article .articimg {
  margin: 20px 0px;
  text-align: center;
}
.article .articimg img {
  width: 70%;
}
.article .graricle {
  margin-bottom: 40px;
}
.article .graricle .numlist li {
  list-style: arabic-indic;
}
.article .graricle .nodot li {
  list-style: none;
}
.graricle .numlist strong {
  display: block;
}
.graricle .inlsp strong {
  display: inline;
}
.graricle .numlist p strong {
  display: inline;
}
.graricle .readtoo {
  font-size: 20px;
  margin-bottom: 20px;
}
.graricle .readtoo a {
  font-size: 20px;
  text-decoration: underline;
}
.graricle a {
  font-size: 18px;
  text-decoration: underline;
}
.article h2 {
  font-size: 24px;
  font-weight: bold;
}
.article li {
  list-style: disc;
  font-size: 18px;
  margin-bottom: 5px;
}
.article h3 {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}
.article .parag {
  margin-bottom: 20px;
}
.article .innerlist li {
  list-style: circle !important;
  list-style-position: inside !important;
  font-weight: normal;
}
.article .artctable {
  margin-top: 50px;
  margin-bottom: 30px;
}
.article .artctable .row:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.article .artctable .row > div {
  text-align: center;
  padding: 10px 5px;
}
.article .artctable .row > div:not(:last-of-type) {
  border-left: 1px solid #ddd;
}
@media (max-width: 576px) {
  .article .artctable .row > div {
    font-size: 12px;
  }
  .article ul {
    padding-right: 15px;
  }
  .article .articimg img {
    width: 100%;
  }
  .article .container {
    padding: 50px 0px 0px 0px;
  }
}
/* End article */

/* Start termscondition */
.termscondition .container {
  padding: 180px 0px 50px 0px;
}
.termscondition .termscont {
  padding: 50px;
  border-radius: 10px;
  box-shadow: 1px 1px 1px #ddd, -1px -1px 1px #ddd;
}
.termscondition h6 {
  margin-bottom: 30px;
}
.termscondition .uplist > li {
  font-weight: bold;
  list-style: arabic-indic;
}
.termscondition .uplist p {
  font-weight: normal;
}
.termscondition .innerlist li {
  list-style: disc;
  list-style-position: inside;
  font-weight: normal;
}
/* End termscondition */

/* Start question */
.question .container {
  padding: 50px 0px;
}
.question h2 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 24px;
}
.question ul li {
  list-style: disc;
  list-style-position: inside;
}
.question .accordion-button::after {
  margin-right: auto;
  margin-left: 0px;
}
.question .accordion-button:not(.collapsed) {
  background-color: #6edbed;
}
.question .accordion-button:focus {
  box-shadow: none;
}
.question .accordion-button {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}
.question .accordion-item {
  margin-bottom: 20px;
  border-radius: 5px;
}
.question .accordion-item:not(:first-of-type) {
  border-top: 1px solid #ddd;
}
@media (max-width: 576px) {
  .question .accordion-button {
    font-size: 15px;
  }
}
/* End question */

/* Start amanfeedback */
.amanfeedback {
}
.amanfeedback .container {
  padding: 50px 0px;
}
.amanfeedback .owl-carousel {
  direction: ltr;
}
.amanfeedback .upcarbox {
}
.amanfeedback .slidebox {
  background-color: #eff9fe;
  border-radius: 10px;
  padding: 50px 20px;
  width: 350px;
  margin: auto;
  height: 200px;
  border-top: 4px groove;
  border-right: 1px groove;
  border-bottom: 1px groove;
  border-left: 4px groove;
  border-color: #1f509a;
}
.amanfeedback .slidebox img {
  width: 30px;
  margin-left: 10px;
  border-radius: 3px;
  display: inline-block;
}
.amanfeedback .slidebox > div {
  text-align: right;
  direction: rtl;
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 16px;
  font-weight: bold;
}
.amanfeedback .feedstars {
  position: absolute;
  top: 19px;
  left: 30px !important;
  text-align: left !important;
  bottom: auto !important;
}
.amanfeedback .feedstars span {
  font-size: 18px;
  color: #ffa033;
}
.amanfeedback .qoutright {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 35px;
  color: var(--graydark);
}
.amanfeedback .qoutleft {
  position: absolute;
  bottom: 10px;
  left: 30px;
  font-size: 35px;
  color: var(--graydark);
}
.amanfeedback .slidebox p {
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--graydark);
  text-align: right;
}
.amanfeedback .owl-nav {
  text-align: center;
}
.amanfeedback .owl-nav button.owl-next,
.amanfeedback .owl-nav button.owl-prev {
  width: 30px;
  height: 30px;
  background-color: var(--graydark);
  margin: 15px 5px;
  border-radius: 5px;
}
.amanfeedback .owl-nav button.owl-next:hover,
.amanfeedback .owl-nav button.owl-prev:hover {
  background-color: var(--graylight);
}
.amanfeedback .owl-nav button.owl-next span,
.amanfeedback .owl-nav button.owl-prev span {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}
.amanfeedback .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  /* zoom: 1; */
}
.amanfeedback .owl-theme .owl-dots .owl-dot.active span {
  width: 30px;
  background-color: var(--blue);
}
.amanfeedback .owl-nav button.owl-next,
.amanfeedback .owl-nav button.owl-prev {
  width: 30px;
  height: 30px;
  background-color: var(--blue);
  margin: 15px 5px;
  border-radius: 5px;
}
.amanfeedback .owl-nav button.owl-next:hover,
.amanfeedback .owl-nav button.owl-prev:hover {
  background-color: var(--blue);
}
.amanfeedback .owl-nav button.owl-next span,
.amanfeedback .owl-nav button.owl-prev span {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 25px;
  color: var(--white);
}
.owl-nav {
  text-align: center;
}
@media (max-width: 576px) {
  .amanfeedback .slidebox {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .amanfeedback .slidebox {
    width: auto;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .amanfeedback .slidebox {
    width: auto;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .amanfeedback .slidebox {
    width: auto;
  }
}
/* End amanfeedback */

/* Start whatsapp button */
.whatsapp_button {
  background-color: #3bd776;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  left: 20px;
  display: block;
  z-index: 999;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 25px;
  border-radius: 50%;
}
.whatsapp_button a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
}
/* End whatsapp button */

/* starting button-top */
#button-top {
  background-color: var(--blue);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  border: 1px solid #fff;
  color: #fff;
}

/*  End button-top */

/*@media (max-width: 576px)
@media (min-width: 577px) and (max-width: 769px)
@media (min-width: 770px) and (max-width: 992px)
@media (min-width: 993px) and (max-width: 1199px)*/
