/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --dark-color: #19283f;
  --green-color: #65a3ff;
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --red-color: #ff3150;
  --yellow-color: #ffc400;
  --section-color: #eff7fa;
  --main-color: #2196f3;
  --main-color-alt: #1787e0;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --section-background: #ececec;
}
body {
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-family: "Noto Kufi Arabic", sans-serif;
}

html {
  scroll-behavior: smooth;
}
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;
}
hr.hr-1 {
  height: 20px;
  border: 0;
  box-shadow: 0 15px 10px -13px #000000 inset;
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-alt-color);
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.main-title {
  text-transform: uppercase;
  margin: 0 auto 80px;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 30px;
  font-weight: bold;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
}
.main-title::before,
.main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::before {
  left: -30px;
}
.main-title::after {
  right: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
.main-title:hover {
  color: white;
  border: 2px solid white;
  transition-delay: 0.5s;
}
.spikes {
  position: relative;
}
.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
}
.dots {
  background-image: url("../imgs/dots.png");
  height: 186px;
  width: 204px;
  background-repeat: no-repeat;
  position: absolute;
}
.dots-up {
  top: 200px;
  right: 0;
}
.dots-down {
  bottom: 200px;
  left: 0;
}
/* End Global Rules */

/* Start Navbar */
.container {
  font-size: 19px;
  font-weight: bold;
  text-align: right;
}
.navbar {
  background: linear-gradient(135deg, #b9c0cb 0%, #002150 100%);
}
.navbar .navbar-nav .nav-link {
  color: white;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: var(--green-color);
}

.navbar .navbar-toggler {
  color: white;
  font-size: 25px;
  border-color: #000000;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
/*  */
.navbar .navbar-toggler[aria-expanded="true"] {
  box-shadow: var(--green-color);
}

/*  */

.navbar-nav .nav-link {
  color: #fff;
  text-align: right;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
  font-weight: bold;
}
.dropend .dropdown-toggle {
  color: var(--green-color);
  margin-left: 1em;
  text-align: end;
}
.dropdown-item:hover {
  background-color: var(--green-color);
  color: #fff;
  text-align: right;
}
.dropdown .dropdown-menu {
  display: none;
  text-align: right;
  /* left: -149px; */
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}

/* End Navbar */

/* Start Landing */
.landing {
  position: relative;
}
.landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
}
.landing .container {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}
.landing .text {
  flex: 1;
}
@media (max-width: 991px) {
  .landing .text {
    text-align: center;
  }
}
.landing .text h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: -2px;
  text-align: center;
  margin-left: 85px;
}
@media (max-width: 767px) {
  .landing .text h1 {
    font-size: 28px;
    margin: 0;
  }
}
.landing .text p {
  font-size: 23px;
  line-height: 1.7;
  margin: 5px 0 0;
  color: #666;
  max-width: 548px;
}
@media (max-width: 991px) {
  .landing .text p {
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .landing .text p {
    font-size: 18px;
  }
}
.landing .image img {
  position: relative;
  width: 600px;
  animation: up-and-down 5s linear infinite;
}
@media (max-width: 991px) {
  .landing .image {
    display: none;
  }
}
.landing .go-down {
  color: #2196f3;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.landing .go-down:hover {
  color: #1787e0;
}
.landing .go-down i {
  animation: bouncing 1.5s infinite;
}

/* End Landing */

.articles-how {
  background-color: #fff;
  padding: 50px;
}

.main-title {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.container-how {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content-how {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
  text-align: justify;
  max-height: 300px;
  overflow: auto;
}

.content-how::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.content-how::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

.content-how::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}

.content-how bdi {
  font-size: 1.4rem;
  color: #333;
}

.box-how {
  /* background-color: #fff;
  border-radius: 5px;
	box-shadow: 2px 0 100px rgba(0,0,0,0.3);
  margin: 20px;
  padding: 20px;
  width: 80%;
  max-width: 800px; */
  width: 100%;
  padding: 20px;
  background: #fff;
  box-shadow: 2px 0 100px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-align: justify;
  line-height: 22px;
  /* opacity: 0; */
  /* transform: translateX(-100px);
	transition: 1s ease-in-out; */
}

.content-how {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
  text-align: end;
}

.content-how bdi {
  font-size: 20px;
  color: #333;
}


/* Start Our-Work */
.articles {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.articles .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.articles .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition),
    box-shadow var(--main-transition);
}
.articles .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 30%);
}
.articles .box img {
  width: 100%;
  max-width: 100%;
}
.articles .box .content {
  padding: 20px;
}
.articles .box .content h3 {
  margin: 0;
  text-align: right;
}
.articles .box .content p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #777;
  text-align: right;
}
.articles .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}
/* End Our-Work */

/* contact section starts */
.image-2  {
  position: relative;
  animation: up-and-down-2 5s linear infinite;
}
.image-2 img {
  height: 840px;
  width: 570px;
  position: relative; 
  left: 130px;
}
/* Responsive Design */
@media (max-width: 1670px) {
  .image-2 img {
    height: 824px;
    width: 528px;
    left: 60px;
  }
}
@media (max-width: 1622px) {
  .image-2 img {
    height: 771px;
    width: 498px;
    left: 66px;
  }
}
@media (max-width: 1457px) {
  .image-2 img {
    height: 820px;
    width: 419px;
    left: 66px;
  }
}
@media (max-width: 1307px) {
  .image-2 img {
    height: 790px;
    width: 430px;
    left: 0;
  }
}
@media (max-width: 1185px) {
  .image-2 img {
    height: 855px;
    width: 340px;
    left: 20px; 
  }
}
@media (max-width: 1034px) {
  .image-2 img {
    height: 855px;
    width: 300px;
    left: 20px; 
  }
}
@media (max-width: 983px) {
  .image-2 img {
    height: 840px;
    width: 300px;
    left: 20px; 
  }
}
@media (max-width: 767px) {
  .image-2 img {
    height: 484px;
    width: 310px;
    left: 0;
  }
}
@media (max-width: 770px) {
  .image-2 img {
    height: 825px;
    width: 302px;
    left: 0;
}
  }
@media (max-width: 636px) {
  .image-2 img {
    height: 360px;
    width: 437px;
    left: 64px;
}
  }
@media (max-width: 991px) {
  .image-2 img {
    height: 455px;
    width: 320px;
    left: 0;  
  }
}

.contactUs {
  position: relative;
  width: 100%;
  padding: 40px 100px;
}
.contactUs .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.contactUs .title h2 {
  color: #fff;
  font-weight: 500;
}

.form {
  grid-area: form;
  /* text-align: center;
  margin-top: 32px; */
}
.info {
  grid-area: info;
}
.map {
  grid-area: map;
}
.contact {
  padding: 40px;
  background: #fff;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
}
.box1 {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas:
    "form info"
    "form map";
  grid-gap: 20px;
  margin-top: 20px;
}

.contact h3 {
  color: #0e3959;
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: end;
}

/* Form */
.formBox {
  position: relative;
  width: 100%;
}
.formBox .row50 {
  display: flex;
  gap: 20px;
}
.inputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formBox .row100 .inputBox {
  width: 100%;
}
.inputBox span {
  color: #65a3ff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.inputBox input {
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
}
.inputBox textarea {
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  resize: none;
  min-height: 220px;
  margin-bottom: 10px;
}

.rectangle-button {
  background-color: #0e3959;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.rectangle-button:hover {
  background-color: #0069d9;
  color: #fff;
}

/* .inputBox input[type="submit"] {
  background: #0d2c58;
  color: #fff;
  border: none;
  font-size: 1.1em;
  max-width: 120px;
  font-weight: 500;
  cursor: pointer;
  padding: 14px 15px;
  margin-left: 80%;
  text-align: center;
  } */
.inputBox ::placeholder {
  color: #999;
}

/* info */
.info {
  background: #0e3959;
}
.info h3 {
  color: #fff;
  text-align: end;
}
.info .infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info .infoBox div p {
  color: #fff;
  font-size: 1.1em;
}
.info .infoBox div a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}
/* Start icon */
.icon-f span {
  position: absolute;
  margin: 7px;
  font-size: 22px;
  font-weight: bold;
  padding: 0 8px;
}
.fa-facebook {
  color: #fff;
  font-size: 37px;
  transition: color 0.3s ease;
}

.fa-facebook:hover {
  color: #1877f2;
}

.icon-e span {
  position: absolute;
  margin: 8px;
  font-weight: bold;
  padding: 0px 7px;
}
.fa-envelope {
  color: #fff;
  font-size: 37px;
  transition: color 0.3s ease;
}
.fa-envelope:hover {
  color: #dd4b39;
}

.icon-p span {
  position: absolute;
  margin: 8px;
  font-weight: bold;
  padding: 0px 16px;
  margin-top: 0;
}
.fa-phone {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
  margin-left: 10px;
}
.fa-phone:hover {
  color: #28a745;
}
        
/*  */
.icon-list-w {
  font-weight: bold;
  width: 0;
}
.icon-list-w a {
  color: #fff;
}
.fa-whatsapp {
  color: #25d366;
  font-size: 35px;
  transition: color 0.3s ease;
}

.fa-whatsapp:hover {
  color: #128c7e;
}
/* End icon */
.sci {
  margin-top: 40px;
  display: flex;
}
.sci li {
  list-style: none;
  margin-right: 15px;
}
.sci li a {
  color: #fff;
  font-size: 2em;
  color: #ccc;
}
.sci li a:hover {
  color: #fff;
}
.map {
  padding: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contactUs {
    padding: 20px;
  }
  .box1 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "form"
      "info"
      "map";
  }
  .info .infoBox div p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
  .info .infoBox div a {
    font-size: 13px;
    font-weight: bold;
  }
  .formBox .row50 {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .inputBox {
    width: 100%;
  }
  .contact {
    width: 375px;
  }
  .map {
    min-height: 300px;
    padding: 0;
  }
}
@media (max-width: 951px) {
  .contactUs {
    padding: 10px;
  }
  .box1 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "form"
      "info"
      "map";
  }
  .formBox .row50 {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .inputBox input[type="submit"] {
    margin-left: 90px;
    text-align: center;
  }
  .inputBox {
    width: 100%;
  }
  .contact {
    padding: 30px;
  }
  .map {
    min-height: 300px;
    width: 373px;
    padding: 0;
  }
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.icon-list li {
  margin: 0 10px;
}

.icon-list li i {
  font-size: 24px;
  color: #333;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
/* End Footer */

/* Start Animation */

@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@keyframes up-and-down-2 {
  0%,
  100% {
    top: 30px;
  }
  50% {
    top: -50px;
  }
}
@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(-15px);
  }
}
@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
/* End Animation */

/* Responsive Design */
@media (max-width: 740px) {
  .navbar {
    width: 107%;
  }
}
@media (max-width: 667px) {
  .navbar {
    width: 100%;
  }
  svg:not(:host).svg-inline--fa,
  svg:not(:root).svg-inline--fa {
    margin-left: 0;
  }
  .articles {
    margin-right: 0;
  }
  .contact {
    width: 85%;
  }
}
@media (max-width: 896px) {
  .contact {
    width: 94%;
  }
}
@media (max-width: 1404px) {
  .contactUs {
    margin-left: -59px;
  }
  .inputBox input[type="submit"] {
    margin-left: 315px;
  }
}
@media (max-width: 1340px) {
  .contactUs {
    margin-left: -82px;
  }
}
@media (max-width: 1320px) {
  .contactUs {
    margin-left: -82px;
  }
}
@media (max-width: 1003px) {
  .contactUs {
    margin-left: 0;
  }
  .box1 {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas:
      "form"
      "info"
      "map";
    grid-gap: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 1991px) {
  .box1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "form info"
      "form map";
  }
  .contact {
    min-width: 100%;
  }
}
@media (max-width: 1160px) {
  .contactUs {
    margin-left: 0;
  }
  .inputBox input[type="submit"] {
    margin-left: 149px;
  }
}
@media (max-width: 1450px) {
  .inputBox input[type="submit"] {
    margin-left: 205px;
  }
}
@media (max-width: 991px) {
  .inputBox input[type="submit"] {
    margin-left: 205px;
  }
}
@media (max-width: 738px) {
  .navbar {
    width: 100%;
  }
}
@media (max-width: 733px) {
  .box1 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "form"
      "info"
      "map";
  }
}
@media (max-width: 1999px) {
  .contactUs {
    margin-left: auto;
    min-width: auto;
  }
  .inputBox input[type="submit"] {
    margin-left: auto;
  }
}
@media (max-width: 479px) {
  .icon-list-w a {
    margin: -1px;
  }
}

/* Start Footer-Home */
.footer-home {
  margin: 0 -100px;
    display: flow-root;
    position: relative;
    top: 40px;
}
@media (max-width: 991px) {
  .footer-home {
    margin: 0 -10px;
      display: flow-root;
      position: relative;
      top: 40px;
  }
}
/* End Footer-Home */

/* Web the first group*/

/* Start Header */
.header {
  background-color: white;
  position: relative;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.header-logo {
  display: block;
  margin: 0 auto;
  font-size: 24px;
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 767px) {
  .header .logo {
    width: 100%;
    height: 50px;
  }
}

.header .main-nav {
  display: flex;
}

@media (max-width: 767px) {
  .header .main-nav {
    margin: auto;
  }
}

.header .main-nav > li:hover .mega-menu {
  opacity: 1;
  z-index: 100;
  top: calc(100% + 1px);
}

.header .main-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  position: relative;
  color: black;
  padding: 0 30px;
  overflow: hidden;
  font-size: 18px;
  transition: var(--main-transition);
}

@media (max-width: 767px) {
  .header .main-nav > li > a {
    padding: 10px;
    font-size: 14px;
    height: 50px;
  }
}

@media (max-width: 391px) {
  .header .main-nav > li > a {
    font-size: 11px;
  }
}

.header .main-nav > li > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  top: 0;
  left: -100%;
  transition: var(--main-transition);
}

.header .main-nav > li > a:hover {
  color: var(--main-color);
  background-color: #fafafa;
}

.header .main-nav > li > a:hover::before {
  left: 0;
}

.header .mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px;
}

/* End Header */

/* Start Landing */
.landing2 {
  position: relative;
}
.landing2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
}
.landing2 .container {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}
.landing2 .text2 {
  flex: 1;
}
.landing2 .text2 h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: -2px;
  text-align: center;
}
.landing2 .text2 p {
  font-size: 23px;
  line-height: 1.7;
  margin: 5px 0 0;
  color: #666;
}
@media (max-width: 991px) {
  .landing2 .text2 p {
    margin: 10px auto;
  }
  .landing .text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .landing2 .text2 p {
    font-size: 18px;
  }
  .landing2 .text2 h1 {
    font-size: 28px;
  }
}
.landing2 .image img {
  position: relative;
  width: 600px;
  animation: up-and-down 5s linear infinite;
}
@media (max-width: 991px) {
  .landing2 .image {
    display: none;
  }
}
.landing2 .go-down {
  color: #2196f3;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.landing2 .go-down:hover {
  color: #1787e0;
}
.landing2 .go-down i {
  animation: bouncing 1.5s infinite;
}

/* End Landing */

/* Start Revision schedule */
table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  border: 1px solid #000000;
}

td {
  color: #000;
}

th {
  text-align: center;
}

tr {
  border-color: inherit;
  border-style: solid;
  border-width: 4px;
}

thead th {
  background-color: #13315d;
  font-weight: 900;
  font-size: 22px;
}

tbody tr:hover {
  background-color: #f2f2f2;
}

tbody td {
  position: relative;
}

tbody td:hover {
  color: #fff;
  /* background-color: #1f54a3af; */
  background-color: #9090909d;
}

tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: #f2f2f2;
  z-index: -1;
}

@media only screen and (max-width: 1200px) {
  table {
    font-size: 16px;
  }
}

@media only screen and (max-width: 800px) {
  table {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  table {
    font-size: 15px;
  }
}
.projects .responsive-table {
  overflow-x: auto;
}
.projects table {
  min-width: 1000px;
  /* min-width: 500px; */
  border-spacing: 0;
}
.projects thead td {
  background-color: #eee;
  font-weight: bold;
}
.projects table td {
  padding: 15px;
}
.projects tbody td {
  border-bottom: 2px solid #808080;
  border-left: 2px solid #808080;
  transition: 0.3s;
  font-weight: 900;
}
.projects table tbody tr td:last-child {
  border-right: 1px solid #eee;
  font-size: 20px;
  font-weight: bold;
}
.projects tbody tr:hover {
  background-color: #faf7f7;
}
.projects table img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background-color: white;
}
.projects table img:not(:first-child) {
  margin-left: -20px;
}
.projects table .label {
  font-size: 13px;
}
.bg-green {
  background-color: #5bbd2a
}
.bg-sky {
  background-color: #02c2c7
}
.padding-15px-lr {
  padding-left: 15px;
  padding-right: 15px;
}
.padding-5px-tb {
  padding-top: 5px;
  padding-bottom: 5px;
}
.margin-10px-bottom {
  margin-bottom: 10px;
}
.border-radius-5 {
  border-radius: 5px;
}

.margin-10px-top {
  margin-top: 10px;
}
.font-size14 {
  font-size: 14px;
}

.text-light-gray {
  color: #d6d5d5;
}
.font-size13 {
  font-size: 13px;
}



              

.bg-light-gray {
  background-color: #f7f7f7;
}
.table-bordered thead td, .table-bordered thead th {
  border-bottom-width: 2px;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table-bordered td, .table-bordered th {
  border: 1px solid #dee2e6;
}


.bg-sky.box-shadow {
  box-shadow: 0px 5px 0px 0px #00a2a7
}

.bg-orange.box-shadow {
  box-shadow: 0px 5px 0px 0px #af4305
}

.bg-green.box-shadow {
  box-shadow: 0px 5px 0px 0px #4ca520
}

.bg-yellow.box-shadow {
  box-shadow: 0px 5px 0px 0px #dcbf02
}

.bg-pink.box-shadow {
  box-shadow: 0px 5px 0px 0px #e82d8b
}

.bg-purple.box-shadow {
  box-shadow: 0px 5px 0px 0px #8343e8
}

.bg-lightred.box-shadow {
  box-shadow: 0px 5px 0px 0px #d84213
}


.bg-sky {
  background-color: #02c2c7
}

.bg-orange {
  background-color: #e95601
}

.bg-green {
  background-color: #5bbd2a
}

.bg-yellow {
  background-color: #f0d001
}

.bg-pink {
  background-color: #ff48a4
}

.bg-purple {
  background-color: #9d60ff
}

.bg-lightred {
  background-color: #ff5722
}

              
/* End Revision schedule */

/* Start Lieutenant */
.Lieutenant {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.Lieutenant .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.Lieutenant .box {
  position: relative;
}
.Lieutenant .box::before,
.Lieutenant .box::after {
  content: "";
  background-color: #f3f3f3;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 10px;
  transition: var(--main-transition);
}
.Lieutenant .box::before {
  width: calc(100% - 60px);
  z-index: -2;
}
@media (max-width: 767px) {
  .Lieutenant .box::before {
    width: 100%;
  }
}
.Lieutenant .box::after {
  z-index: -1;
  background-color: #e4e4e4;
  width: 0;
}
.Lieutenant .box:hover::after {
  width: calc(100% - 60px);
}
@media (max-width: 764px) {
  .Lieutenant .box:hover::after {
    width: calc(100% - 0px);
  }
}
.Lieutenant .box .data {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.Lieutenant .box .data img {
  width: calc(100% - 60px);
  transition: var(--main-transition);
  border-radius: 10px;
}
.Lieutenant .box:hover img {
  filter: grayscale(100%);
}
.Lieutenant .box .data .social {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.Lieutenant .box .data .social a {
  width: 60px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
}
.f.fa-facebook {
  color: #1877f2;
  font-size: 33px;
  width: 30px;
  transition: color 0.3s ease;
}
.f.fa-facebook :hover {
  color: #1355ac;
}
.w.fa-whatsapp {
  color: #25d366;
  font-size: 33px;
  width: 30px;
  transition: color 0.3s ease;
}
.w.fa-whatsapp:hover {
  color: #24ab56;
}
.t.fa-truck {
  color: #777;
  font-size: 33px;
  width: 30px;
  transition: color 0.3s ease;
}
.t.fa-truck:hover {
  color: #000;
}
.fa-ban {
  color: #ff0505;
  margin: -4px 3px;
}

.Lieutenant .box .data .social a:hover i {
  color: var(--main-color);
}
.Lieutenant .box .data .social i {
  transition: var(--main-transition);
}
.Lieutenant .box .info-1,
.Lieutenant .box .info-No {
  /* padding-left: 80px; */
  /* padding: 12px; */
  padding: 12px 10px;
}
.Lieutenant .box .info-1 h3,
.Lieutenant .box .info-No h3 {
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 22px;
  transition: var(--main-transition);
}
.Lieutenant .box .info-1 h3 {
  color: var(--main-color);
}
.Lieutenant .box .info-No h3 {
  color: red;
}

@media (max-width: 767px) {
  .Lieutenant .box .info-1 h3,
  .Lieutenant .box .info-No h3 {
    padding: 0 13px;
  }
}
.Lieutenant .box .info-1 p,
.Lieutenant .box .info-No p {
  margin-top: 10px;
  margin-left: 60px;
  /* margin-bottom: 25px; */
  /* font-size: 15px; */
  font-weight: bold;
  font-size: large;
}
@media (max-width: 767px) {
  .Lieutenant .box .info-1 p,
  .Lieutenant .box .info-No p {
    padding: 0 10px;
  }
}
.Lieutenant .box:hover .info-1 h3,
.Lieutenant .box:hover .info-No h3 {
  color: #777;
}
/* End Lieutenant */


/* Start Footer */
.footer {
  background-color: #191919;
  padding: 70px 0 0;
}
@media (max-width: 767px) {
  .footer {
      text-align: center;
  }
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 40px;
}
.footer .box h3 {
  color: white;
  font-size: 42px;
  margin: 0px 0 43px;
  /* line-height: 0.2; */
  line-height: 1.2;
  text-align: initial;
}
.footer .box .social {
  display: flex;
}
@media (max-width: 767px) {
  .footer .box .social {
    justify-content: center;
  }
  .footer .box h3 {
    text-align: center;
  }
}
.footer .box .social li {
  margin-right: 10px;
}
.footer .box .social li a {
  background-color: #313131;
  color: #b9b9b9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: var(--main-transition);
  border-radius: 50%;
}
.footer .box .social .facebook:hover {
  background-color: #1877f2;
}
.footer .box .social .whatsapp:hover {
  background-color: #2db671e0;
}
.footer .box .social .email:hover {
  background-color: #ff0000;
}
.footer .box .text {
  line-height: 2;
  color: #b9b9b9;
  text-align: center;
  font-size: 16px;
  width: 105%;
}
.footer .box .links li {
  padding: 15px 0;
  transition: var(--main-transition);
  margin-right: 10px;
}
.footer .box {
  margin: 0 45px;
}
.footer .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}
.footer .box .links li:hover {
  padding-left: 10px;
}
.footer .box .links li:hover a {
  color: white;
}
.footer .box .links li a {
  color: #b9b9b9;
  transition: var(--main-transition);
}
.footer .box .links li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\F101";
  font-weight: 900;
  margin-right: 10px;
  color: var(--main-color);
}
.footer .box .line-f {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .footer .box .line-f {
      flex-direction: column;
  }
}
.footer .box .line-f i {
  font-size: 25px;
  color: var(--main-color);
  margin-right: 10px;
}
.footer .box .line-f a {
  color: #b9b9b4;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .footer .box .line-f i {
      margin-right: 0;
      margin-bottom: 15px;
  }
}
.footer .box .line-f .info {
  line-height: 1.7;
  flex: 1;
}
.footer .box .line-f .info span {
  display: block;
}
.footer .footer-gallery img {
  width: 78px;
  border: 3px solid white;
  margin: 2px;
}
.footer .copyright {
  padding: 25px 0;
  text-align: center;
  color: white;
  margin: 50px 0 0;
  border-top: 1px solid #444;
}
  /* End Footer */



