/* Start spsial heading */

.speacial-heading {
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
  margin: 50px 0px;
}

.speacial-heading h1 {
  position: relative;
  font-family: "alfarooq-regular";
  font-weight: normal;
  font-size: 52px;
  text-align: center;
  color: var(--black-color);
  margin: 0;
  padding: 0 10px;
  line-height: 1.2;
  border-radius: 15px;
  z-index: 1;
  width: fit-content !important;
  text-shadow: -3px 3px 0 #fff;
}

.speacial-heading h1.dark {
  color: var(--white-color) !important;
  text-shadow: -3px 3px 0 #000 !important;

}

.speacial-heading h1::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-15px);
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: url(../media/img/spetial-heading.webp);
  background-position: center;
  background-size: cover;

  z-index: -1;
}

.speacial-heading h1 span {
  color: var(--light-color);
}

.speacial-heading h1.dark {
  color: rgb(228, 228, 228, 0.05);
}

.shadow-heading {
  position: absolute;
  font-family: "tharwat";
  font-weight: normal;
  font-size: 70px;
  text-align: center;
  color: var(--main-color);

  line-height: 1.6;

  z-index: 2;
}

.speacial-heading lord-icon {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 991px) {
  .speacial-heading h1 {
    font-size: 45px;
  }
  .speacial-heading h1::after {
  width: 85px;
  height: 85px;
  }
}

@media only screen and (max-width: 767px) {
  .speacial-heading h1 {
    font-size: 35px;
  }
    .speacial-heading h1::after {
    width: 70px ;
    height: 70px ;
  }
}

@media only screen and (max-width: 575px) {
  .speacial-heading h1 {
    font-size: 30px;
  }

}
@media only screen and (max-width: 430px) {
  .speacial-heading h1 {
    font-size: 28px;
}
}
@media only screen and (max-width: 400px) {
  .speacial-heading h1 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 370px) {
  .speacial-heading h1 {
    font-size: 25px;
  }
}

/* End spsial heading */

/* Start navbar home section */

.nav-content {
  padding: 4px 10px;
  background: var(--white-color);
  background: transparent;
  display: inline-block;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0px 2px 5px 2px var(--shdow-light-color);
  transition: all 1s ease;
  /* box-shadow: 0px 2px 5px 2px var(--shdow-light-color); */
}

.nav-content.dark {
  /* background: var(--third-color); */
  /* box-shadow: 0px 2px 5px 2px var(--shdow-dark-color); */
  box-shadow: 0px 2px 5px 2px var(--shdow-dark-color);
}

.scrolled {
}

.scrolled.dark {
}

.scroll-line {
  position: absolute;
  bottom: -2px;
  left: 0px;
  height: 6px;
  width: 0%;
  /* border-radius: 30px; */
  border-radius: 0px 20px 20px 0px;

  background: var(--main-color);
  z-index: 1000;
  transition: width 0.1s linear;
}

.scroll-line.dark {
  background: var(--secondry-color);
}

.nav-content .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 5px;
}

@media only screen and (max-width: 767px) {
  .nav-content .content {
    padding: 0px 10px;
  }
}

.nav-content .content-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .nav-content .content-2 {
    /* flex-direction: row-reverse; */
    justify-content: flex-end;
    gap: 10px;
  }
}

.logo {
  text-decoration: none !important;
}

.logo img {
  width: 150px;
  padding-left: 10px;
  padding: 5px;
}

@media only screen and (max-width: 767px) {
  .logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .logo img {
    width: 120px;
  }
}

.bars {
  display: none;
}
/* نسخة مصغرة للموبايل فقط */
@media only screen and (max-width: 767px) {
  .bars {
    display: block;
    font-size: 36px;
    color: var(--main-color);
    cursor: pointer;
  }

  .bars.dark {
    color: var(--secondry-color);
  }

  .links {
    flex-direction: column;
    gap: 10px;
    background: var(--white-color);
    position: absolute;
    top: calc(100% + 10px);
    left: calc(-100% - 50px);
    width: 100%;
    z-index: 999;
    transition: 0.7s;
    background: transparent;
  }

  .active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white-color);
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
  }
}

/* Start snipper */

.parent-spinner {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.spinner {
  width: 27px;
  height: 27px;
  --clr: var(--main-color);
  --clr-alpha: var(--main-color);
  --clr-alpha: var(--secondry-color);
  animation: spinner 3s infinite linear;
  transform-style: preserve-3d;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-13px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(13px);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: rotate(180deg) rotateX(180deg) rotateY(180deg);
  }

  100% {
    transform: rotate(360deg) rotateX(360deg) rotateY(360deg);
  }
}

/* End snipper */

.links {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .links li {
    width: 100%;
    text-align: center;
    /* display: flex;
  flex: 1;
  justify-content: center;
  align-items: center; */
  }
}

.create-account {
  font-family: "alfarooq-regular";
  text-align: center;
  text-decoration: none !important;
  background: var(--third-color);
  padding: 5px 10px;
  padding-left: 10px;
  border-radius: 15px;
  color: var(--black-color);
  font-size: 22px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  transition: all linear 0.2s;
  width: 100%;
  gap: 3px;
  flex: 1;
}

.create-account:hover {
  background: var(--white-color);
  color: var(--main-color);
  box-shadow: 0px 0px 6px 0px var(--main-color);
}

@media only screen and (max-width: 991px) and (min-width: 767px) {
  .create-account {
    font-size: 23px;
  }
}

.login-button {
  font-family: "alfarooq-regular";
  text-decoration: none !important;
  background: var(--light-color);
  padding: 5px 10px;
  padding-left: 10px;
  border-radius: 15px;
  color: var(--white-color);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  transition: all linear 0.2s;
  gap: 8px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .create-account,
  .login-button {
    width: calc(100% - 20px);
    margin: auto;
  }
}

.login-button:hover {
  background: var(--white-color);
  color: var(--black-color);
  box-shadow: 0px 0px 6px 0px var(--main-color);
}

.icon-login-button {
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 991px) and (min-width: 767px) {
  .login-button {
    font-size: 23px;
  }
}

.login-button svg {
  color: var(--light-color);
}

/* End navbar home section */

/* Start navbar side */

.user-menu {
  padding-left: 50px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  background: var(--secondry-color);
  box-shadow: 0 0 0px 2px var(--main-color);
}

.user-icon {
  color: var(--main-color);
  font-size: 18px;
  padding-top: 5px;
  padding-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .user-icon {
    font-size: 16px;
    margin: 0px;
  }
}

.user-menu::before {
  content: "\f13a";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
  font-size: 23px;
  transition: 0.5s;
}

.user-menu.open::before {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 64px;
  right: 0;
  background: var(--main-color);
  /* border: 2px solid var(--white-color); */
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  text-align: right;
  z-index: 999;
}

.dropdown-content.dark {
  background: var(--secondry-color);

}

.dropdown-content svg {
  color: var(--main-color);
}

.box-shadow {
  box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-content.open {
  max-height: 500px;
}

.dropdown-content a {
  font-family: "lamasans-bold";
  font-weight: 500;
  font-size: 17px;
  padding: 10px 15px;
  text-decoration: none !important;
  color: var(--secondry-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.dropdown-content a.dark {
  color: var(--main-color);

}

.dropdown-content a:hover {
  background: var(--secondry-color);
  color: var(--main-color);
}

.dropdown-content a.dark:hover {
  background: var(--main-color);
  color: var(--secondry-color);

}

.dropdown-content a:hover svg {
  color: var(--secondry-color);
}

.swal2-popup {
  border-radius: 30px;
  border: 3px solid var(--white-color);
}

.swal2-title {
  font-family: "DG-3asomy-Regular" !important;
  font-weight: normal !important;
}

.swal2-html-container {
  font-family: "lemonada" !important;
  font-size: 15px !important;
}

.swal2-confirm {
  font-family: "lemonada" !important;
  font-size: 13px !important;
  border-radius: 15px !important;
}

.swal2-cancel {
  font-family: "lemonada" !important;
  font-size: 13px !important;
  border-radius: 15px !important;
}

/* End navbar side */

/* Start header home section */

.header-home .content {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .header-home .content {
    align-items: center;
    text-align: center;
  }
}

.main-img-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-top: 100px;
  margin-bottom: 20px;
}

.main-img-home img.dark {
  content: url(../media/img/main-img.webp);
}

.header-home h3 {
  position: relative;
  font-family: "alfarooq-regular";
  color: var(--main-color);
  margin: 0;
  padding: 20px;
  padding-right: 0px;
  font-size: 52px;
  text-align: right;
  line-height: 1.8;
  width: fit-content;
  text-shadow: -3px 3px 0px #fff;
}

.header-home h3.dark {
  color: var(--white-color);
  text-shadow: -3px 3px 0px #000;
}

.header-home h3::after {
  content: "";
  background-image: url(../media/img/spetial-heading.webp);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  transform: translateY(20px);
  left: -14px;
  width: 100px;
  height: 100px;
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .header-home h3 {
    font-size: 45px;
    
  }

  /* .header-home h3::after {
    width: 80px;
    height: 80px;
  } */
}

@media only screen and (max-width: 767px) {
  .header-home h3 {
    font-size: 45px;
    padding: 10px;
    text-align: center;
  margin-bottom: 20px;

  }

  .header-home .content {
    margin-top: 100px;
  }
  
  .main-img-home {
    margin-top: 30px;
  }
}



@media only screen and (max-width: 575px) {
  .header-home h3 {
    font-size: 40px;
  }

    .header-home h3::after {
    width: 70px;
    height: 70px;
  }
}
.header-home h3 span {
  color: var(--light-color);
}

.header-home h3 .icon {
  font-family: "Expo Arabic Book";
}


.header-home p {
  font-family: "arslan";
  color: var(--black-color);
  font-size: 40px;
  text-align: right;
  line-height: 1.1;
}

.header-home p.dark {
  color: var(--white-color);
}

.header-home p span {
  color: var(--light-color);
}
.header-home p span.dark {
  color: var(--third-color);
}

@media only screen and (max-width: 991px) {
  .header-home p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-home p {
    font-size: 30px;
    text-align: center;
  }
}

.btn-create {
  display: flex;
  justify-content: center;
}

.create-new-account {
  position: relative;
  font-family: "alfarooq-regular";
  font-weight: normal;
  text-decoration: none !important;
  background: var(--light-color);
  padding: 5px 20px;
  color: var(--white-color);
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all linear 0.2s;
  width: fit-content;
}

.create-new-account.dark {
  background: var(--third-color);
  color: var(--black-color);
}
.create-new-account:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.create-new-account:hover.dark {
  background: var(--white-color);
  color: var(--main-color);
}

.create-new-account::after {
  content: "";
  position: absolute;
  top: -8px;
  border: 3px solid var(--main-color);
  border-bottom: none;
  width: calc(100% + 16px);
  height: 50%;
}
.create-new-account::before {
  content: "";
  position: absolute;
  bottom: -8px;
  border: 3px solid var(--main-color);
  border-top: none;
  width: calc(100% + 16px);
  height: 50%;
}

.create-new-account.dark::after,
.create-new-account.dark::before {
  border-color: var(--white-color);
}

.main-img-home img {
  width: 450px;
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .header-home .main-img-home {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-home .main-img-home img {
    width: 300px;
  }
}

/* end header home section */

/* Strat about hom section */

.container-about {
  background: linear-gradient(rgba(241, 199, 49, 0.5), rgba(241, 199, 49, 0.5)),
    url("/media/img/pattern-about.webp") no-repeat center/cover;
  border-radius: 15px;
  margin-top: 20px;
  padding: 10px;
  /* gap: 20px; */
}

.card-about {
  position: relative;
  background: var(--white-color);
  border-radius: 15px;
  border-top: 15px solid var(--main-color);
  padding: 10px;
  margin: 15px;
  text-align: right;

}
.img-about {
  width: 70px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.2;
}

.title-about {
  position: relative;
  font-family: "Somar-ExtraBold";
  font-size: 22px;
  margin-bottom: 10px;
  z-index: 2;
}

.content-about {
  font-family: 'LamaSans-Regular';
  font-size: 20px;
  text-align: center;
  color: #787878;
}


/* End about hom section */

/* Start acdmic year section home  */

.speacial-heading {
  justify-content: center;
}

.card-year {
  padding: 20px;
  text-align: center;
  margin: 5px;
  border-radius: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.card-year a:hover {
  text-decoration: none;
}

.img-card-year {
  position: relative;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  
}

.img-card-year:hover {
  opacity: 0.5;
}


.img-card-year.dark {
  border: 3px solid var(--third-color);
}

.content-year {
  background: var(--third-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  top: -45px;
  width: 90%;
  margin: auto;
  padding: 10px;
}

.content-year hr {
  width: 90%;
  margin: auto;
  border: none;
  background : var(--main-color) ;
  height: 1px;
}

.title-card-year {
  font-family: "lamasans-bold";
  font-size: 26px;
  margin: 0;
  color: var(--main-color);
}

.info-card-year {
  margin: 0;
  font-size: 19px;
  color: #535353;
}


/* End acdmic year section home  */

/* Start courses section home */

.card-course {
  margin-bottom: 20px;
}

.course {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  background: var(--main-color);
  border-radius: 20px;
  padding: 15px;
  /* margin-bottom: 20px ; */
  height: 100%;
}

.course.dark {
  background: var(--secondry-color);

}

.course-free {
  position: relative;
}

.course-free::after {
  content: url(../media/img/free-light.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.course-free.dark::after {
  content: url(../media/img/free-dark.svg);
}

.course img {
  width: 100%;
  border-radius: 20px;
}

.content-course {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* position: relative; */
  /* top: -30px; */
  /* background: var(--main-color); */
  /* border-radius: 20px; */
  /* padding-bottom: 15px; */
}

.content-course h4 {
  font-family: "Somar-ExtraBold";
  color: var(--white-color);
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  padding: 10px 5px;
}

.content-course h4.dark {
  color: var(--main-color);
}

.content-course .number-lect {
  position: relative;
  width: calc(100% + 30px);
  left: 15px;
  font-family: "lamasans-regular";
  font-weight: bold;
  text-align: center;
  background: var(--secondry-color);
  padding: 10px 5px;
  margin-bottom: 10px;
  font-size: 19px;
  color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.content-course .number-lect.dark{
  background: var(--main-color);
  color: var(--white-color);


}

.data-course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-grow: 1; */
}

.data-course .price {
  font-family: "lamasans-bold";
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  gap: 4px;
  padding: 4px 8px;
  background: var(--secondry-color);
  border-radius: 10px;
  font-size: 20px;
  margin: 5px 0px;
  color: var(--main-color);
}

.data-course .price.dark {
  background: var(--main-color);
  color: var(--white-color);

}

.data-course .price span {
  font-family: "lamasans-BoldItalic";
  font-size: 16px;
  color: var(--main-color);
  background: var(--white-color);
  padding: 0;
  border-radius: 20px;
  padding: 0px 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;

}

.data-course .price-free {
  font-family: "lamasans-bold";
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
  background: var(--white-color);
  font-size: 19px;
  color: var(--main-color);
  padding: 5px 7px;
  border-radius: 10px;
}

.data-course .price-free.dark {
  background: var(--main-color);
  color: var(--white-color);
  
}

.data-course .price-del {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-family: "lamasans-bold";
  padding: 4px 6px;
  background: var(--secondry-color);
  border-radius: 10px;
  font-size: 15px;
  margin: 5px 0px;
}

.data-course .price-del.dark {
  background: var(--main-color);
  color: var(--white-color);
  
}

.data-course .price-del span {
  font-family: "lamasans-BoldItalic";
  background: var(--white-color);
  color: var(--main-color);
  text-decoration: line-through;
  border-radius: 20px;
  padding: 0px 8px;
}


.info-course p {
  font-family: "lemonada";
  font-size: 12px;
  /* display: inline-flex; */
  align-items: center;
  gap: 9px;
  margin: 0;
  margin-top: 7px;
  color: var(--white-color);
}

.info-course p.dark {
  color: var(--main-color);

}

@media only screen and (max-width: 400px) {
  .info-course p {
    font-size: 11px;
  }
}

.info-course p svg {
  color: var(--secondry-color);
}

.info-course p svg.dark {
  color: var(--main-color);

}

.course-subscription {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
}

.course-subscription .check {
  font-family: "Somar-ExtraBold";
  /* font-weight: bold; */
  text-decoration: none;
  background: var(--white-color);
  padding: 10px 5px;
  /* padding-bottom: 12px; */
  width: 100%;
  text-align: center;
  margin: 0;
  border-radius: 10px;
  font-size: 22px;
  color: var(--main-color);
  line-height: 1;
  border-right: 6px var(--secondry-color) solid;
}


.course-subscription .check:hover {
  background: var(--secondry-color);
  color: var(--main-color);
}

.course-subscription .check.dark {
  background: var(--main-color);
  color: var(--white-color);
  border-right: 6px var(--white-color) solid;


}

.course-subscription .check.dark:hover {
  background: var(--white-color);
  color: var(--main-color);
}

.course-subscription .subscription {
  font-family: "lamasans-regular";
  font-weight: bold;
  text-decoration: none;
  background: var(--main-color);
  padding: 3px 7px;
  margin: 0;
  border-radius: 15px;
  font-size: 15px;
  color: #fff;
  border: 3px var(--secondry-color) solid;
}

.course-subscription .subscription:hover {
  background: #fff;
  color: var(--main-color);
}

.you-subscription {
  background-color: rgb(250, 247, 230);
  font-size: 15px;
  padding: 6px 12px;
  border: 2px dashed var(--main-color, #b91c1c);
  border-radius: 12px;
  text-align: center;
  font-family: "Cairo", sans-serif;
}
@media (max-width: 400px) {
  .you-subscription {
    font-size: 13px;
  }
}

/* End courses section home */

/* Start courses section course's student */

.courses-home {
  /* margin-top: 100px; */
}

/* End courses section course's student */

/* Start footer section home */

.footer-home {
  display: block;
  width: 100%;
  margin-top: 60px;
  background: var(--main-color);
  position: relative;
}

.footer-home.dark {
  background: var(--secondry-color);

}

.img-footer {
  width: 250px;
  display: block;
  margin: 50px auto 0px auto;
}

@media only screen and (max-width: 991px){
  .img-footer {
    width: 220px;
  }
}

@media only screen and (max-width: 767px){
  .img-footer {
    width: 180px;
  }
}

@media only screen and (max-width: 575px){
  .img-footer {
    width: 150px;
  }
}

.img-footer.dark {
  content: url(../media/img/logo.webp);
}

.coat-footer {
  font-family: "Aref Ruqaa";
  font-weight: normal;
  text-align: center;
  color: var(--secondry-color);
  font-size: 40px;
}

.coat-footer.dark {
  color: var(--main-color);

}

@media only screen and (max-width: 767px) {
  .coat-footer {
    font-size: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .coat-footer {
    font-size: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .coat-footer {
    font-size: 28px;
  }
}

.coat-footer span {
  color: var(--secondry-color);
}

.hr-footer {
  width: 50%;
  border: 3px solid var(--secondry-color);
  margin: 20px auto;
  border-radius: 20px;
}

.hr-footer.dark {
  border: 3px solid var(--main-color);

}

@media only screen and (max-width: 575px) {
  .hr-footer {
    width: 80%;
  }
}

.icon {
  margin: 30px 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.icon p {
  margin: 0;
  font-family: "tharwat";
  font-size: 40px;
  color: var(--secondry-color);
}

@media only screen and (max-width: 991px){
  .icon p {
    font-size: 35px;
  }
}

.icon p.dark {
  color: var(--main-color);
  
}

.footer-home .icon a img {
  width: 70px;
}
.footer-home .icon a img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 575px) {
  .footer-home .icon a img {
    width: 50px;
  }
}

.footer-home .coat {
  font-family: "El Messiri";
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 21px;
}

.footer-home .coat span {
  color: var(--light-color);
}

.copy-right {
  font-family: "Somar-ExtraBold";
  letter-spacing: 1px;
  font-weight: bolder;
  text-align: center;
  background: var(--secondry-color);
  color: var(--main-color);
  font-size: 20px;
  width: 100%;
  /* height: ; */
  padding: 25px 5px;
  margin: 0;
}

@media only screen and (max-width: 991px){
  .copy-right {
    font-size: 15px;
  }
}

.copy-right.dark {
  background: var(--main-color);
  color: var(--secondry-color);

}

.footer-home .copy-right svg {
  padding-left: 10px;
}

.footer-home .copy-right .ros {
  color: #B6771D;
  text-decoration: none;
}
.footer-home .copy-right .ros:hover {
  color: var(--main-color);
  transform: scale(1.1);
}

.footer-home .copy-right .ros.dark:hover {
  color: var(--white-color);
  
}

/* .footer-home .copy-right svg {
  color: var(--light-color);
  font-size: 25px;
}

.footer-home .copy-right svg:hover {
  color: #25408f;
  transform: scale(1.1);
} */

/* End footer section home */



/* Start year page */

.img-year {
  width: 100%;
  border-radius: 15px;
}

.img-year.dark {
  border: 3px solid var(--third-color);
}

.img-year:hover {
  opacity: 0.8;
}

/* Start year page */