@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  background: #fafafa !important;
}

.app {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  background: #fafafa;
  overflow-x: hidden;
  position: relative;
}
.app .whatsapp {
  position: fixed;
  z-index: 10000;
  bottom: 20px;
  right: 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .whatsapp .whatsapp-icon {
  font-size: 80px;
  color: #25d366;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
.app .whatsapp .whatsapp-icon:hover {
  color: #075e54;
}

.header-wrapper {
  width: 100%;
  padding: 0 50px;
  background-color: #9F120F;
}
.header-wrapper .header-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper .header-section .language-and-media {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-wrapper .header-section .language-and-media .language {
  display: flex;
  gap: 14px;
}
.header-wrapper .header-section .language-and-media .language .lang {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 4px 5px;
  border-radius: 2px;
  transition: 300ms ease;
}
.header-wrapper .header-section .language-and-media .language .lang.active {
  background-color: #000000;
  color: #fff;
}
.header-wrapper .header-section .language-and-media .language .lang:hover {
  background-color: #fff;
  color: #000000;
}
.header-wrapper .header-section .language-and-media .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.header-wrapper .header-section .language-and-media .social-media a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: 300ms ease;
}
.header-wrapper .header-section .language-and-media .social-media a:hover {
  border: 1px solid #000000;
}
.header-wrapper .header-section .language-and-media .social-media a:hover img {
  filter: invert(1);
}
.header-wrapper .header-section .mail-me {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.navbar-wrapper {
  width: 100%;
  padding: 20px 50px;
}
.navbar-wrapper .nav-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.navbar-wrapper .nav-section .hamburger-btn {
  display: flex;
  gap: 12px;
  align-items: center;
}
.navbar-wrapper .nav-section .hamburger-btn .submit-button {
  background-color: #000000;
  padding: 11px 27px;
  color: #fff;
  transition: 300ms ease;
  border: none;
  border: 1px solid transparent;
  border-radius: 10px;
}
.navbar-wrapper .nav-section .hamburger-btn .submit-button:hover {
  border: 1px solid #000000;
  background-color: #fff;
  color: #000000;
}
.navbar-wrapper .nav-section .hamburger-btn .hamburger {
  position: relative;
  z-index: 1001;
  background-color: black;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar-wrapper .nav-section .hamburger-btn .hamburger .hamburger-icon {
  width: 22px;
  height: 1px;
  margin: 4px auto;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.navbar-wrapper .nav-section .hamburger-btn.menu-open .hamburger {
  position: fixed;
  top: 16px;
  right: 30px;
  z-index: 2000;
}
.navbar-wrapper .nav-section .logo img {
  width: 60px;
  height: 60px;
}
.navbar-wrapper .nav-section .navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar-wrapper .nav-section .navbar-right .navBar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-wrapper .nav-section .navbar-right .navBar a.active {
  border-bottom: 2px solid #000;
  font-weight: 600;
}
.navbar-wrapper .nav-section .navbar-right .navBar a {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
}
.navbar-wrapper .nav-section .navbar-right .navBar a:hover {
  color: #706f6f;
}
.navbar-wrapper .nav-section .navbar-right .navBar .personImg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  background: #000;
  color: #fff;
}
.navbar-wrapper .nav-section .navbar-right .signIn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navbar-wrapper .nav-section .navbar-right .signIn .submit-button {
  padding: 10px 27px;
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 300ms ease-in-out;
}
.navbar-wrapper .nav-section .navbar-right .signIn .submit-button:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.navbar-wrapper .nav-section .navbar-right .signIn .register-button {
  padding: 9px 17px;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  transition: 300ms ease-in-out;
}
.navbar-wrapper .nav-section .navbar-right .signIn .register-button:hover {
  background-color: #000;
  color: #fff;
}
.navbar-wrapper .nav-section .inform,
.navbar-wrapper .nav-section .contact,
.navbar-wrapper .nav-section .home {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  transition: 300ms ease;
  padding: 10px;
}
.navbar-wrapper .nav-section .inform:hover,
.navbar-wrapper .nav-section .contact:hover,
.navbar-wrapper .nav-section .home:hover {
  color: #706f6f;
}
.navbar-wrapper .nav-section .menu-wrapper {
  position: relative;
  display: inline-block;
}
.navbar-wrapper .nav-section .menu-wrapper a {
  text-decoration: none;
}
.navbar-wrapper .nav-section .menu-wrapper-toggle {
  display: flex;
  gap: 8px;
  background-color: transparent;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: 300ms ease;
}
.navbar-wrapper .nav-section .menu-wrapper-toggle:hover {
  background-color: #000000;
  border-radius: 8px;
  padding: 10;
  color: #fff;
}
.navbar-wrapper .nav-section .menu-wrapper-toggle:hover img {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.navbar-wrapper .nav-section .menu-wrapper-list {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 300ms ease;
}
.navbar-wrapper .nav-section .menu-wrapper-list a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.navbar-wrapper .nav-section .menu-wrapper-list a:hover {
  background-color: #000000;
  color: #fff;
}
.navbar-wrapper .nav-section .menu-wrapper:hover .menu-wrapper-list {
  display: block;
}

.hero-wrapper {
  width: 100%;
}
.hero-wrapper .hero-section {
  width: 100%;
  height: 800px;
  position: relative;
  margin: 0 auto;
}
.hero-wrapper .hero-section img {
  width: 100%;
  display: block;
  height: 100%;
  filter: brightness(33%);
}
.hero-wrapper .hero-section .hero-content {
  width: 100%;
  text-align: center;
  max-width: 1440px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-wrapper .hero-section .hero-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 62px;
}
.hero-wrapper .hero-section .hero-content p {
  width: 100%;
  max-width: 700px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #E1E1E1;
}
.hero-wrapper .hero-section .hero-content .hero-btn {
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 500;
  background-color: #fff;
  text-decoration: none;
  border: none;
  color: #000000;
  border-radius: 8px;
  transition: 300ms ease;
}
.hero-wrapper .hero-section .hero-content .hero-btn:hover {
  background-color: #000000;
  color: #fff;
}

.slider-wrapper {
  width: 100%;
  padding: 0 50px;
}
.slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 100px auto;
}
.slider-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
.slider-wrapper .book-swiper .swiper-wrapper {
  display: flex;
  padding-top: 44px;
}
.slider-wrapper .book-swiper .swiper-slide {
  width: 302px;
  background-color: #fff;
  padding: 10px;
  text-align: center;
}
.slider-wrapper .book-swiper .swiper-slide .swiper-main-img {
  width: 100%;
  height: 357px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 5px;
  margin-bottom: 10px;
}
.slider-wrapper .book-swiper .swiper-slide p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.slider-wrapper .book-swiper .swiper-slide .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.slider-wrapper .book-swiper .swiper-slide .about-book p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider-wrapper .book-swiper .swiper-slide .about-book a {
  text-decoration: none;
}
.slider-wrapper .book-swiper .swiper-slide .about-book button {
  background-color: #E82323;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.slider-wrapper .book-swiper .swiper-slide .about-book span {
  font-size: 0.9rem;
  color: #777;
}
.slider-wrapper .book-swiper .swiper-button-group {
  position: absolute;
  top: -3px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.slider-wrapper .book-swiper .swiper-button-prev-second,
.slider-wrapper .book-swiper .swiper-button-next-second {
  position: static;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgb(233, 230, 230);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.slider-wrapper .book-swiper .swiper-button-prev-second img,
.slider-wrapper .book-swiper .swiper-button-next-second img {
  width: 24px;
  height: 24px;
}
.slider-wrapper .book-swiper .swiper-button-prev::after {
  display: none;
}
.slider-wrapper .book-swiper .swiper-button-next::after {
  display: none;
}

.science-slider-wrapper {
  width: 100%;
  padding: 0 50px;
}
.science-slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 100px auto;
}
.science-slider-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
.science-slider-wrapper .science-swiper .swiper-wrapper {
  display: flex;
  padding-top: 44px;
}
.science-slider-wrapper .science-swiper .swiper-slide {
  width: 302px;
  background-color: #fff;
  padding: 10px;
  text-align: center;
}
.science-slider-wrapper .science-swiper .swiper-slide .swiper-main-img {
  width: 100%;
  height: 357px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book a {
  text-decoration: none;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book span {
  font-size: 0.9rem;
  color: #777;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book button {
  background-color: #fff;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book button img {
  width: 16px;
  height: 16px;
}
.science-slider-wrapper .science-swiper .swiper-slide .about-book img {
  filter: invert(1);
}
.science-slider-wrapper .science-swiper .swiper-button-group {
  position: absolute;
  top: -3px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.science-slider-wrapper .science-swiper .swiper-button-prev-third,
.science-slider-wrapper .science-swiper .swiper-button-next-third {
  position: static;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgb(233, 230, 230);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.science-slider-wrapper .science-swiper .swiper-button-prev-third img,
.science-slider-wrapper .science-swiper .swiper-button-next-third img {
  width: 24px;
  height: 24px;
}
.science-slider-wrapper .science-swiper .swiper-button-prev::after,
.science-slider-wrapper .science-swiper .swiper-button-next::after {
  display: none;
}

.analysis-slider-wrapper {
  width: 100%;
  padding: 0 50px;
}
.analysis-slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 100px auto;
}
.analysis-slider-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
.analysis-slider-wrapper .watch-all {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.analysis-slider-wrapper .analysis-swiper .swiper-wrapper {
  display: flex;
  padding-top: 44px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide {
  width: 413px;
  background-color: #fff;
  text-align: center;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .swiper-main-img {
  width: 100%;
  height: 357px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book a {
  text-decoration: none;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book span {
  font-size: 0.9rem;
  color: #777;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book button {
  background-color: #fff;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book button img {
  width: 16px;
  height: 16px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book img {
  filter: invert(1);
}
.analysis-slider-wrapper .analysis-swiper .swiper-button-group {
  position: absolute;
  top: -3px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-button-prev-analysis,
.analysis-slider-wrapper .analysis-swiper .swiper-button-next-analysis {
  position: static;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgb(233, 230, 230);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.analysis-slider-wrapper .analysis-swiper .swiper-button-prev-analysis img,
.analysis-slider-wrapper .analysis-swiper .swiper-button-next-analysis img {
  width: 24px;
  height: 24px;
}
.analysis-slider-wrapper .analysis-swiper .swiper-button-prev::after,
.analysis-slider-wrapper .analysis-swiper .swiper-button-next::after {
  display: none;
}

.news-slider-wrapper {
  width: 100%;
  padding: 0 50px;
}
.news-slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 100px auto;
}
.news-slider-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
.news-slider-wrapper .watch-all {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.news-slider-wrapper .news-swiper .swiper-wrapper {
  display: flex;
  padding-top: 44px;
}
.news-slider-wrapper .news-swiper .swiper-slide {
  width: 413px;
  background-color: #fff;
  text-align: center;
}
.news-slider-wrapper .news-swiper .swiper-slide .swiper-main-img {
  width: 100%;
  height: 257px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  text-align: start;
  gap: 8px;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book a {
  color: #000000;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book h4 {
  font-weight: 600;
  font-size: 20px;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book span {
  font-size: 0.9rem;
  color: #777;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book button {
  background-color: #fff;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book button img {
  width: 16px;
  height: 16px;
}
.news-slider-wrapper .news-swiper .swiper-slide .about-book img {
  filter: invert(1);
}
.news-slider-wrapper .news-swiper .swiper-button-group {
  position: absolute;
  top: -3px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.news-slider-wrapper .news-swiper .swiper-button-prev-news,
.news-slider-wrapper .news-swiper .swiper-button-next-news {
  position: static;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgb(233, 230, 230);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.news-slider-wrapper .news-swiper .swiper-button-prev-news img,
.news-slider-wrapper .news-swiper .swiper-button-next-news img {
  width: 24px;
  height: 24px;
}
.news-slider-wrapper .news-swiper .swiper-button-prev::after,
.news-slider-wrapper .news-swiper .swiper-button-next::after {
  display: none;
}

.video-slider-wrapper {
  width: 100%;
  padding: 0 50px;
}
.video-slider-wrapper .container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 100px auto;
}
.video-slider-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
.video-slider-wrapper .watch-all {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.video-slider-wrapper .video-swiper .swiper-wrapper {
  display: flex;
  padding-top: 44px;
}
.video-slider-wrapper .video-swiper .swiper-slide {
  width: 413px;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0px 4px 8px rgb(230, 227, 227);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 39px;
}
.video-slider-wrapper .video-swiper .swiper-slide .swiper-main-img {
  width: 100%;
  height: 357px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  text-align: start;
  gap: 8px;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book a {
  color: #000000;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book h4 {
  font-weight: 600;
  font-size: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book span {
  font-size: 0.9rem;
  color: #777;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book button {
  background-color: #fff;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book button img {
  width: 16px;
  height: 16px;
}
.video-slider-wrapper .video-swiper .swiper-slide .about-book img {
  filter: invert(1);
}
.video-slider-wrapper .video-swiper .swiper-slide .iframediv {
  width: 100%;
  height: 351px;
}
.video-slider-wrapper .video-swiper .swiper-slide .iframediv iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.video-slider-wrapper .video-swiper .swiper-button-group {
  position: absolute;
  top: -3px;
  right: 13px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.video-slider-wrapper .video-swiper .swiper-button-prev-video,
.video-slider-wrapper .video-swiper .swiper-button-next-video {
  position: static;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgb(233, 230, 230);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.video-slider-wrapper .video-swiper .swiper-button-prev-video img,
.video-slider-wrapper .video-swiper .swiper-button-next-video img {
  width: 24px;
  height: 24px;
}
.video-slider-wrapper .video-swiper .swiper-button-prev::after,
.video-slider-wrapper .video-swiper .swiper-button-next::after {
  display: none;
}

.logos-wrapper {
  width: 100%;
  padding: 0 50px;
}
.logos-wrapper .institute-of-economics {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 72px;
  width: 100%;
}
.logos-wrapper .institute-of-economics img {
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-wrapper {
  width: 100%;
  padding: 0 50px;
}
.contact-wrapper .contact-section {
  width: 100%;
  max-width: 1440px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
.contact-wrapper .contact-section h2 {
  font-weight: 700;
  font-size: 40px;
}
.contact-wrapper .contact-section .location-and-number {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 28px;
}
.contact-wrapper .contact-section .location-and-number .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
}
.contact-wrapper .contact-section .location-and-number .info a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-wrapper .contact-section .location-and-number .info .social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-wrapper .contact-section .location-and-number .info .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D9D9D9;
  border-radius: 100px;
}
.contact-wrapper .contact-section .location-and-number p {
  font-weight: 600;
  font-size: 19px;
}
.contact-wrapper .contact-section .location-and-number span {
  color: #000;
  font-weight: 400;
  font-size: 14px;
}
.contact-wrapper .contact-section .location-and-number .social-media a {
  border: 0.5px solid #D9D9D9;
  border-radius: 100px;
  padding: 6px 8px;
}

.map-container {
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container .map {
  width: 100%;
  height: 100%;
}

.footer-wrapper {
  width: 100%;
  padding: 40px 50px;
}
.footer-wrapper .footer-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-wrapper .footer-section .footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-top .footer-left {
  width: 100%;
  max-width: 344px;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-top .footer-left .logo {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-wrapper .footer-section .footer-top .footer-left .left-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-top .footer-left .left-content .location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.footer-wrapper .footer-section .footer-top .footer-left .left-content .location span {
  font-weight: 400;
  font-size: 14px;
}
.footer-wrapper .footer-section .footer-top .footer-left .left-content .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.footer-wrapper .footer-section .footer-top .footer-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-wrapper .footer-section .footer-top .footer-right .about {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.footer-wrapper .footer-section .footer-top .footer-right .about h5 {
  font-weight: 600;
  font-size: 18px;
}
.footer-wrapper .footer-section .footer-top .footer-right .about a {
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  color: #000000;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper {
  position: relative;
  display: inline-block;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper a {
  text-decoration: none;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper-toggle {
  display: flex;
  gap: 4px;
  background-color: transparent;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 300ms ease;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper-toggle:hover {
  background-color: #000000;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper-list {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 217px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 300ms ease;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper-list a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper-list a:hover {
  background-color: #000000;
  color: #fff;
}
.footer-wrapper .footer-section .footer-top .footer-right .about .menu-wrapper:hover .menu-wrapper-list {
  display: block;
}
.footer-wrapper .social-media {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  position: relative;
}
.footer-wrapper .social-media::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  width: 100%;
  border: 1px solid #D9D9D9;
}
.footer-wrapper .social-media .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
}
.footer-wrapper .social-media .social-icons a {
  width: 40px;
  height: 40px;
  border: 0.5px solid #D9D9D9;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-wrapper .footer-end {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-wrapper .footer-end span {
  display: flex;
  padding-top: 40px;
  font-size: 14px;
}
.footer-wrapper .footer-end span p {
  font-weight: 600;
}

.about-breadcrumb {
  width: 100%;
  padding: 0 50px;
}
.about-breadcrumb .breadcrumb {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.about-breadcrumb .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.information-wrapper {
  width: 100%;
  padding: 0 50px;
}
.information-wrapper .general-information {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px lightgrey;
  margin: 70px auto;
  padding: 50px;
}
.information-wrapper .general-information h1 {
  font-weight: 700;
}
.information-wrapper .general-information span {
  font-weight: 600;
  font-size: 20px;
}
.information-wrapper .general-information p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.information-wrapper .general-information strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.information-wrapper .general-information ol {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.information-wrapper .general-information ol li {
  font-weight: 500;
  font-size: 14px;
}
.information-wrapper .general-information .author-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.information-wrapper .general-information .author-contents .content h3 {
  font-weight: 600;
  font-size: 18px;
}
.information-wrapper .general-information .author-contents .content p {
  font-weight: 500;
  font-size: 14px;
}
.information-wrapper .general-information .author-contents .content ul li {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
}
.information-wrapper .general-information .author-contents .content-magazines {
  font-weight: 700;
  font-size: 14px;
}

.redaction-wrapper {
  width: 100%;
  padding: 0 50px;
}
.redaction-wrapper .redaction-information {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px lightgrey;
  margin: 70px auto;
  padding: 50px;
}
.redaction-wrapper .redaction-information h1 {
  font-weight: 700;
}
.redaction-wrapper .redaction-information span {
  font-weight: 600;
  font-size: 20px;
}
.redaction-wrapper .redaction-information strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
}

.questions-wrapper {
  width: 100%;
  padding: 0 50px;
}
.questions-wrapper .questions-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px lightgrey;
  margin: 70px auto;
  padding: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.questions-wrapper .questions-container .questions-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 16px;
  color: #000;
  font-weight: 500;
  transition: 300ms ease;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle:hover {
  background-color: lightgray;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle .question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle.active {
  background-color: lightgray;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle.active svg {
  transform: rotate(180deg);
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-toggle::after {
  display: none;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  min-width: 220px;
  z-index: 1000;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-list a {
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-list a:hover {
  background-color: lightgray;
}
.questions-wrapper .questions-container .questions-dropdown .dropdown-list.active {
  width: 100%;
  display: flex;
}

.jurnals-wrapper {
  width: 100%;
  padding: 0 50px;
}
.jurnals-wrapper .jurnal-section {
  width: 100%;
  max-width: 1440px;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 18px;
}
.jurnals-wrapper .jurnal-section h1 {
  font-weight: 700;
}
.jurnals-wrapper .jurnal-section span {
  font-size: 20px;
  font-weight: 700;
}
.jurnals-wrapper .jurnal-section .jurnal-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 10px lightgrey;
  border-radius: 12px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards img {
  width: 100%;
  height: 319px;
  border-radius: 12px;
  -o-object-fit: fill;
     object-fit: fill;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .iframediv {
  width: 100%;
  height: 351px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .iframediv iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-img img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .banner-img img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .jurnal-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
  padding: 16px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .jurnal-content h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  font-size: 16px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .jurnal-content a {
  text-decoration: none;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .jurnal-content a .overallBtn {
  border: 0.5px solid #000000;
  background-color: #fff;
  padding: 7px 12px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  transition: 300ms ease;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .jurnal-content a .overallBtn:hover {
  background-color: #000000;
  color: #fff;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 14px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-content span {
  color: #777;
  font-weight: 400;
  font-size: 13px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-content h6 {
  font-weight: 700;
  font-size: 17px;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-content p {
  font-weight: 400;
  font-size: 14px;
  color: #333;
}
.jurnals-wrapper .jurnal-section .jurnal-cards .cards .media-content a {
  color: #000000;
}

.banner-wrapper {
  width: 100%;
  padding: 0 50px;
}
.banner-wrapper .banner-section {
  width: 100%;
  max-width: 1440px;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 18px;
}
.banner-wrapper .banner-section h1 {
  font-weight: 700;
}
.banner-wrapper .banner-section span {
  font-size: 20px;
  font-weight: 700;
}
.banner-wrapper .banner-section .banner-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.banner-wrapper .banner-section .banner-cards .cards {
  width: 96%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  box-shadow: 0px 4px 10px lightgrey;
  border-radius: 12px;
}
.banner-wrapper .banner-section .banner-cards .cards img {
  width: 100%;
  height: 319px;
  border-radius: 12px;
  -o-object-fit: fill;
     object-fit: fill;
}
.banner-wrapper .banner-section .banner-cards .cards .banner-img img {
  height: 276px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.banner-wrapper .banner-section .banner-cards .cards .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 12px;
  gap: 14px;
}
.banner-wrapper .banner-section .banner-cards .cards .banner-content h6 {
  font-weight: 700;
  font-size: 17px;
}
.banner-wrapper .banner-section .banner-cards .cards .banner-content a {
  color: #000000;
}

.pagination {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.pagination a {
  padding: 5px 5px;
  border: 0.5px solid lightgray;
  border-radius: 6px;
  transition: 300ms ease;
}
.pagination a img {
  width: 18px;
}
.pagination a:hover {
  background-color: lightgray;
}
.pagination a img {
  transition: 300ms ease;
}
.pagination a img:hover {
  filter: brightness(0) invert(1);
}
.pagination .numbers {
  text-decoration: none;
  padding: 5px 14px;
  background-color: lightgray;
  border: 0.5px solid lightgray;
  color: #000000;
}
.pagination .numbers:hover {
  background-color: #777;
}

.books-wrapper {
  width: 100%;
  padding: 0 50px;
}
.books-wrapper .book-section {
  width: 100%;
  max-width: 1440px;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
}
.books-wrapper .book-section h1 {
  font-weight: 700;
}
.books-wrapper .book-section .book-cards {
    width:100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.books-wrapper .book-section .book-cards .cards {
  width: 100%;
  max-width: 353px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 10px;
  gap: 4px;
  transition: 300ms ease;
}
.books-wrapper .book-section .book-cards .cards:hover {
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px lightgrey;
}
.books-wrapper .book-section .book-cards .cards .bookImg {
  width: 100%;
  height: 299px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 12px;
}
.books-wrapper .book-section .book-cards .cards .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 6px;
}
.books-wrapper .book-section .book-cards .cards .about-book span {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.books-wrapper .book-section .book-cards .cards .about-book p {
  color: #777;
}
.books-wrapper .book-section .book-cards .cards .about-book .analitic-btn {
  width: 129px;
  padding: 8px 9px;
  font-size: 14px;
  font-weight: 600;
  background-color: #E82323;
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: 300ms ease;
  text-decoration: none;
}

.books-wrapper .book-section .book-cards .cards .about-book .analitic-btn {
  width: 129px;
  padding: 8px 9px;
  font-size: 14px;
  font-weight: 600;
  background-color: #E82323;
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: 300ms ease;
  text-decoration: none;
}
.books-wrapper .book-section .book-cards .cards .about-book .analitic-btn:hover {
  background-color: #fc0000;
}

.analitic-wrapper {
  width: 100%;
  padding: 0 140px;
}
.analitic-wrapper .analitic-section {
  width: 100%;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 40px;
}
.analitic-wrapper .analitic-section h1 {
  font-weight: 700;
}
.analitic-wrapper .analitic-section .analitic-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.analitic-wrapper .analitic-section .analitic-cards .cards {
  width: 100%;
  max-width: 353px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 4px;
  transition: 300ms ease;
}
.analitic-wrapper .analitic-section .analitic-cards .cards:hover {
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px lightgrey;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .bookImg {
  width: 100%;
  height: 299px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 12px;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .about-book {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 6px;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .about-book span {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .about-book p {
  color: #777;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .about-book button {
  width: 129px;
  padding: 8px 9px;
  font-size: 14px;
  font-weight: 600;
  background-color: #E82323;
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: 300ms ease;
}
.analitic-wrapper .analitic-section .analitic-cards .cards .about-book button:hover {
  background-color: #fc0000;
}

.contact-wrapper {
  width: 100%;
  padding: 0 50px;
}
.contact-wrapper .contact-section {
  width: 100%;
  max-width: 1440px;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
}
.contact-wrapper .contact-section .contact-with-us {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px;
  border-bottom: 0.5px solid lightgray;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 8px lightgray;
  position: relative;
}
.contact-wrapper .contact-section .contact-with-us::after {
  content: "";
  position: absolute;
  width: 93.5%;
  height: 1px;
  background-color: #d9d9d9;
  bottom: 0;
}
.contact-wrapper .contact-section .contact-with-us .contact-top {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app h6 {
  font-weight: 700;
  font-size: 20px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app p {
  margin: 0;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app .whatsapp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app a {
  text-decoration: none;
  color: #333;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .left-side-contact .contact-app a img {
  background-color: rgba(0, 0, 0, 0.0588235294);
  border-radius: 100px;
  padding: 8px 10px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .right-side-contact .social-media {
  display: flex;
  flex-direction: column;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .right-side-contact .social-media .social-icon {
  display: flex;
  gap: 6px;
}
.contact-wrapper .contact-section .contact-with-us .contact-top .right-side-contact .social-media .social-icon a {
  background-color: rgba(0, 0, 0, 0.0588235294);
  border-radius: 100px;
  padding: 8px 10px;
}
.contact-wrapper .contact-section .give-your-question {
  width: 100%;
  display: flex;
  gap: 40px;
  padding-top: 20px;
}
.contact-wrapper .contact-section .give-your-question .your-question {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 18px;
}
.contact-wrapper .contact-section .give-your-question .your-question h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.contact-wrapper .contact-section .give-your-question .your-question strong {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}
.contact-wrapper .contact-section .give-your-question .question-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}
.contact-wrapper .contact-section .give-your-question .question-form .send-btn {
  width: 75%;
  background-color: #000000;
  color: #fff;
  height: 50px;
  border: 0.5px solid #000000;
  border-radius: 8px;
  transition: 300ms ease;
  font-weight: 600;
  padding: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .send-btn:hover {
  background-color: #fff;
  color: #000;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact {
  width: 100%;
  max-width: 545px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .name {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .name input {
  border: none;
  outline: none;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.0588235294);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .number {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .number .phoneNumber {
  width: 100%;
  display: flex;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .number .phoneNumber input {
  width: 100%;
  border: none;
  outline: none;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.0588235294);
  padding-left: 10px;
  padding-left: 6px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .number .phoneNumber select {
  border: none;
  background-color: rgba(0, 0, 0, 0.0588235294);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: none;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .number .phoneNumber select option {
  background-color: #fff;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .email {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .email input {
  border: none;
  outline: none;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.0588235294);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .notes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-wrapper .contact-section .give-your-question .question-form .formContact .notes textarea {
  border: none;
  outline: none;
  resize: none;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.0588235294);
  padding-left: 10px;
  padding-right: 10px;
  height: 140px;
  border-radius: 8px;
}

.sign-in-wrapper {
  width: 100%;
}
.sign-in-wrapper .sign-in-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.sign-in-wrapper .sign-in-section .background-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.sign-in-wrapper .sign-in-section .container-form {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.sign-in-wrapper .sign-in-section .container-form .get-back-btn {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.sign-in-wrapper .sign-in-section .container-form .get-back-btn .back-icon {
  color: #000;
  font-size: 24px;
}
.sign-in-wrapper .sign-in-section .container-form .form {
  width: 653px;
  height: auto;
  padding: 40px 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  gap: 20px;
}
.sign-in-wrapper .sign-in-section .container-form .form .input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.sign-in-wrapper .sign-in-section .container-form .form .input .eye-btn {
  position: absolute;
  bottom: 16px;
  right: 17px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.sign-in-wrapper .sign-in-section .container-form .form .input .eye-btn .hidden-pass-open {
  display: none;
  width: 25px;
}
.sign-in-wrapper .sign-in-section .container-form .form .input .eye-btn .hidden-pass-close {
  display: block;
  width: 25px;
}
.sign-in-wrapper .sign-in-section .container-form .form .input label {
  color: #777;
  font-weight: 500;
  font-size: 16px;
}
.sign-in-wrapper .sign-in-section .container-form .form .input input {
  width: 100%;
  height: 56px;
  outline: none;
  background-color: #f5f5f5;
  border: 1px solid #c5c5c5;
  outline: none;
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 60px;
  transition: 0.1s ease-in-out;
  font-size: 17px;
}
.sign-in-wrapper .sign-in-section .container-form .form .btn-submit {
  background: #000;
  color: #fff;
  width: 100%;
  height: 56px;
  border: 2px solid transparent;
  transition: 300ms ease-in-out;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.sign-in-wrapper .sign-in-section .container-form .form .btn-submit:hover {
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
}
.sign-in-wrapper .sign-in-section .container-form .form .checkbox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}
.sign-in-wrapper .sign-in-section .container-form .form .checkbox input {
  width: 18px;
  height: 18px;
  accent-color: black;
}
.sign-in-wrapper .sign-in-section .container-form .form .get-in {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 4px;
}

.overall-wrapper {
  width: 100%;
  padding: 0 50px;
}
.overall-wrapper .overall-section {
  width: 100%;
  max-width: 1440px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
.overall-wrapper .overall-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.overall-wrapper .overall-section .main-content {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}
.overall-wrapper .overall-section .overallImg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 550px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.overall-wrapper .overall-section iframe {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 550px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.overall-wrapper .overall-section .data {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.overall-wrapper .overall-section .data span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 400;
}
.overall-wrapper .overall-section .last-content {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}
.overall-wrapper .overall-section .share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overall-wrapper .overall-section .share .social-media {
  display: flex;
  gap: 10px;
}
.overall-wrapper .overall-section .share .social-media .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #706f6f;
}

.information-inside-wrapper {
  width: 100%;
  padding: 0 50px;
}
.information-inside-wrapper .dashboard-container {
  width: 100%;
  max-width: 1440px;
  margin: 30px auto;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
  position: relative;
}
.information-inside-wrapper .dashboard-container .left-sidebar {
  width: 100%;
  max-width: 298px;
  height: auto;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
}
.information-inside-wrapper .dashboard-container .left-sidebar .profil-user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}
.information-inside-wrapper .dashboard-container .left-sidebar .profil-user .personImg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  background: #000;
  color: #fff;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  padding: 12px 8px;
  background-color: transparent;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: 70ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 2px solid transparent;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info svg {
  width: 22px;
  height: 22px;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info.active {
  background-color: #d9d9d9;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info .exit {
  transition: transform 300ms ease;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info:hover {
  border: 2px solid #c0c0c0;
}
.information-inside-wrapper .dashboard-container .left-sidebar .user-info:hover .exit {
  transform: translateX(-10px);
}
.information-inside-wrapper .dashboard-container .right-side {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancel .go-back {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancel .go-back svg {
  transition: transform 300ms ease;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancel .go-back:hover svg {
  transform: translateX(-10px);
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancel .go-back span {
  font-weight: 500;
  font-size: 16px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey {
  width: 100%;
  height: auto;
  background-color: #d9d9d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  position: relative;
  transition: 0.2s ease-in-out;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey:hover {
  background-color: #e6e5e5;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey:hover input {
  background-color: #e6e5e5;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey .profil-user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey .profil-user .personImg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  background: #000;
  color: #fff;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 12px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey input {
  background-color: #d9d9d9;
  transition: 0.2s ease-in-out;
  border: none;
  outline: none;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey .cancelRight {
  display: flex;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  color: #000;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey .cancelRight svg {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .cancelSurvey .cancelRight:hover svg {
  transform: translateX(7px);
  fill: grey;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey {
  width: 100%;
  height: auto;
  background-color: #d9d9d9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 20px;
  justify-content: space-between;
  position: relative;
  transition: 0.2s ease-in-out;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey:hover {
  background-color: #e6e5e5;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey .profil-user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey .profil-user .personImg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  background: #000;
  color: #fff;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 12px;
}
.information-inside-wrapper .dashboard-container .right-side .survey-content .allSurvey input {
  width: 60%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
  border: none;
  outline: none;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .order-btn {
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.1s ease-in-out;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .order-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay {
  position: fixed;
  overflow-x: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 50px;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside #productQuantity {
  width: 100%;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
  color: #C0C0C0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside label {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 14px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside label span {
  color: red;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside input {
  width: 100%;
  background-color: #fff;
  border: 0.5px solid #F0F0F0;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  padding: 12px 20px;
  border-radius: 16px;
  outline: none;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .name-surname .input-inside input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 9px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area label {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 14px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area #textArea {
  width: 100%;
  height: 160px;
  outline: none;
  resize: none;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 1px 4px 4px 0px rgba(228, 228, 228, 0.2509803922);
  border: 0.5px solid #F0F0F0;
  border-radius: 16px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area #textArea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area #textArea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C0C0C0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 18px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .text-area p {
  color: #000;
  font-weight: 400;
  font-size: 15px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .add-file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .add-file .input-plus {
  position: relative;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .add-file .input-plus input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .add-file .input-plus .plus {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf5ff;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .add-file .input-plus .plus .plus-icon {
  color: #1a59a6;
  font-size: 16px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .form .form-submit {
  width: 100%;
  margin-top: 20px;
  background-color: #000;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s ease-out;
  border: 2px solid transparent;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .modal-window {
  width: 100%;
  max-width: 653px;
  background: white;
  padding: 40px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  position: relative;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .modal-window .order-content {
  width: 100%;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 10px;
}
.information-inside-wrapper .dashboard-container .right-side .content-submit .modal-overlay .modal-window .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm {
  margin-top: 40px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 28px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info label {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 14px;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info input {
  width: 100%;
  height: 56px;
  background-color: #d9d9d9;
  border-radius: 8px;
  border: none;
  outline: none;
  padding: 16px;
  font-size: 17px;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info .number-selector {
  width: 100%;
  display: flex;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info .number-selector .phoneInput {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .your-info .number-selector #numberSelector {
  background-color: #d9d9d9;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  border: none;
  outline: none;
  color: #777;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .submit-btn {
  padding: 15px 18px;
  background-color: #d9d9d9;
  border-radius: 8px;
  width: 50%;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.information-inside-wrapper .dashboard-container .right-side .informationForm .submit-btn:hover {
  background-color: #000;
  color: #fff;
}

.exit-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 70px auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.exit-wrapper .main-content {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}
.exit-wrapper .submit-button {
  background-color: #000000;
  padding: 11px 27px;
  color: #fff;
  transition: 300ms ease;
  border: none;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
}
.exit-wrapper .submit-button:hover {
  border: 1px solid #000000;
  background-color: #fff;
  color: #000000;
}

@media only screen and (max-width: 1250px) {
  .header-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .questions-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .information-inside-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .exit-wrapper {
    padding: 0 20px;
  }
  .navbar-wrapper {
    width: 100%;
    padding: 20px 20px;
  }
  .overall-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .overall-wrapper .overall-section .main-content {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    text-align: left;
  }
  .overall-wrapper .overall-section .overallImg {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 450px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .map-container {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .jurnals-wrapper .jurnal-section .jurnal-cards .cards img {
    width: 100%;
    height: 285px;
  }
  .navbar-wrapper .nav-section .navbar-right .navBar a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
  }
  .hero-wrapper .hero-section {
    width: 100%;
    height: 600px;
    position: relative;
    margin: 0 auto;
  }
  .science-slider-wrapper .container {
    width: 100%;
    position: relative;
    margin: 60px auto;
  }
  .contact-wrapper {
    padding: 0 20px;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-slide {
    width: 353px;
    background-color: #fff;
    text-align: center;
  }
  .navbar-wrapper .navBar {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .about-breadcrumb {
    padding: 0 20px;
  }
  .information-wrapper {
    padding: 0 20px;
  }
  .redaction-wrapper {
    padding: 0 20px;
  }
  .jurnals-wrapper {
    padding: 0 20px;
  }
  .books-wrapper {
    padding: 0 20px;
  }
  .banner-wrapper {
    padding: 0 20px;
  }
  .logos-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .video-slider-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .news-slider-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .analysis-slider-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .slider-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .science-slider-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .hero-wrapper .hero-section .hero-content {
    width: 100%;
    padding: 0 20px;
  }
  .navbar-wrapper .nav-section .navbar-right .signIn .submit-button {
    padding: 10px 14px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
  }
  .navbar-wrapper .nav-section .navbar-right .signIn .register-button {
    padding: 10px 14px;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .news-slider-wrapper .news-swiper .swiper-slide {
    width: 353px;
    background-color: #fff;
    text-align: center;
  }
  .news-slider-wrapper .news-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 300px;
  }
  .banner-wrapper .banner-section .banner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .books-wrapper .book-section .book-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-wrapper .hero-section .hero-content h1 {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
  }
  .science-slider-wrapper .science-swiper .swiper-slide {
    width: 257px;
    background-color: #fff;
    padding: 10px;
    text-align: center;
  }
  .science-slider-wrapper .science-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 279px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .slider-wrapper .book-swiper .swiper-slide {
    width: 257px;
    background-color: #fff;
    padding: 10px;
    text-align: center;
  }
  .slider-wrapper .book-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 279px;
  }
  .news-slider-wrapper .news-swiper .swiper-slide .about-book h4 {
    font-weight: 600;
    font-size: 16px;
  }
  .news-slider-wrapper .news-swiper .swiper-slide .about-book p {
    font-size: 14px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide {
    width: 360px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide .iframediv {
    width: 100%;
    height: 257px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide .about-book h4 {
    font-weight: 600;
    font-size: 16px;
  }
  .contact-wrapper .contact-section h2 {
    font-weight: 700;
    font-size: 30px;
  }
  .contact-wrapper .contact-section .location-and-number .info a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  .contact-wrapper .contact-section .location-and-number .social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-wrapper .contact-section .location-and-number p {
    font-weight: 600;
    font-size: 16px;
  }
  .contact-wrapper .contact-section .location-and-number .info .social-icons a {
    width: 36px;
    height: 36px;
  }
  .contact-wrapper .contact-section h2 {
    font-weight: 700;
    font-size: 24px;
  }
  .hero-wrapper .hero-section .hero-content {
    width: 100%;
    text-align: center;
    max-width: 976px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .contact-wrapper .contact-section .location-and-number {
    padding: 20px 5px;
  }
  .footer-wrapper .footer-section .footer-top .footer-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .contact-wrapper .contact-section .location-and-number {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 1094px) {
  .navBar {
    display: none !important;
  }
  .footer-wrapper .footer-section .footer-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer-wrapper .footer-section .footer-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
  .footer-wrapper .social-media {
    width: 100%;
    max-width: 1440px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
  }
  .footer-wrapper .footer-section .footer-top .footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 51px;
  }
  .nav-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .nav-section .hamburger-btn {
    display: flex !important;
    gap: 12px;
    align-items: center;
  }
  .nav-section .hamburger-btn .submit-button {
    background-color: #000000;
    padding: 10px 27px;
    color: #fff;
    transition: 300ms ease;
    border: none;
    border: 1px solid transparent;
    border-radius: 10px;
  }
  .nav-section .hamburger-btn .submit-button:hover {
    border: 1px solid #000000;
    background-color: #fff;
    color: #000000;
  }
  .nav-section .hamburger-btn .hamburger {
    position: relative;
    z-index: 1001;
    background-color: black;
    padding: 7px 13px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-section .hamburger-btn .hamburger .hamburger-icon {
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .nav-section .hamburger-btn.menu-open .hamburger {
    position: fixed;
    top: 16px;
    right: 30px;
    z-index: 2000;
  }
  .nav-section .logo img {
    width: 60px;
    height: 60px;
  }
  .header-responsive-wrapper {
    display: block !important;
    width: 100%;
  }
  .header-responsive-wrapper .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 20px;
    z-index: 1500;
  }
  .header-responsive-wrapper .mobile-menu.active {
    display: flex;
    width: 80%;
    height: 100%;
    overflow-y: auto;
  }
  .header-responsive-wrapper .mobile-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-responsive-wrapper .mobile-menu .menu-header img {
    width: 54px;
  }
  .header-responsive-wrapper .mobile-menu .close-btn {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list {
    padding: 40px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    padding: 10px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .az-language {
    text-decoration: none;
    color: #333;
    background-color: #c2bebe;
    padding: 4px 5px;
    border-radius: 2px;
    transition: 300ms ease;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .az-language:hover {
    background-color: #000000;
    color: #fff;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .english {
    text-decoration: none;
    color: #333;
    background-color: #c2bebe;
    padding: 4px 5px;
    border-radius: 2px;
    transition: 300ms ease;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .english:hover {
    background-color: #000000;
    color: #fff;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .russian {
    text-decoration: none;
    color: #333;
    background-color: #c2bebe;
    padding: 4px 5px;
    border-radius: 2px;
    transition: 300ms ease;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .language .russian:hover {
    background-color: #000000;
    color: #fff;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu {
    display: flex;
    flex-direction: column;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle {
    width: 154px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 400;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle img {
    transition: all 0.3s ease;
    width: 12px;
    height: 12px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active {
    color: #fff;
    background-color: #000;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-toggle.active img,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-toggle.active img {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list {
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #333;
    width: 200px;
    margin-top: 10px;
    padding-left: 10px;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a {
    font-size: 16px;
    color: #333;
    padding: 6px 0;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list a:hover,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list a:hover {
    color: #000;
    font-weight: bold;
  }
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .about-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .publish-menu .menu-list.active,
  .header-responsive-wrapper .mobile-menu .mobile-nav-list .media-menu .menu-list.active {
    display: flex;
  }
}
@media only screen and (max-width: 968px) {
  .contact-wrapper .contact-section .give-your-question {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .left-side-responsive {
    display: block !important;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    top: 0;
    left: -280px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  .left-side-responsive .profil-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
  .left-side-responsive .profil-user .personImg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000;
    margin-bottom: 10px;
    color: #fff;
  }
  .left-side-responsive .profil-user .userName {
    font-weight: 600;
    color: #333;
  }
  .left-side-responsive .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .left-side-responsive .user-info:hover {
    background-color: #f5f5f5;
  }
  .left-side-responsive .user-info.active {
    background-color: #eaeaea;
  }
  .left-side-responsive.active {
    left: 0;
  }
  .menu-btn {
    display: block !important;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s;
  }
  .menu-btn svg {
    width: 28px;
    height: 28px;
  }
  .menu-btn:hover {
    background-color: #f2f2f2;
  }
  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
  }
  .overlay.active {
    display: block;
  }
  .information-inside-wrapper .dashboard-container .left-sidebar {
    display: none !important;
  }
  .banner-wrapper .banner-section .banner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .jurnals-wrapper .jurnal-section .jurnal-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .books-wrapper .book-section .book-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .questions-wrapper .questions-container h1 {
    font-size: 20px;
  }
  .hero-wrapper .hero-section .hero-content h1 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
  }
  .science-slider-wrapper .science-swiper .swiper-button-prev-third,
  .science-slider-wrapper .science-swiper .swiper-button-next-third {
    padding: 6px;
  }
  .slider-wrapper .book-swiper .swiper-button-prev-second,
  .slider-wrapper .book-swiper .swiper-button-next-second {
    padding: 6px;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-button-prev-analysis,
  .analysis-slider-wrapper .analysis-swiper .swiper-button-next-analysis {
    padding: 6px;
  }
  .news-slider-wrapper .news-swiper .swiper-button-prev-news,
  .news-slider-wrapper .news-swiper .swiper-button-next-news {
    padding: 6px;
  }
  .video-slider-wrapper .video-swiper .swiper-button-prev-video,
  .video-slider-wrapper .video-swiper .swiper-button-next-video {
    padding: 6px;
  }
  .video-slider-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
  }
  .news-slider-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
  }
  .analysis-slider-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
  }
  .science-slider-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
  }
  .slider-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
  }
  .header-wrapper {
    display: none;
  }
  .footer-wrapper .footer-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    margin-bottom: 40px;
  }
  .hero-wrapper .hero-section .hero-content .hero-btn {
    padding: 12px 18px;
    font-size: 16px;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-slide {
    width: 302px;
    background-color: #fff;
    text-align: center;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 244px;
  }
  .news-slider-wrapper .news-swiper .swiper-slide {
    width: 302px;
  }
  .news-slider-wrapper .news-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 244px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide {
    width: 302px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide .iframediv {
    width: 100%;
    height: 244px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide .about-book p {
    font-size: 14px;
  }
  .contact-wrapper .contact-section .location-and-number {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .sign-in-wrapper .sign-in-section .container-form .form {
    width: 497px;
    padding: 40px 35px;
  }
  .sign-in-wrapper .sign-in-section .container-form {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-wrapper .footer-section .footer-right .published {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
  .overall-wrapper .overall-section .main-content {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
  }
  .books-wrapper .book-section .book-cards .cards {
    width: 100%;
    max-width: unset !important;
  }
  .books-wrapper .book-section .book-cards .cards .bookImg {
    width: 100%;
    height: 299px;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: 12px;
  }
  .questions-wrapper {
    width: 100%;
    padding: 0 9px;
  }
  .information-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .redaction-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide {
    width: 348px;
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0px 4px 8px rgb(230, 227, 227);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 39px;
  }
  .hero-wrapper .hero-section .hero-content h1 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
  }
  .hero-wrapper .hero-section .hero-content p {
    width: 100%;
    max-width: 700px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #E1E1E1;
  }
}
@media only screen and (max-width: 668px) {
  .jurnals-wrapper .jurnal-section .jurnal-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .exit-wrapper .main-content {
    font-weight: 600;
    font-size: 26px;
    text-align: center;
  }
  .books-wrapper .book-section .book-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .science-slider-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
  }
  .slider-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
  }
  .app .whatsapp .whatsapp-icon {
    font-size: 63px;
  }
  .banner-wrapper .banner-section .banner-cards .cards .banner-img img {
    height: 244px;
  }
  .overall-wrapper .overall-section .overallImg {
    width: 100%;
    height: 350px;
  }
  .banner-wrapper .banner-section .banner-cards .cards {
    width: 96%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-wrapper .contact-section .contact-with-us .contact-top {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-items: start;
  }
  .banner-wrapper .banner-section .banner-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .contact-wrapper .contact-section .contact-with-us {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 93px;
  }
  .science-slider-wrapper .science-swiper .swiper-button-group {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .analysis-slider-wrapper h2 {
    font-size: 22px;
    font-weight: 700;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-button-group {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .science-slider-wrapper .science-swiper .swiper-button-prev-third img,
  .science-slider-wrapper .science-swiper .swiper-button-next-third img {
    width: 20px;
    height: 20px;
  }
  .slider-wrapper .book-swiper .swiper-button-group {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .slider-wrapper .book-swiper .swiper-button-prev-second img,
  .slider-wrapper .book-swiper .swiper-button-next-second img {
    width: 20px;
    height: 20px;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-button-prev-analysis img,
  .analysis-slider-wrapper .analysis-swiper .swiper-button-next-analysis img {
    width: 20px;
    height: 20px;
  }
  .analysis-slider-wrapper .analysis-swiper .swiper-slide .about-book button {
    background-color: #fff;
    padding: 9px 12px;
    font-weight: 500;
    font-size: 12px;
  }
  .slider-wrapper .book-swiper .swiper-slide .about-book button {
    background-color: #E82323;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 12px;
  }
  .analysis-slider-wrapper .watch-all {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
  }
  .news-slider-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
  }
  .news-slider-wrapper .watch-all {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
  }
  .news-slider-wrapper .news-swiper .swiper-button-group {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .news-slider-wrapper .news-swiper .swiper-button-prev-news img,
  .news-slider-wrapper .news-swiper .swiper-button-next-news img {
    width: 20px;
    height: 20px;
  }
  .video-slider-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
  }
  .sign-in-wrapper .sign-in-section .container-form .form {
    width: 380px;
    padding: 40px 35px;
  }
  .video-slider-wrapper .video-swiper .swiper-button-group {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .video-slider-wrapper .video-swiper .swiper-button-prev-video img,
  .video-slider-wrapper .video-swiper .swiper-button-next-video img {
    width: 20px;
    height: 20px;
  }
  .information-wrapper .general-information h1 {
    font-weight: 700;
    font-size: 24px;
  }
  .jurnals-wrapper .jurnal-section h1 {
    font-weight: 700;
    font-size: 24px;
  }
  .jurnals-wrapper .jurnal-section .jurnal-cards .cards img {
    width: 100%;
    height: 263px;
  }
}
@media only screen and (max-width: 568px) {
  .sign-in-wrapper .sign-in-section .container-form .form {
    width: 100% !important;
  }
  .overall-wrapper .overall-section .main-content {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
  .header-responsive-wrapper .mobile-menu.active {
    width: 100%;
    height: 100%;
  }
  .sign-in-wrapper .sign-in-section .container-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
  .sign-in-wrapper .sign-in-section .container-form .get-back-btn {
    width: 40px;
    height: 40px;
  }
  .hero-wrapper .hero-section .hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .contact-wrapper .contact-section .give-your-question .your-question h2 {
    font-size: 30px;
  }
  .contact-wrapper .contact-section .give-your-question .your-question strong {
    font-size: 30px;
  }
  .footer-wrapper .footer-section .footer-top .footer-left {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .navbar-wrapper .nav-section .navbar-right .signIn .register-button {
    padding: 10px 9px;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
  }
  .navbar-wrapper .nav-section .navbar-right .signIn .submit-button {
    padding: 10px 8px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
  }
  .navbar-wrapper .nav-section .hamburger-btn .hamburger {
    padding: 6px 8px;
  }
  .contact-wrapper .contact-section .location-and-number {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .navbar-wrapper .nav-section .logo img {
    width: 54px;
    height: 54px;
  }
  .hero-wrapper .hero-section .hero-content .hero-btn {
    padding: 11px 14px;
    font-size: 14px;
  }
  .footer-wrapper .footer-section .footer-top .footer-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 51px;
  }
  .footer-wrapper .social-media {
    display: flex;
    justify-content: flex-start;
    align-items: end;
  }
  .books-wrapper .book-section .book-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .books-wrapper .book-section .book-cards .cards {
    width: 100%;
    max-width: unset !important;
  }
  .books-wrapper .book-section .book-cards .cards .bookImg {
    width: 100%;
    height: 299px;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: 12px;
  }
  .information-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .redaction-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .video-slider-wrapper .video-swiper .swiper-slide {
    width: 322px;
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0px 4px 8px rgb(230, 227, 227);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 39px;
  }
}/*# sourceMappingURL=style.css.map */