*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --loginColor: rgba(32, 29, 29, 0.7);
  --bodyFontSize: 1rem;
  --boxShadow: rgb(0 0 0 / 11%) 0 0 0 1px, rgb(0 0 0 / 5%) 0 10px 10px -5px;
  --borderRadius: 0.5rem;
  --mainPaddingHalf: 0.5rem;
  --mainPaddingOne: 1rem;
  --titleColor: rgba(0, 0, 0, 0.7);
  --gray-background: #eceff1;
  --main_color: #fbbc04;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: var(--main_color);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--bodyFontSize);
  color: var(--gray-dark);
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
}

@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

/* ================================= public classes  =================================  */

.padding-top-bottom {
  padding: 6rem 0;
}

.padding-bottom {
  padding-bottom: 6rem;
}

.custom__margin-bottom {
  margin-bottom: 60px;
}

.why-us-grid,
.features-grid,
.service-grid,
.plans-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(1, minmax(250px, 1fr));
}

.gray-background {
  background-color: var(--gry-background, #eceff1);
}
/* ================================= navbar section  =================================  */

.navbar {
  /*   background-color: #ffc107;
 */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* ================================= hero section  =================================  */

.bg_learn_more {
  background-color: var(--main_color);
  color: black;
}

.hero::before {
  content: "";
  position: absolute;
  top: -383px;
  /* overflow: hidden; */
  left: 0;
  width: 100%;
  height: 100%;
  /*   background-color: #ffc10726;
 */
  background-color: #fff6da7a;
  rotate: -45deg;
  border-radius: 25%;
}

/* ================================= services section  =================================  */

.service-grid {
  grid-template-columns: repeat(1, minmax(250px, 767px));
  justify-content: center;
}

@media (min-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    justify-content: initial;
  }
}

.service {
  transition: 0.3s;
  border-top: 4px solid #fbbc04;
  border-radius: 8px;
}

/* ================================= more section  =================================  */

.more-title {
  font-weight: 800;
}

/* ================================= separator section  =================================  */

.features-separator {
  /*   background-color: #fbbc04;
 */
  /*   background-color: #ffc10726;
 */
  background-color: #fff6da7a;
}

/* ================================= features section  =================================  */

.features span {
  display: inline-block;
  text-align: center;
}

.features span > i {
  color: #fbbc04;
}

.features span > i,
.features span {
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 60px;
}

@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}

/* ================================= plans section  =================================  */

.plans-grid {
  grid-template-columns: repeat(1, minmax(250px, 600px));
  justify-content: center;
  gap: 60px;
}

@media (min-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    justify-content: initial;
    gap: 40px;
  }
}

.plan {
  position: relative;
  transition: bottom 0.3s ease-in-out;
  bottom: 0;
}

.plan:hover {
  bottom: 8px;
  transition: bottom 0.3s ease-in-out;
}

.plan-wrapper {
  border-radius: 8px;
}

.plan-wrapper.plan-1 .card-body > p {
  border: 1px solid #fbbc04;
}

.plan-wrapper.plan-2 .card-body > p {
  border: 1px solid #c1554d;
}

.plan-wrapper.plan-3 .card-body > p {
  border: 1px solid #fe8a7e;
}

.plan-wrapper.plan-1 {
  border-top: 12px solid #fbbc04;
}

.plan-wrapper.plan-2 {
  border-top: 12px solid #c1554d;
}

.plan-wrapper.plan-3 {
  border-top: 12px solid #fe8a7e;
}

.plan-wrapper ul li {
  border: none;
  font-size: 1rem;
}

.plan-wrapper ul li i.fa-circle-check {
  color: var(--main_color);
}

.plan-wrapper ul li i.fa-circle-xmark {
  color: #c1554d;
}

.contact__us_button {
  top: 60px;
}

/* ================================= why us section  =================================  */

.why-us-wrapper {
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .why-us-wrapper {
    display: flex;
  }

  .why-us-content {
    text-align: left;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .why-us-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}

.img-wrapper {
  width: 150px;
}

/* ================================= footer section  =================================  */

.footer {
  background-color: #222831;
  color: #cdcdcd;
}

.footer__header {
  font-weight: 800;
  color: white;
}

.footer .text__line {
  background-color: #ffffff8a;
}

.footer .text__line::before,
.footer .text__line::after {
  border-top: 2px solid #ffffff8a;
}

@media (max-width: 576px) {
  .footer .text__line {
    display: none;
  }
}

.footer__p {
  font-weight: 300;
}

.footer_social li {
  margin: 0.5rem 0.5rem 0.5rem 0;
  display: inline-block;
  padding-left: 0;
}

.footer_social a,
.footer__a {
  color: #cdcdcd;
  text-decoration: none;
}

.footer_social li {
  position: relative;
  transition: bottom 0.3s ease-in-out;
  bottom: 0;
  display: inline-flex;
}

.footer_social .icons {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  color: #f5f5f5;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 0;
}

.footer_social li:hover {
  bottom: 6px;
  opacity: 0.7;
  transition: bottom 0.3s ease-in-out;
}

@media (max-width: 576px) {
  .footer_social .icons {
    width: 25px;
    height: 25px;
  }
}

/* ================================= copyright section =================================  */

.copyright {
  background-color: #222831;
  color: #cdcdcd;
}

.copyright .container p.lead {
  margin-bottom: 0;
}
