:root {
  --white-color: #fff;
  --light-gray: rgba(255, 255, 255, 0.1);
  --main-color: #00bfe7;
  --dark-blue: #100028;
  --p-color: #adadad;
  --border-color: rgba(75, 74, 74, 0.659);
  --transition-timing: all 0.7s;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Cairo Play", sans-serif;
  color: var(--white-color);
  background-color: var(--dark-blue);
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.container {
  width: 80%;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: var(--white-color);
}
ul {
  padding-left: 0;
  list-style: none;
}
img {
  width: 100%;
}
.flex__x {
  display: flex;
}
.flex-x-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex__y {
  display: flex;
  flex-direction: column;
}
.mb-1 {
  margin-bottom: 1rem;
}
@keyframes bottom-top {
  0% {
    transform: translateY(300px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes bottom-top-mini {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(1rem);
  }
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* start header */
.wrapper__main {
  position: relative;
  transform: translateY(-20px);
}
.wrapper {
  position: relative;
}

.header {
  border-bottom: 1px solid var(--light-gray);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
header .icons__header {
  display: block;
}
.header__container {
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6rem 0;
  font-size: 1.5rem;
  gap: 4%;
}
.logo__img {
  width: 20%;
}
.logo__img img {
  width: 75%;
}
nav {
  width: 60%;
  text-transform: uppercase;
  line-height: 1.5;
}
nav button {
  display: none;
}
.header__list__responsive {
  display: none;
}
.header__list {
  display: block;
}
.header__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__list > li {
  position: relative;
  padding-bottom: 1rem;
}

.header__list > li::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background-color: var(--main-color);
  bottom: 0;
  left: 50%;
  transition: var(--transition-timing);
}
.active-li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  bottom: 0;
  left: 50%;
  transition: var(--transition-timing);
  left: 0;
}

.header__list > li:hover::after {
  left: 0;
  width: 100%;
}

.private__blog__details {
  position: relative;
}
.pages__details {
  width: 150px;
  height: 150px;
  background-color: var(--white-color);
  padding: 2rem;
  display: none;
  animation-name: bottom-top-mini;
  animation-duration: 1s;
  position: absolute;
  z-index: 9;
}
.private__blog__details:hover .pages__details {
  transform: translateY(1rem);
  display: block;
}
.pages__details ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pages__details a {
  color: #000;
}
.icons__header {
  width: 20%;

  gap: 5%;
  justify-content: end;
  color: var(--white-color);
  border-left: 1px solid var(--light-gray);
}
.icons {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
/* end header */
/*start main__section */
.main__section {
  background-image: url(../imgs/hero-1.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main__txt__container {
  overflow: hidden;
  position: relative;
}
.main__section .main__txt {
  animation-name: bottom-top;
  animation-duration: 3s;
}
.main__txt p {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 1.8rem 0;
}
.main__txt h1 {
  font-size: 6rem;
  line-height: 70px;
  margin-bottom: 3.8rem;
}
.main__btn {
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  padding: 1.4rem 3.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Cairo Play", sans-serif;
  font-size: 1.5rem;
}
.main__txt__container .main__btn {
  animation-name: bottom-top;
  animation-duration: 3.3s;
}
.main__btn::before {
  content: "";
  width: 30px;
  height: 30px;
  border-top: 1px solid var(--main-color);
  border-left: 1px solid var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  transition: var(--transition-timing);
}
.main__btn::after {
  content: "";
  width: 30px;
  height: 30px;
  border-bottom: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
  transition: var(--transition-timing);
}
.main__btn:hover::before {
  width: 100%;
  height: 100%;
}
.main__btn:hover::after {
  width: 100%;
  height: 100%;
}
.numbers {
  display: flex;
  gap: 3%;
  margin-top: 7%;
}
.numbers > button {
  background-color: transparent;
  border: none;
  color: var(--white-color);
  font-family: "Cairo Play", sans-serif;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}
.numbers > button::after {
  content: "";
  background-color: var(--white-color);
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
}
/*end main__section */

/*start our__services */
.our__services {
  padding: 8rem 0;
}
.our__services__titles {
  width: calc((100% - 66%));
}
.our__services__container {
  width: 66%;
}
.our__services__container > .our__services__sec {
  width: 50%;
}

.our__services__sec:not(:last-child) {
  padding-right: 2rem;
}
.our__services span {
  font-size: 1.8rem;
  color: var(--white-color);
  letter-spacing: 0.2rem;
}
.our__services h2 {
  font-size: 3.6rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 2rem 0;
  position: relative;
  padding-bottom: 1rem;
}
.our__services h2::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 15%;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
}
.our__services p {
  font-size: 1.6rem;
  color: var(--p-color);
  margin-bottom: 5rem;
}

.services__card .services__icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--main-color);
  transition: var(--transition-timing);
}
.services__card .services__icon img {
  width: 50%;
  transition: var(--transition-timing);
}
.services__card:hover .services__icon {
  rotate: 35deg;
}
.services__card:hover .services__icon img {
  rotate: -35deg;
}
.services__mini__title h3 {
  font-size: 2.2rem;
  margin-top: 2.6rem;
  margin-bottom: 1.8rem;
}
/*end our__services */
/*start albums */
.albums {
  display: flex;
  gap: 1rem;
  padding: 3rem 0;
}
.albums__layout {
  width: 33%;
}
.albums__card {
  background-position: center;
  background-size: cover;
  height: 43vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.albums__card i {
  border: 1px solid var(--white-color);
  font-size: 2rem;
  padding: 2rem;
  border-radius: 50%;
}
.albums__overlay {
  position: absolute;
  bottom: 0;
  background-color: #0000008c;
  width: 100%;
  transform: translateY(400px);
  padding: 2rem;
  transition: var(--transition-timing);
}
.albums__overlay p {
  font-size: 2.2rem;
  font-weight: 700;
}
.albums__overlay span {
  font-size: 1.6rem;
  color: var(--p-color);
}
.albums__one {
  background-image: url(../imgs/work-1.jpg);
  width: 100%;
}
.albums__one:hover .albums__overlay {
  transform: translateY(0);
}
.mini__albums__container {
  display: flex;
  gap: 1rem;
}
.albums__two {
  background-image: url(../imgs/work-5.jpg);
  flex-grow: 1;
}
.albums__three {
  background-image: url(../imgs/work-6.jpg);
  flex-grow: 1;
}
.albums__four {
  background-image: url(../imgs/work-2.jpg);
  flex-grow: 1;
  background-size: cover;
}
.albums__five {
  background-image: url(../imgs/work-3.jpg);
  flex-grow: 1;
}
.albums__six {
  background-image: url(../imgs/work-7.jpg);
  flex-grow: 1;
}
.albums__six:hover .albums__overlay {
  transform: translateY(0);
}
.albums__seven {
  background-image: url(../imgs/work-4.jpg);
  flex-grow: 1;
  height: 87.5vh;
}
.albums__seven:hover .albums__overlay {
  transform: translateY(0);
}
/*end albums */
/*start score */

.score {
  position: relative;
  padding: 4rem 0;
  margin-top: 5rem;
  overflow: hidden;
}
.score__mini__container {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 260px);
  grid-template-rows: repeat(7, 100px);
  height: 65vh;
  width: 70%;
  margin: 150px auto;
}
.score__card {
  position: relative;
  background-color: #1a083d;
  width: 250px;
  height: 250px;
  rotate: 45deg;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.score__card22 {
  grid-row: 3/4;
  grid-column: 1/2;
  margin-top: -24px;
}

.score__card23 {
  grid-row: 1/2;
  grid-column: 2/3;
}
.score__card23::before {
  content: "";
  width: 618px;
  height: 618px;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  position: absolute;
  left: -54px;
  top: -54px;
}
.score__card23::after {
  content: "";
  width: 618px;
  height: 618px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  position: absolute;
  right: -64px;
  bottom: -64px;
}
.score__card24 {
  grid-row: 3/4;
  grid-column: 3/4;
  margin-top: -24px;
}
.score__card24::before {
  content: "";
  width: 618px;
  height: 618px;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  position: absolute;
  left: -64px;
  top: -64px;
}
.score__card24::after {
  content: "";
  width: 618px;
  height: 618px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  position: absolute;
  right: -54px;
  bottom: -54px;
}
.score__card25 {
  grid-row: 1/2;
  grid-column: 4/5;
}
.score__card__wrapper {
  rotate: -45deg;

  position: relative;
}
.score__card img {
  width: 50%;
  display: block;
  text-align: center;
  margin-left: 50%;
  transform: translateX(-50%);
}
.score__number {
  font-size: 5rem;
  text-align: center;
  color: var(--white-color);
  font-weight: bold;
}
.score__txt {
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: bold;
}

/*end score */
/*start our__team */
.our__team {
  padding: 8rem 0;
  background-image: url(../imgs/team-bg.jpg);
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}
.our__team__titles span {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.our__team__titles h4 {
  font-size: 3.6rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2rem;
}
.our__team__titles h4::after {
  content: "";
  height: 5px;
  background-color: var(--main-color);
  width: 5%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.our__team__albums {
  display: flex;
}
.our__team__albums img {
  display: block;
}

.our__team__card:nth-child(1) {
  position: absolute;
  width: 20%;
  top: 0;
  left: 10%;
  top: 40%;
  overflow: hidden;
}
.our__team__card:hover .our__team__overlay {
  bottom: 0;
}
.our__team__card:nth-child(2) {
  position: absolute;
  width: 20%;
  top: 0;
  left: 30%;
  top: 30%;
  overflow: hidden;
}
.our__team__card:nth-child(3) {
  position: absolute;
  width: 20%;
  top: 0;
  left: 50%;
  top: 20%;
  overflow: hidden;
}
.our__team__card:nth-child(4) {
  position: absolute;
  width: 20%;
  top: 0;
  left: 70%;
  top: 10%;
  overflow: hidden;
}
.our__team__overlay {
  position: absolute;
  background-image: linear-gradient(
    to top,
    #000000d7,
    #000000b6,
    #00000081,
    #0000005c,
    #00000029,
    #00000000
  );
  bottom: -150px;
  padding: 4rem 1rem;
  width: 100%;
  transition: var(--transition-timing);
  left: 0;
}
.our__team__overlay p {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.our__team__overlay span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.our__team__overlay .mini__icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  font-size: 1.6rem;
}
.our__team__btn {
  position: absolute;
  right: 10%;
  bottom: 5%;
}
/*end our__team */

/*start our__blog */
.our__blog {
  padding: 6rem 0;
}

.our__blog__titles {
  text-align: center;
}
.our__blog__titles span {
  font-size: 1.6rem;
}
.our__blog__titles h4 {
  font-size: 3.6rem;
  position: relative;
  padding-bottom: 2rem;
}

.our__blog__titles h4::after {
  content: "";
  height: 5px;
  background-color: var(--main-color);
  width: 5%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.our__blog__cards {
  display: flex;

  gap: 1.5rem;
  margin-top: 4rem;
}
.index__blog__card {
  position: relative;
  width: 33%;
  padding: 4rem;
  border: 1px solid #222;
  background-image: url(../imgs/blog-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  margin-bottom: 5rem;
}
.index__blog__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #100028;
  z-index: -1;
  transition: var(--transition-timing);
}
.index__blog__card:hover::after {
  opacity: 0;
}
.index__blog__card h5 {
  font-size: 2.4rem;
  line-height: 1.3;
}
.blog__date {
  color: #7777;
  font-size: 1.4rem;
  margin: 2.3rem 0;
}
.blog__txt {
  font-size: 1.6rem;
  color: var(--p-color);
}
.read__more {
  font-size: 1.6rem;
  color: var(--white-color);
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.read__more i {
  color: gray;
  font-size: 1rem;
  padding-top: 0.6rem;
}
.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3b385d;
}
.blue__dot {
  background-color: var(--main-color);
}

/*end our__blog */

/*start fresh__idea */

.fresh__idea {
  background-image: url(../imgs/callto-bg.jpg);
  background-position: center;
  background-size: cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fresh__idea h6 {
  font-size: 4.2rem;
}

.fresh__idea p {
  font-size: 1.6rem;
  color: var(--p-color);
  margin-bottom: 5rem;
}
.stories__btn {
  background-color: #00bfe7;
  padding: 1.6rem 3.2rem;
  letter-spacing: 2px;
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Cairo Play", sans-serif;
}

/*end fresh__idea */

/* footer */

footer header {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 7.5rem;
}
.footer__icons {
  display: flex;
  font-size: 1.5rem;
  gap: 1rem;
  align-items: center;
}
.footer__icons a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #231b30;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__content {
  display: flex;
  font-size: 1.6rem;
  color: var(--p-color);
  gap: 3rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border-color);
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 3.4rem;
  color: var(--white-color);
}
.footer__content ul li {
  cursor: pointer;
}
.about__us {
  width: 30%;
}
footer .read__more {
  margin-top: 2rem;
}
footer li {
  margin-top: 1rem;
}
.who__we__are__footer,
.Our__work {
  width: 20%;
}
form {
  position: relative;
}

.Newsletter input {
  background-color: transparent;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  outline: none;
  margin-top: 3rem;
  width: 90%;
}
.Newsletter input::placeholder {
  color: var(--p-color);
  font-size: 1.6rem;
}
.Newsletter i {
  background-color: #00bfe7;
  position: absolute;
  color: var(--white-color);
  padding: 1.6rem;
  margin-left: -10%;
  bottom: 0;
}
.copy__right {
  text-align: center;
  font-size: 1.6rem;
  padding: 3rem 0;
}

.copy__right i,
.copy__right span {
  color: var(--main-color);
}

/* footer */
