@import url("myriad-pro.css");
@import url("cheva-display.css");
* {
  padding: 0;
  margin: 0;
  color: var(--black);
  box-sizing: border-box;
  font-size: var(--font-s);
  /* font-weight: bold; */
}

html {
  font-family: "Myriad Pro", sans-serif;
  font-size: clamp(15px, 1.5vw, 1.25em);
  background-color: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

:root {
  --black: #0d0204;
  --white: #fff;
  --off-white: #f7f1f9;
  --primary: #bf1e2e;
  --secondary: #360e42;
  --gradient: linear-gradient(
    270deg,
    rgba(191, 30, 46, 0.1) 0%,
    rgba(155, 81, 180, 0.15) 100%
  );
  --font-l: 1.4rem;
  --font-xl: 4rem;
  --font-m: 1.05rem;
  --font-s: 1rem;
  --font-ss: 0.7rem;
  --font-xs: 0.5rem;
  --radius: 3px;
  --padding: 0.8rem;
  --padding-2: calc(var(--padding) * 2 - 0.2rem);
  --transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  --cta-2-hover: brightness(90%);
  --cta-hover: brightness(90%);
}

h1 {
  font-family: "Cheva Display", sans-serif;
  font-size: var(--font-xl);
}
@media screen and (max-width: 480px) {
  h1 {
    --font-xl: 2.5rem;
  }
}

h2 {
  font-size: var(--font-m);
}

p {
  line-height: 1.5rem;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding-bottom: 0;
  min-height: 100vh;
}

.section {
  margin-top: 5rem;
  background-color: var(--white);
  border-radius: var(--radius);
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.navbar {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  justify-content: space-between;
  width: 100vw;
  margin-top: 0;
  padding: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--primary);
  border-radius: 0;
}

a {
  text-decoration: none;
  color: var(--black);
}

.navbar .links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar .links a {
  transition: var(--transition);
  font-size: var(--font-s);
  color: var(--off-white);
}

.navbar .logo {
  font-weight: bold;
  height: var(--font-m);
  display: flex;
  align-items: center;
}
.navbar .social-links {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-row: auto;
  grid-gap: 1rem;
  gap: 1rem;
}

.navbar .social-links img {
  height: 1.5rem;
}
/* .navbar .logo:hover {
  color: var(--black-2);
} */

.navbar .logo img {
  height: 2rem;
  margin-right: 0.5rem;
  opacity: 1;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  margin-left: 1rem;
  height: 100%;
  cursor: pointer;
  user-select: none;
  position: relative;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  z-index: 10;
}

.mobile-menu .bar {
  width: 2rem;
  height: 4px;
  background-color: var(--off-white);
  margin-top: 2px;
  margin-bottom: 2px;
  /* border-radius: 5px; */
  transition: all 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.navbar-2 .mobile-menu .bar {
  background-color: var(--black);
}

.mobile-menu .bar:nth-child(2) {
  width: 1.5rem;
  transition: ease 0.2s;
  margin-left: auto;
}

.mobile-menu-active {
  transform: rotate(45deg);
}

.mobile-menu-active .bar {
  position: absolute;
}

.mobile-menu-active .bar:nth-child(2) {
  transform: rotate(90deg);
  width: 2rem;
}

.menu-list {
  width: 100vw;
  height: fit-content;
  padding: var(--padding);
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: var(--primary);
  position: absolute;
  top: 0%;
  left: 0;
  padding: 2rem;
  padding-top: 4rem;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  box-shadow: 0px 5.4px 5.2px rgba(0, 0, 0, 0.024),
    0px 15px 14.4px rgba(0, 0, 0, 0.035), 0px 36.2px 34.7px rgba(0, 0, 0, 0.046),
    0px 120px 115px rgba(0, 0, 0, 0.07);
  align-items: start;
  justify-content: space-between;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar-2 .menu-list {
  background-color: var(--white);
}

.menu-list .submenu-link ul {
  border-left: 1px solid var(--secondary);
  margin-left: 0.25rem;
  list-style: none;
}

.menu-list .submenu-link ul li {
  display: flex;
  margin-left: 0.5rem;
  line-height: 1.5rem;
}
.menu-list .submenu-link ul li a {
  margin: 0;
}
.menu-active {
  opacity: 1;
  top: 0rem;
  display: flex;
  visibility: visible;
}

.menu-list span {
  display: flex;
  flex-direction: column;
}

.menu-list .cta-container {
  height: 100%;
  display: flex;
}

@media screen and (max-width: 340px) {
  .menu-list {
    flex-direction: column;
    align-items: center;
  }

  .menu-list .cta-container {
    margin-top: 2rem;
  }
}

.menu-list .cta-container .cta-2 {
  width: 100%;
  padding-left: var(--padding-2);
  padding-right: var(--padding-2);
  display: flex;
}

.menu-list .cta-container .cta {
  width: fit-content;
  padding-left: var(--padding-2);
  padding-right: var(--padding-2);
  margin-bottom: 1rem;
}
.menu-list .cta-container .cta {
  background-color: var(--white);
  color: var(--black);
}

.navbar-2 .menu-list .cta-container .cta {
  background-color: var(--primary);
  color: var(--white);
}

.menu-list .cta-container .cta-2 {
  color: var(--black);
}

.menu-list a {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 500;
  font-size: var(--font-s);
  color: var(--white);
}

.menu-list .cta {
  background-color: var(--white);
  width: fit-content;
  padding: var(--padding);
  padding-left: var(--padding-2);
  padding-right: var(--padding-2);
  color: var(--primary);
}

.navbar-2 .menu-list a {
  color: var(--black);
}

.navbar .links .navlink {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.navbar .dropdown-link-container {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar .dropdown-link-container .dropdown-links {
  position: absolute;
  top: 120%;
  padding: var(--padding);
  padding-left: var(--padding-2);
  padding-right: var(--padding-2);
  border-radius: var(--radius);
  background-color: var(--secondary);
  left: -30%;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(13, 12, 34, 0.03),
    0px 18px 39px 0px rgba(13, 12, 34, 0.03),
    0px 71px 71px 0px rgba(13, 12, 34, 0.03),
    0px 159px 95px 0px rgba(13, 12, 34, 0.01),
    0px 283px 113px 0px rgba(13, 12, 34, 0),
    0px 442px 124px 0px rgba(13, 12, 34, 0);
  box-shadow: 0px 0px 0px 0px rgba(13, 12, 34, 0.03),
    0px 18px 39px 0px rgba(13, 12, 34, 0.03),
    0px 71px 71px 0px rgba(13, 12, 34, 0.03),
    0px 159px 95px 0px rgba(10, 9, 27, 0.01),
    0px 283px 113px 0px rgba(13, 12, 34, 0),
    0px 442px 124px 0px rgba(13, 12, 34, 0);

  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.navbar .dropdown-link-container:hover .dropdown-links {
  visibility: visible;
  opacity: 1;
}

.navbar-2 .dropdown-link-container .dropdown-links {
  background-color: var(--white);
}
.navbar .dropdown-link-container .dropdown-links a {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.25rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--white);
  transition: var(--transition);
}
.navbar .dropdown-link-container .dropdown-links a:hover {
  color: var(--primary);
}

.navbar .links .cta:hover {
  color: var(--white);
  background-color: var(--primary);
}

.navbar .links .navlink span {
  display: flex;
}

.cta,
.cta-2 {
  display: flex;
  align-items: center;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: var(--padding);
  padding-left: var(--padding-2);
  padding-right: var(--padding-2);
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
  text-align: center;
  width: fit-content;
  font-weight: bold;
  user-select: none;
  outline: none;
  border: none;
  height: 3rem;
  font-family: "Jost", sans-serif;
}

.cta img {
  height: var(--font-l);
  margin-left: 0.25rem;
}

.cta-2 img {
  height: var(--font-l);
  margin-left: 0.25rem;
}

.cta-2 {
  background-color: var(--secondary);
  color: var(--primary);
}

.cta:hover {
  filter: var(--cta-hover);
}
.cta-2:hover {
  filter: var(--cta-2-hover);
}
.navbar .links .cta {
  color: var(--white);
  background-color: var(--primary);
}

/*Mobile Menu*/
@media screen and (max-width: 600px) {
  .navbar .links .navlink,
  .navbar .social-links {
    display: none;
  }

  body {
    overflow-x: hidden;
  }
  .navbar .logo img {
    height: 2.5rem;
  }

  .mobile-menu {
    display: flex;
  }

  .menu-list {
    display: flex;
  }

  .navbar .links .nav-cta {
    display: none;
  }
  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .main-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Hero Section */

.hero-section {
  display: flex;
  padding-top: 5rem;
  height: fit-content;
  position: relative;
}

.hero-section p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.hero-section .hero-text {
  display: flex;
  flex-direction: column;
  width: 15rem;
  margin-top: 5rem;
  margin-right: auto;
}

.hero-section .hero-text .heading {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
}
.hero-section .hero-text .heading span {
  font-weight: bold;
  position: absolute;
  top: 79%;
  font-size: var(--font-m);
}

.hero-section .cta-container {
  display: flex;
}

.hero-section .hero-image .image {
  display: flex;
  /* background-color: rebeccapurple;
  height: 10rem;
  width: 10rem; */
  position: absolute;
  border-radius: var(--radius);
  z-index: 0;
}

.hero-section .hero-image .image:nth-child(1) {
  top: 3.5rem;
  left: 1rem;
}

.hero-section .hero-image {
  position: relative;
  right: -4rem;
  top: -5vw;
  padding-top: 2rem;
}

.hero-section .hero-image img {
  display: block;
  width: 60vw;
  /* margin-bottom: 4rem; */
  height: unset;
}

@media screen and (max-width: 720px) {
  .hero-section .hero-image img {
    display: block;
    width: 65vw;
  }
  .hero-section .hero-image {
    position: relative;
    right: 0rem;
  }
}

@media screen and (max-width: 600px) {
  .hero-section {
    flex-direction: column-reverse;
    padding-top: 1;
  }
  .hero-section .hero-image {
    right: 3rem;
    padding-top: 0;
    margin: 0;
  }
  .hero-section .hero-image img {
    display: block;
    width: 100vw;
    margin-bottom: 0rem;
  }
  .hero-section .hero-text {
    margin-top: 0;
  }
}

/* .hero-section .hero-image .image:nth-child(1) img {
  display: block;
  height: 12rem;
}

.hero-section .hero-image .image:nth-child(2) {
  top: 16rem;
  left: -4rem;
  z-index: 1;
  box-shadow: 0px 51px 80px rgba(155, 81, 180, 0.07),
    0px 21.3066px 33.4221px rgba(155, 81, 180, 0.0503198),
    0px 11.3915px 17.869px rgba(155, 81, 180, 0.0417275),
    0px 6.38599px 10.0172px rgba(155, 81, 180, 0.035),
    0px 3.39155px 5.32008px rgba(155, 81, 180, 0.0282725),
    0px 1.4113px 2.21381px rgba(155, 81, 180, 0.0196802);
}
.hero-section .hero-image .image:nth-child(2) img {
  height: 10rem;
}
.hero-section .hero-image .image:nth-child(3) {
  top: 1rem;
  left: 8rem;
  z-index: 2;
  box-shadow: 0px 33px 186px rgba(155, 81, 180, 0.12),
    0px 13.7866px 77.7064px rgba(155, 81, 180, 0.0862625),
    0px 7.37098px 41.5455px rgba(155, 81, 180, 0.0715329),
    0px 4.13211px 23.2901px rgba(155, 81, 180, 0.06),
    0px 2.19453px 12.3692px rgba(155, 81, 180, 0.0484671),
    0px 0.913195px 5.1471px rgba(155, 81, 180, 0.0337375);
}
.hero-section .hero-image .image:nth-child(3) img {
  height: 9rem;
}
.hero-section .hero-image .image:nth-child(4) {
  right: 0;
  top: 8rem;
  z-index: 1;

  box-shadow: 0px 51px 80px rgba(155, 81, 180, 0.07),
    0px 21.3066px 33.4221px rgba(155, 81, 180, 0.0503198),
    0px 11.3915px 17.869px rgba(155, 81, 180, 0.0417275),
    0px 6.38599px 10.0172px rgba(155, 81, 180, 0.035),
    0px 3.39155px 5.32008px rgba(155, 81, 180, 0.0282725),
    0px 1.4113px 2.21381px rgba(155, 81, 180, 0.0196802);
  transform: rotate(10deg);
}
.hero-section .hero-image .image:nth-child(4) img {
  height: 13rem;
}
.hero-section .hero-image .image:nth-child(5) {
  bottom: 1rem;
  z-index: 0;
  left: 8rem;
}
.hero-section .hero-image .image:nth-child(5) img {
  height: 12rem;
}

@media screen and (max-width: 999px) {
  .hero-section .hero-image .image:nth-child(1) img {
    height: 18vw;
  }

  .hero-section .hero-image .image:nth-child(1) {
    top: 5.5vw;
    left: 1vw;
  }

  .hero-section .hero-image .image:nth-child(2) img {
    height: 16vw;
  }
  .hero-section .hero-image .image:nth-child(2) {
    top: 22vw;
    left: -7vw;
  }

  .hero-section .hero-image .image:nth-child(3) img {
    height: 14vw;
  }
  .hero-section .hero-image .image:nth-child(3) {
    top: 2vw;
    left: 12vw;
  }

  .hero-section .hero-image .image:nth-child(4) img {
    height: 22vw;
  }
  .hero-section .hero-image .image:nth-child(4) {
    right: 0;
    top: 10vw;
  }

  .hero-section .hero-image .image:nth-child(5) img {
    height: 20vw;
  }
  .hero-section .hero-image .image:nth-child(5) {
    bottom: -3vw;
    left: 10vw;
  }
} */

.hero-section .hero-image .image .overlay {
  background: var(--gradient);
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  opacity: 0.5;
  font-size: var(--font-ss);
  text-transform: capitalize;
}

.hero-section .scroll-icon {
  height: 3rem;
  width: 2rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  border: 2px solid var(--secondary);
  position: absolute;
  bottom: 7rem;
  left: 0rem;
}

.hero-section .scroll-icon img {
  animation: follow 4s ease infinite;
}

@keyframes follow {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }

  50% {
    transform: translateY(50%);
    opacity: 1;
  }

  100% {
    transform: translateY(-70%);
    opacity: 0;
  }
}
@media screen and (max-width: 970px) {
  .hero-section .scroll-icon {
    bottom: 3rem;
  }
}
@media screen and (max-width: 970px) {
  .hero-section .scroll-icon {
    bottom: 0rem;
  }
}
@media screen and (max-width: 600px) {
  .hero-section .scroll-icon {
    left: unset;
    right: 0;
    bottom: 0rem;
  }
}
.contact-section,
.about-section,
.magazine-section {
  display: flex;
  padding: 2rem;
  width: 100%;
  background-color: var(--off-white);
}

.magazine-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 25rem auto auto;
  grid-gap: 2rem;
  height: fit-content;
  gap: 2;
  width: 100%;
  padding: 0;
  background-color: var(--white);
  position: relative;
  justify-content: center;
}

.mag-heading {
  color: var(--black);
  align-self: center;
  margin-bottom: 1rem;
  font-family: "Cheva Display", sans-serif;
  text-transform: capitalize;
  font-size: var(--font-l);
}

@media screen and (max-width: 800px) {
  .mag-heading {
    margin-top: 5rem;
  }
}

.magazine-section a {
  background-color: var(--off-white);
  position: relative;
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2/2;
}
.magazine-section a img {
  width: 20%;
}

.magazine-section a .cta {
  position: absolute;
  bottom: 2rem;
  font-size: var(--font-ss);
}
.magazine-section a:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1;
  aspect-ratio: unset;
}
@media screen and (max-width: 720px) {
  .magazine-section a:nth-child(1) {
    grid-column: 1 / span 2;
    aspect-ratio: 2/2;
  }
  .magazine-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 550px) {
  .magazine-section a:nth-child(1) {
    grid-column: 1;
  }
  .magazine-section {
    display: flex;
    flex-direction: column;
  }
}
.about-section {
  padding: 0;
  padding-top: 2rem;
  background-color: var(--white);
}
.about-section div {
  width: 60%;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

.about-section span {
  background-color: var(--off-white);
  padding: 1rem;
  border-radius: var(--radius);
}

.about-section .about-grid {
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 0;
}

.about-section .about-grid span {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-gap: 0.5rem;
  gap: 0.5rem; */
}

.about-section .about-grid span:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  align-self: center;
}

.about-section .about-grid span img {
  width: 3rem;
  margin-bottom: 1rem;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.about-section .about-grid span:nth-child(3) img {
  width: 4rem;
  margin-bottom: 0;
}
.about-section .about-grid span:nth-child(1) img {
  width: 6rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .about-section .about-grid span {
    grid-column: 1;
  }

  .about-section .about-grid span:nth-child(1) {
    grid-row: 1;
    align-items: start;
  }
  .about-section .about-grid span:nth-child(1) img {
    width: 4rem;
  }
}

.about-section span ul {
  padding-left: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  margin-top: 1rem;
}
.about-section span h2 {
  text-transform: capitalize;
}
.about-section .about-grid span:nth-child(1) ul {
  grid-gap: 0rem;
  gap: 0rem;
  margin-top: 0.5rem;
}

.about-section span ul li {
  line-height: 1.5rem;
}
.contact-section .contact-links {
  width: 60%;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}

.contact-section .contact-links a {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  padding-left: var(--padding);
  padding-right: var(--padding);
  border-radius: 1rem;
  background: var(--gradient);
  width: fit-content;
  margin: 0.5rem;
}
@media screen and (max-width: 800px) {
  .contact-section,
  .about-section {
    flex-direction: column;
  }
  .about-section div {
    width: 100%;
  }
  .contact-section .contact-links {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .contact-section .contact-links a {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .contact-section .contact-links a span {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.contact-section .contact-links a img {
  margin-right: 0.5rem;
  height: var(--font-l);
}

@media screen and (max-width: 360px) {
  .contact-section .contact-links a {
    width: 3rem;
    align-items: center;
    justify-content: center;
  }
  .contact-section .contact-links a span {
    display: none;
  }
  .contact-section .contact-links a img {
    margin-right: 0rem;
  }
}

.footer {
  padding: 2rem;
  border-radius: 0;
  background-color: var(--secondary);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
  margin-top: auto;
}

@media screen and (max-width: 600px) {
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer .logo img {
  height: 3rem;
}

.footer .footer-links,
.footer .footer-contact-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
    gap: 3rem;
  }

  .footer .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    gap: 1rem;
  }

  .footer .footer-contact-links {
    grid-gap: 1rem;
    gap: 1rem;
    width: fit-content;
  }
}
.footer .footer-contact-links {
  grid-gap: 1rem;
  gap: 1rem;
}
.footer .footer-contact-links img {
  height: var(--font-l);
}
.footer .footer-links a {
  color: var(--white);
}
