:root {
  /* ========== GREEN THEME ========== */
  --color-primary: #ff7b02;
  --color-primary-variant: #e5a55d;
  --color-bg-1: #000e17;
  --color-bg-2: #001e2d;
  --color-bg-3: #012734;
  --color-bg-4: #003347;
  --color-light: #85a2b2;
  --color-white: hsl(0, 0%, 90%);

  /* ========== PURPLE THEME ========== */
  /* --color-primary: #ff7b02;
    --color-primary-variant: #e5a55d;
    --color-bg-1: #140021;
    --color-bg-2: #1e0032;
    --color-bg-3: #25003e;
    --color-bg-4: #36005a;
    --color-light: #d0b8e0;
    --color-white: hsl(0, 0%, 90%); */

  --container-width-lg: 88%;
  --container-width-md: 92%;

  --transition: all 400ms ease;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: rgb(229, 165, 93, 0.2);
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--color-primary-variant);
  border-radius: 0.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--color-bg-3);
  color: var(--color-light);
  line-height: 1.7;
}

h1,
h2 {
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: 4rem;
  color: var(--color-white);
}

h2 {
  font-size: 3.5rem;
}

a {
  color: var(--color-light);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

.container {
  width: var(--container-width-lg);
  margin: 0 auto;
  max-width: 2160px;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
}

/* ========================= NAV ========================= */
nav {
  height: 5rem;
  width: 100vw;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

/* nav class on scroll using javascript */
.window-scrolled {
  background: var(--color-bg-2);
  border-bottom: 0.2rem solid var(--color-bg-3);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}

.nav__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__frames {
  position: absolute;
  top: 100vh;
  right: 80rem;
}

/* only need on tablets and phones */
.nav__toggle-btn {
  display: none;
}

.nav__logo {
  width: 10rem;
}

.nav__links {
  display: flex;
  gap: 4rem;
}

.nav__socials {
  display: flex;
  gap: 1rem;
}

.nav__socials a {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    var(--color-primary-variant),
    var(--color-primary)
  );
  border-radius: 0.5rem;
  color: var(--color-bg-4);
  display: grid;
  place-items: center;
}

.nav__socials a:hover {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
}

/*===============================Header========================================*/
header {
  max-width: 100vw;
  height: 1450vh;
  box-sizing: border-box;
  position: relative;
  top: 10rem;
  background: linear-gradient(var(--color-bg-1));
  overflow: hidden;
}

.header__container {
  grid-template-columns: 43% 53%;
  gap: 4%;
  margin-top: 10rem;
  position: relative;
}

.header__image-bg {
  background: var(--color-bg-4);
  height: 22rem;
  width: 16rem;
  position: absolute;
}

.header__image-lg {
  width: 29rem;
  position: relative;
  top: 1rem;
  left: 1rem;
  filter: saturate(0) brightness(0.3);
  transition: var(--transition);
}

.header__image-sm {
  width: 28rem;
  height: 35rem;
  overflow: hidden;
  position: absolute;
  left: 10rem;
  top: 6rem;
  transition: var(--transition);
}

.header__left:hover .header__image-sm {
  opacity: 0;
}

.header__left:hover .header__image-lg {
  filter: saturate(1) brightness(1);
  border: 1rem solid var(--color-bg-4);
  top: 0;
  left: 0;
}

.header__head {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.header__right {
  margin-top: 5rem;
  width: 40%;

  margin-left: 50rem;
  margin-top: -30rem;
  bottom: 25rem;
}
.empty {
  height: 3.5rem;
  width: 18rem;
  background: var(--color-primary);
  border-radius: calc(3.5rem / 2);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
}
.header__right h2 {
  color: var(--color-primary-variant);
  font-size: 2rem;
  padding-bottom: 1rem;
  display: flex;

  text-align: left;
  line-height: 3rem;
  width: 110%;
}
.header__right a {
  color: var(--color-white);
  text-decoration: underline;
}
.header__right p {
  line-height: 3rem;
  color: var(--color-light);
  text-align: justify;
}
.header__frame-image {
  position: relative;
  width: 55%;
  left: 8rem;
}
.header__frames .empty2 {
  position: relative;
  height: 2rem;
  width: 35rem;
  background: var(--color-primary);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 50rem;
  top: 10rem;
  margin-bottom: 8rem;
}

.header__frames h2 {
  padding-left: 10rem;
  position: relative;
  left: 40rem;
  top: 5rem;
  color: var(--color-white);
}
.header__frames p {
  padding-left: 10rem;
  position: relative;
  left: 40rem;
  top: 6rem;
  color: var(--color-primary-variant);
}

.header__frame-image .border img {
  position: relative;
  width: 300px;
  height: 420px;
  overflow: hidden;
  box-shadow: inset 1rem 1rem 1rem rgba(231, 223, 223, 0.832);
  border-radius: 2rem 2rem 2rem 2rem;
  left: 18rem;
  bottom: 4em;
}
.header__frames .inline2 {
  position: relative;
  height: 2rem;
  width: 35rem;
  background: var(--color-primary);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 2rem;
  top: 10rem;
}
.header__frame2 p {
  position: relative;
  width: 35%;
  color: var(--color-white);
  left: 50rem;
}
.paragraph p {
  color: var(--color-white);
  position: relative;
  display: flex;
  padding-left: 2rem;
  width: 300%;
  bottom: 50rem;
  top: -18rem;
  text-align: justify;
}

.beloved__header .inline3 {
  position: relative;
  height: 4rem;
  width: 25rem;
  background: var(--color-bg-4);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  left: 52rem;
  bottom: 8rem;
}
.beloved__header a {
  position: relative;
  color: var(--color-primary);
  text-decoration: underline;
  display: flex;
  text-align: center;
  justify-content: center;
  bottom: -1rem;
}
.beloved__header p {
  position: relative;
  color: var(--color-white);
  display: flex;
  text-align: center;
  justify-content: center;
  left: -6rem;
  top: 2rem;
}
.hevaen__header img {
  min-width: 720px;
  min-height: 486px;
  position: relative;
  display: flex;
  margin-top: 5rem;
  right: 12rem;
  top: 12rem;
}
.hevaen__header-bg {
  background: var(--color-bg-4);
  height: 28rem;
  width: 25rem;
  position: absolute;
  right: 13rem;
  top: 15rem;
  border-radius: 1rem 0 0;
}
.hevaen__header-bg2 {
  background: var(--color-bg-4);
  height: 28rem;
  width: 25rem;
  position: absolute;
  left: 10rem;
  top: 22rem;
  border-radius: 0rem 0 1rem;
}
.hevaen__header h2 {
  position: relative;
  top: 18rem;
  left: -40rem;
  display: flex;
  text-align: left;
  font-size: 3rem;
}
.hevaen__header p {
  width: 130%;
  position: relative;
  top: 19rem;
  left: -40rem;
  display: flex;
  text-align: left;
  color: var(--color-primary-variant);
}
.exhibitions__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 25rem;
  margin-left: -15rem;
  gap: 2rem;
  width: 45vw;
  height: 33vh;
}
.exhibitions__gallery article {
  border: 0.5rem solid var(--color-bg-4);
  transition: var(--transition);
  border-radius: 5rem;
  overflow: hidden;
}
.empty3 {
  position: relative;
  height: 2rem;
  width: 65rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: -66rem;
  top: 16rem;
  margin-bottom: 8rem;
}
.__gallery-hevean h2 {
  position: relative;
  display: flex;
  left: -10rem;
  width: 200%;
}
.__gallery-hevean p {
  position: absolute;
  display: flex;
  text-align: justify;

  margin-left: -16rem;
  margin-top: 2rem;
  color: var(--color-primary-variant);
}
.__gallery-hevean img {
  border-radius: calc(2rem);
  box-shadow: inset 0 5rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  display: flex;
  position: relative;
  z-index: 10;
}
.__gallery-hevean p {
  position: relative;
  display: flex;
  width: 250%;
  left: -10rem;
  top: 5rem;
  text-align: left;
}
.__gallery-hevean-p2 p {
  position: relative;
  display: flex;
  width: 200%;
  top: 4rem;
  left: 8rem;
  text-align: justify;
  color: var(--color-white);
  line-height: 2rem;
}
.empty7 {
  position: relative;
  height: 2rem;
  width: 50rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: -51rem;
  bottom: -52rem;
  margin-bottom: 8rem;
}
.inline4 {
  position: relative;
  height: 3rem;
  width: 55rem;
  background: var(--color-bg-4);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  left: 2rem;
  top: 2rem;
}
.inline4 a {
  display: flex;
  position: relative;
  justify-content: center;
  text-align: center;
  top: 2rem;
  font-size: 0.7rem;
  transition: var(--transition);
}
.inline4:hover a {
  color: var(--color-primary-variant);
}
.empty4 {
  position: relative;
  height: 2rem;
  width: 35rem;
  background: var(--color-primary);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: -22rem;
  bottom: 35rem;
  margin-bottom: 8rem;
}

.fatyma {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  top: 8rem;
  border: 0.5rem solid var(--color-bg-4);
  border-radius: 12rem;
  overflow: hidden;
  z-index: 10;
  right: 25rem;
}
.empty5 {
  position: relative;
  height: 2rem;
  width: 12rem;
  background: var(--color-primary);
  border-radius: calc(0.3rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-bg-4);
  right: 9rem;
  bottom: 10rem;
  margin-bottom: 8rem;
}
.empty5 p {
  width: 300%;
  position: relative;
  display: flex;
  left: 18;
  top: 0;
  font-size: 1.6rem;
  gap: 2rem;
  color: var(--color-primary-variant);
}
.fatyma__p p {
  width: 280%;
  text-align: left;
  top: 2rem;
  left: 18;
  color: var(--color-white);
}
.empty6 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 50rem;
  background: var(--color-primary);
  border-radius: calc(0.4rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: 50rem;
  top: 5rem;
}
.empty6 p {
  position: absolute;
  display: flex;
  left: 51rem;
  top: -0rem;
  width: 85%;
  text-align: justify;
  font-size: 1rem;
}
.empty8 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 35rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 30rem;
  top: 25rem;
}
.header__Walnut {
  position: relative;
  display: flex;
  width: 80%;
  top: 25rem;
  right: 25rem;
}
.header__Walnut h2 {
  position: relative;
  display: flex;
  left: -5rem;

  margin-top: 5rem;
  top: -12rem;
  font-size: 2rem;
  text-align: center;

  padding: 1rem;
  margin-left: 8rem;
}
.header__Walnut p {
  position: absolute;
  display: flex;
  left: 2rem;
  top: -2rem;
  width: 250%;
  font-size: 1rem;
  text-align: left;

  padding: 1rem;
}
.header__Walnut__image img {
  position: absolute;
  display: flex;
  top: 65rem;
  width: 450px;
  height: 580px;
  border: 0.5rem solid var(--color-bg-4);
  transition: var(--transition);
  border-radius: 5rem;
  overflow: hidden;
  z-index: 10;
}
.empty9 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 65rem;
  background: var(--color-primary);
  border-radius: calc(1rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 25rem;
  top: 40rem;
}
.header__Walnut-p {
  position: relative;
  display: flex;
  bottom: 0;
  width: 400%;
  margin-top: 70rem;
  text-align: justify;
}
.header__Walnut-p p {
  position: relative;
  display: flex;
  text-align: justify;
  color: var(--color-white);
  left: -15rem;
  font-size: 1.3rem;
  z-index: 10;
  top: 4rem;
}
.empty10 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 30rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: 40rem;
  top: -13rem;
}
.inline5 {
  position: relative;
  height: 3rem;
  width: 30rem;
  background: var(--color-bg-4);
  border-radius: calc(2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  left: 2rem;
  top: 2rem;
  overflow: hidden;
}
.inline5 a {
  display: flex;
  position: relative;
  justify-content: center;
  text-align: center;
  top: 2rem;
  width: 110%;
  font-size: 0.6rem;
  left: -2rem;

  transition: var(--transition);
}
.inline5:hover a {
  color: var(--color-primary-variant);
}
/* ==================================*/
.header__With-the-Wind {
  position: relative;
  display: grid;
  width: 100%;
  left: -20rem;
}
.header__With-the-Wind h1 {
  position: relative;
  display: flex;
  width: 200%;
  font-size: 2.5rem;
  top: 4rem;
  left: 0;
  text-align: center;
  color: var(--color-primary-variant);
}
.header__With-the-Wind h2 {
  position: relative;
  display: flex;
  width: 80%;
  font-size: 2rem;
  top: 6rem;
  left: -1rem;
  text-align: center;
  font-weight: 100;
  line-height: 2rem;

  padding: 1rem;
}
.header__With-the-Wind h3 {
  position: relative;
  display: flex;
  width: 200%;
  font-size: 1.8rem;
  top: 6rem;
  text-align: center;
  color: var(--color-white);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-the-Wind h4 {
  position: relative;
  display: flex;
  width: 30%;
  font-size: 1.6rem;
  top: 6rem;
  left: 0rem;
  text-align: center;
  color: var(--color-white);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-the-Wind h5 {
  position: relative;
  display: flex;
  width: 30%;
  font-size: 1.6rem;
  top: 6rem;
  left: 0rem;
  text-align: center;
  color: var(--color-white);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-the-Wind img {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: calc(180rem);
  border: 6px solid var(--color-light);
  margin-top: 12rem;
  left: -8rem;
  width: 720px;
  z-index: 10;
}
.header__With-the-Wind .empty10 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 30rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 50rem;
  top: -15rem;
}
.header__With-the-Wind .empty11 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 30rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: 50rem;
  top: -21rem;
}
.header__With-the-Wind p {
  position: relative;
  display: flex;
  right: 10rem;
  width: 100%;
  text-align: justify;
  left: -9rem;
  margin-top: 0rem;
  color: var(--color-white);
  font-size: 1.5rem;
}
.inline6 {
  position: relative;
  height: 4rem;
  width: 30rem;
  background: var(--color-bg-4);
  border-radius: calc(2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  left: -1rem;
  top: 6rem;
  overflow: hidden;
}
.inline6 a {
  display: flex;
  position: relative;

  text-align: left;
  top: 1rem;
  width: 130%;
  font-size: 1.2rem;
  left: -5rem;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-primary-variant);
}
.inline6:hover a {
  color: var(--color-primary);
}
.inline6 p {
  display: flex;
  position: relative;
  text-align: left;
  top: 9rem;
  left: -8rem;
  color: var(--color-light);
}
/*==============================lost swan===============*/
.header__With-last-swan {
  position: relative;
  display: grid;
  width: 100%;
  top: 5rem;
}
.header__With-last-swan h1 {
  position: relative;
  display: flex;
  width: 30%;
  font-size: 2rem;
  top: 6rem;
  left: 6rem;
  padding: 1rem;
  text-align: center;
  font-size: 2.5rem;
}
.header__With-last-swan h2 {
  position: relative;
  display: flex;
  width: 35%;
  font-size: 2rem;
  top: 15rem;
  left: -28rem;
  text-align: center;
  color: var(--color-white);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-last-swan h3 {
  position: relative;
  display: flex;
  width: 35%;
  font-size: 2rem;
  top: 15rem;
  left: -18rem;
  text-align: center;
  color: var(--color-white);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-last-swan h4 {
  position: relative;
  display: flex;
  width: 35%;
  font-size: 2rem;
  top: 2rem;
  left: -18rem;
  text-align: center;
  color: var(--color-primary-variant);
  font-weight: 200;
  line-height: 2rem;
}
.header__With-last-swan h5 {
  position: relative;
  display: flex;
  width: 35%;
  font-size: 2rem;
  top: 1rem;
  left: -18rem;
  text-align: center;
  color: var(--color-primary-variant);
  font-weight: 200;
  line-height: 2rem;
}
.empty12 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 40rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: 35rem;
  bottom: 10rem;
}
.empty13 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 50rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 22rem;
  bottom: 15.5rem;
}
.header__With-last-swan img {
  position: relative;
  display: flex;
  width: 420px;
  height: 500px;
  left: -20rem;
  border-radius: 2rem;
}
.header__With-last-swan-p h2 {
  position: relative;
  display: flex;
  left: 5rem;
  width: 50%;
  top: 3rem;
  left: -30rem;
  color: var(--color-primary-variant);
}
.header__With-last-swan-p p {
  position: relative;
  display: flex;

  width: 110%;
  top: 5rem;
  left: -10rem;
  text-align: justify;
  padding: 1rem;
  color: var(--color-white);
  font-size: 1.2rem;
}

.inline7 {
  position: relative;
  height: 12rem;
  width: 30rem;
  background: var(--color-bg-4);
  border-radius: calc(2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.8);
  border: 6px solid var(--color-bg-4);
  left: -1rem;
  top: 12rem;
  overflow: hidden;
}
.inline7 a {
  display: flex;
  position: relative;

  text-align: left;
  top: 1rem;
  width: 130%;
  font-size: 1.2rem;
  left: -5rem;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-primary-variant);
}
.inline7:hover a {
  color: var(--color-primary);
}
.inline7 p {
  display: flex;
  position: relative;
  text-align: left;
  top: 9rem;
  left: -8rem;
  color: var(--color-light);
}
.inline7 h2 {
  display: flex;
  position: relative;
  top: 1rem;
  bottom: 2rem;
  left: 0;
  width: 150%;
  font-size: 1rem;
  text-align: left;
}
.header__With-last-swan-p h3 {
  position: relative;
  display: flex;
  left: 5rem;
  width: 100%;
  top: 5rem;
  left: -20rem;
  text-align: left;
  line-height: 3rem;
  color: var(--color-white);
  font-size: 1.2rem;
}
/*=============================turtlr====================*/
.empty14 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 42rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  left: 22rem;
  margin-top: 20rem;
}
.empty15 {
  position: relative;
  display: flex;
  height: 2rem;
  width: 42rem;
  background: var(--color-primary);
  border-radius: calc(0.2rem);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
  right: 35rem;
  margin-top: -5.7rem;
}

.header__turtle h1 {
  position: relative;
  display: flex;
  width: 100%;
  font-size: 3rem;
  top: -6rem;
  left: 10rem;
  text-align: center;

  color: var(--color-primary-variant);
}
.header__turtle img {
  position: relative;
  display: flex;
  width: 400px;
  height: 600px;
  justify-content: center;
  left: 24rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 6px solid var(--color-light);
  border-radius: calc(0.2rem);
}

.header__turtle p {
  position: relative;
  display: flex;
  left: -15rem;
  top: -30rem;

  text-align: left;
  width: 150%;
  font-size: 1.2rem;
}
table {
  position: relative;

  width: 300%;
  left: -20rem;
  bottom: 38rem;
}
table,
td {
  text-align: left;
  padding: 1rem 0 0.5rem 0;
  color: var(--color-white);
  text-align: left;
  border: 0.01px inset;
  color: var(--color-primary-variant);
}

thead,
tfoot {
  color: #fff;
}
th {
  font-weight: 100;
  padding: 0.5rem;

  text-align: left;
}
/*==================================footer ========================*/
footer {
  margin-top: 7rem;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__container {
  position: relative;
  border: 0.5rem solid var(--color-bg-4);
  padding-top: 5rem;
  background: var(--color-light);
  box-shadow: inset 1rem 1rem 1rem rgba(0, 0, 0, 0.7);
}

.footer__head {
  display: flex;

  align-items: center;
  gap: 3rem;
  justify-content: left;
  margin-left: 5rem;
  min-height: 30vh;
  max-width: 50vh;
}
.footer__head .drop {
  position: relative;
  width: 400px;
  height: 400px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 49% 51% 36% 64% / 37% 41% 59% 63%;
}
.footer__head .drop:hover {
  border-radius: 50%;
}
.footer__head .drop::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 100px;
  width: 35px;
  height: 35px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.1),
    25px 35px 20px rgba(226, 200, 200, 0.458),
    25px 30px 30px rgba(171, 156, 156, 0.1),
    inset -20px -20px 25px rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 100;
}
.footer__head .drop::after {
  content: '';
  position: absolute;
  top: 130px;
  left: 130px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.4;
}
.footer__head .drop .content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--color-bg-4);
  padding: 40px;
  gap: 15px;
  font-size: 1.5rem;
}

/*----------------------------About ME ---------------------*/
.footer__content {
  width: 45%;
}
.footer__content h1 {
  position: relative;
  bottom: 20rem;
  left: 40rem;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: var(--color-bg-1);
  font-size: 2em;
  color: var(--color-primary-variant);
  text-shadow: 2px 2px 4px #000000;
}

.content__footer {
  color: var(--color-bg-4);
  font-size: small;
}
.content__footer {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  color: var(--color-bg-4);
  font-size: small;
}
.footer__content p {
  width: 80%;
  position: absolute;
  color: var(--color-bg-4);
  position: relative;
  left: 40rem;
  bottom: 15rem;
  font-size: 1.2rem;
  text-align: justify;
  line-height: 2rem;
}
.content h3 {
  color: var(--color-primary-variant);
  text-shadow: 2px 2px 4px #000000;
}
/*-------------------------------------footer-Links-------------------*/

.footer__links {
  position: relative;
  display: flex;
  gap: 3rem;
  top: -2rem;
  left: -15rem;
  font-size: 1.5rem;
}
.footer__links a {
  color: var(--color-primary-variant);

  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--color-primary);
}
.poster__back {
  width: 50%;
  height: 20%;
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0.5;
  z-index: -100;
}
/*-------------------------------------CONTACT------------------*/

.footer__contact h2 {
  position: relative;
  bottom: -5px;

  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;

  color: var(--color-bg-2);
}
.footer__content p {
  width: 90%;
  position: absolute;
  color: var(--color-bg-4);
  position: relative;
  left: 40rem;
  bottom: 15rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3rem;
  text-align: left;
}
.contactInfo {
  width: 100%;
  flex-direction: column;

  display: flex;
  left: 0;
  min-height: 30px;
}
.content h3 {
  display: flex;
  left: -1rem;
}
.contactInfo .uil {
  display: flex;
  left: 0;
}
.footer__text .uil {
  display: flex;
  left: 0;
  padding-top: 10px;
}
.footer__text p {
  display: flex;
  left: 0;
  padding-top: 10px;
}
/*-------------------------------------FOOTER LINKS------------------*/

.footer__links {
  position: relative;
  display: flex;
  gap: 3rem;
  bottom: 20rem;
  left: 10rem;
}
.footer__links a {
  color: var(--color-bg-1);
  font-weight: bold;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--color-primary);
}
