@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&family=Tajawal:wght@200&display=swap");
h1,
h2,
h3,
h4 {
  font-family: "O", sans-serif;
  font-size: 20px;
}

* {
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.3px;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.45;
  text-transform: none;
  color: #000;
}

p {
  color: #777;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}
section {
  padding: 50px 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* javascript css -------------------- */

.d-none {
  display: none;
}

.transition {
  transition: 0.5s;
}

/* navbar section --------------------- */

.navbar-section {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px 0px;
  transition: 0.4s ease-in-out;
  width: 100%;
  background: #fff;
  display: flex;
}

.navbar-section ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 14px;
  color: #060606;
}

.navbar-section h2 {
  font-size: 25px;
  margin: 0;
}

.navbar-section ul li a:hover {
  color: #dd4b39;
  transition: 0.3s;
}

@media screen and (max-width: 992px) {
  .navbar-section ul li a {
    padding: 6px 0px;
  }
}

/* hero-section ---------------------------- */

.hero-section {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.hero-section .hero-content div {
  text-align: center;
  position: absolute;
  opacity: 0;
}

.hero-section h1 {
  color: #333;
  font-size: 43px;
  letter-spacing: 8px;
  position: relative;
  padding: 20px;
}

.hero-section h1::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #333;
  bottom: 0;
  left: 46%;
}

.hero-section p {
  font-size: 25px;
  color: #333;
  font-style: italic;
  font-family: none;
  margin: 20px;
}

.hero-section a {
  color: #777;
  text-transform: uppercase;
  font-size: 15px;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 12px 18px;
  margin: 20px;
}

.hero-one {
}

.hero-two {
}

.hero-three {
}
.hero-one {
  animation: w1anim 10s infinite;
}

.hero-two {
  animation: w2anim 10s infinite;
}

.hero-three {
  animation: w3anim 10s infinite;
}

@keyframes w1anim {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
}

@keyframes w2anim {
  33% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
}

@keyframes w3anim {
  66% {
    opacity: 0;
  }
  83% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* information-section -------------- */

.information-section {
  width: 100%;
  border-bottom: 0.5px solid gray;
}

.information-section .information-header {
}

.information-section .information-header h1 {
  font-size: 25px;
}

.information-section .information-header h2 {
  font-size: 32px;
}

.information-section .information-header p {
  padding: 15px 65px;
}

.information-section .information-bottom {
}

.information-section .information-bottom i {
  font-size: 45px;
  color: #dd4b39;
  margin-bottom: 5px;
}

.information-section .information-bottom h4 {
  font-size: 16px;
  font-weight: 400;
  color: #737272;
}

/* what-we-do---------------- */

.what-we-do {
  padding: 100px 0px;
}

.what-we-do .what-we-work {
  display: flex;
  justify-content: center;
}

.what-we-do .what-we-work i {
  color: #dd4b39;
  font-size: 35px;
}

.what-we-do .what-we-work h4 {
  color: #444;
  font-size: 15px;
}

.what-we-do .what-we-work p {
  color: #737272;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 24px;
}

/* our-team section --------------------- */

.card-img-overlay {
  transform: translateY(80%);
  transition: transform 0.3s ease-in;
  background-color: black;
}

.card-img-overlay .card-text {
  opacity: 0;
  transform: translateY(-6rem);
  transition: opacity 0.05s ease-in, transform 0.25s ease-in;
}
.card-img-overlay .btn {
  opacity: 0;
  transform: translateY(2rem);
}
.card-img-overlay .card-title {
  color: #fff;
  font-weight: 600;
}

.team-social {
  opacity: 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.team-social i {
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}

.card {
  overflow: hidden;
  background-color: #345;
}
.card p {
  color: #fff;
}
.card:hover .card-img {
  mix-blend-mode: overlay;
}
.card:hover .card-img-overlay {
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
  background-color: rgba(0, 0, 0, 0.1);
}
.card:hover .card-text {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease-out, transform 0.2s ease-out;
}
.card:hover .btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease-out, transform 0.35s ease-out;
}
.card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease-out, transform 0.35s ease-out;
}

.card:hover .card-title {
  color: #111;
}

@media screen and (max-width: 992px) {
  .card-deck {
    flex-direction: column;
  }
  .card {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* client section */

.client-section {
}
.client-content h2 {
  font-size: 55px;
}
.client-content p {
  font-size: 22px;
  color: gray;
}
.client-content {
}

/* Our Plan ----------------------------------------------------------- */

.our-plan {
}

.plan-item {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  border-radius: 5px;
  text-align: center;
  padding: 50px 20px;
  transition: 0.3s ease-in-out;
}

.plan-item:hover {
  box-shadow: rgb(67 71 85 / 30%) 0px 0px 1.25em,
    rgb(92 146 205 / 16%) 0px 0.25em 1em;
}

.plan-item h4 {
  font-size: 26px;
  color: #444;
  margin-bottom: 20px;
}

.plan-item span {
  color: #ff695f;
  font-size: 18px;
  margin-bottom: 10px;
}

.plan-item h1 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 10px;
  color: #777;
}

.plan-item ul {
  margin-bottom: 20px;
}

.plan-item ul li {
  list-style: none;
  color: #777;
  font-size: 15px;
  padding: 5px 0px;
}

.plan-item a {
}

.plan-item a:hover {
}

/* Neswletter */
.newsletter {
  padding: 80px 0;
  background: #f2f2f2;
}

.newsletter .content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter .content h2 {
  color: #243c4f;
  margin-bottom: 40px;
}
.newsletter .content .form-control {
  height: 50px;
  border-color: #ffffff;
  border-radius: 0;
}
.newsletter .content.form-control:focus {
  box-shadow: none;
  border: 2px solid #243c4f;
}
.newsletter .content .btn {
  min-height: 50px;
  border-radius: 0;
  background: #243c4f;
  color: #fff;
  font-weight: 600;
}

/* Comment Section  ------------------------------------------ */
.comment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0px auto;
}
.comment-wrapper img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-wrapper p {
  text-align: center;
  margin: 0;
}
.comment-wrapper span {
}
/* Map Section ----------------------------------------------------------- */
.map-section {
  max-width: 100vw;
  overflow: hidden;
}
.google-map {
}

.google-map iframe {
  width: 100%;
  height: 400px;
}

/* Contact Sectiion */
.contact-wrapper {
  max-width: 800px;
  margin: auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
textarea {
  border: none;
  border-bottom: 1px solid lightgray;
  outline: none;
  padding: 15px 10px;
  color: #333;
}

/* Footer */

.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo a {
  color: #fff;
}
.footer-logo h4 {
  font-size: 25px;
  font-weight: 700;
  color: #dd4b39;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
