@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: "GOTHAM_BOOK";
  src: url("assets/fonts/GOTHAM-BOOK-1361523257_0.TTF");
}

@font-face {
  font-family: "GOTHAM_LIGHT";
  src: url("assets/fonts/GOTHAM-LIGHT_0.TTF");
}

@font-face {
  font-family: "GOTHAM_MEDIUM";
  src: url("assets/fonts/GOTHAM-MEDIUM_0.TTF");
}

@font-face {
  font-family: "GOTHAM_BOLD";
  src: url("assets/fonts/UFONTS.COM_GOTHAM-BOLD.TTF");
}

* {
  /* line-height: 1; */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GOTHAM_BOOK";
}

.newZindex {
  z-index: 100;
}

a {
  outline: none;
}

.headerSuperMainDiv {
  position: fixed;
  width: 100%;
}

.headerMainDiv {
  height: 8vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding-left: 6%;
  padding-right: 6%;
}

.headerMainLogoAnchor {
  display: flex;
  align-items: center;
}

.headerMainLogo {
  width: 175px;
}

.footerMainDiv {
  padding-top: 30px;
  padding-bottom: 10px;
}

.firstFoldText {
  font-size: 40px;
  font-weight: bolder;
  margin-bottom: 40px;
  margin-top: 10px;
  font-family: "GOTHAM_BOLD";
}

.summary {
  font-size: 20px;
  /* line-height: 28px; */
}

.list-items {
  font-size: 20px;
  position: relative;
  top: 100px;
  /* line-height: 28px; */
}

.secondDiv {
  width: 70%;
  padding-bottom: 200px;
  position: relative;
  top: 100px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: black;
  border-radius: 50%;
  /* display: inline-block; */
}

li > ul {
  transform: translatex(100%) scale(0);
}

li:hover > ul {
  transform: translatex(101%) scale(1);
}

.group:hover .group-hover\:scale-100 {
  transform: scale(1);
}

.group:hover .group-hover\:-rotate-180 {
  transform: rotate(180deg);
}

.scale-0 {
  transform: scale(0);
}

.min-w-32 {
  min-width: 8rem;
}

/* iphone SE */
@media screen and (min-width: 50px) and (max-width: 380px) {
  .headerMainLogo {
    width: 95px;
  }

  .firstFoldText {
    font-size: 25px;
  }

  .secondDiv {
    width: 90%;
  }
}

/* mobile */
@media screen and (min-width: 380px) and (max-width: 500px) {
  .headerMainLogo {
    width: 95px;
  }

  li > ul {
    transform: translateY(100%) scale(0);
  }

  li:hover > ul {
    transform: translateY(101%) scale(1);
  }

  .firstFoldText {
    font-size: 25px;
  }

  .secondDiv {
    width: 90%;
  }
}

/* ipad */
@media screen and (min-width: 501px) and (max-width: 950px) {
  .firstFoldText {
    font-size: 40px;
  }

  .secondDiv {
    width: 85%;
  }
}

/* mini laptop */
@media screen and (min-width: 951px) and (max-width: 1200px) {
  .headerMainLogo {
    width: 130px;
  }

  .headerMainLogo {
    width: 120px;
  }

  .firstFoldText {
    font-size: 30px;
  }

  .secondDiv {
    width: 80%;
  }
}

/* laptop */
@media screen and (min-width: 1201px) and (max-width: 1900px) {
  .firstFoldText {
    font-size: 30px;
  }
}

@media screen and (min-width: 2201px) {
  .headerMainLogo {
    width: 220px;
  }

  .firstFoldText {
    font-size: 60px;
  }
}
