@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

:root {
  --head-clr: #3b7cf5;
  --font-clr: #1c1d3e;
  --second-clr: #a09dab;
  /*font-size: 10px;*/

}

html {
  background-color: #fff;
  overflow-x: hidden;

}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;

}

/*color: #1c1d3e; color: #3b7cf5;*/


/* ======= Home page ======= */
/* Basic reset */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* ======= Home page ======= */
.home {
  margin-top: 100px;
  width: 100%;
  display: flex;
  padding-bottom: 50px;
  justify-content: space-between;
  align-items: center;
}

.home .home-container {
  margin: 0 5%;
  width: 90%;
  display: block;
  padding: 20px 0 0 0;
}

.home-text {
  float: left;
  width: 50%;
  padding-top: 50px;
}

.home-text h1 {
  font-size: 43px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: uppercase;
  color: --font-clr;
}



.home-text p {
  font-size: 16px;
  margin: 20px 0;
  font-weight: 300;
  max-width: 800px;
  color: #000000;
  text-align: justify;
}


/*------ HOME -------*/

.home-image {
  float: right;
  width: 50%;
  position: relative;

}

.home-image .img {
  position: relative;
}


.home-image img {

  width: 80%;
  z-index: 1;
  float: right;

}

.home-image video {
  width: 100%;
  padding-left: 30px;
  z-index: 1;

}

.home-image .img1 {
  position: absolute;
  padding: 0;
  top: -15px;
  right: 54%;
  width: 10%;
}

.home-image .img2 {
  position: absolute;
  padding: 0;
  top: 4%;
  right: 26%;
  width: 10%;
}

.home-image .img3 {
  position: absolute;
  padding: 0;
  top: 19%;
  right: 8.5%;
  width: 10%;
}

.home-image .img4 {
  position: absolute;
  padding: 0;
  top: 53%;
  right: 12.5%;
  width: 10%;
}

.home-image .img5 {
  position: absolute;
  padding: 0;
  top: 64%;
  right: 1%;
  width: 10%;
}

.home-image .img6 {
  position: absolute;
  padding: 0;
  top: 89%;
  right: 28%;
  width: 10%;
}

.home-image .img7 {
  position: absolute;
  padding: 0;
  top: 73%;
  right: 60%;
  width: 10%;
}

.home-image .img8 {
  position: absolute;
  padding: 0;
  top: 55%;
  right: 61%;
  width: 10%;
}


.home-image .img9 {
  Position: absolute;
  padding: 0;
  top: 66%;
  right: 79%;
  width: 10%;
}

.home-image .img10 {
  position: absolute;
  padding: 0;

  top: 18%;
  right: 78%;
  width: 10%;
}

.home-image .img11 {
  position: absolute;
  padding: 0;
  top: 37%;
  right: 86%;
  width: 10%;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.links li a i {
  position: absolute;
  top: 28px;
  padding-left: 5px;
}

.button {
  pointer-events: auto;
  cursor: pointer;
  background: #fff;
  border: none;
  padding: 15px 18px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  border: 2px solid #1c1d3e;
  color: #1c1d3e;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--calypso {
  overflow: hidden;
  font-family: freight-display-pro, serif;
  font-size: 1.15rem;
  border-radius: 0.85rem;
  color: #fff;
}


.button--calypso span {
  display: block;
  position: relative;
  mix-blend-mode: difference;
  z-index: 10;
  letter-spacing: 10px;
  font-weight: 500;
}

.button--calypso:hover span {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;

}

@keyframes MoveScaleUpInitial {
  to {
      transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
      opacity: 0;
  }
}

@keyframes MoveScaleUpEnd {
  from {
      transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
      opacity: 0;
  }

  to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
  }
}

.button--calypso::before {
  content: '';
  background: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.button--calypso:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso::after {
  content: '';
  background: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}


/* For screens between 1200px and 1600px */
@media (min-width: 1200px) and (max-width: 1600px) {
  .home-text h1 {
      font-size: 3.5vw; /* Adjust font size */
      margin-top: 7%; /* Adjust margin as needed */
  }
}

/* For screens larger than 1600px */
@media (min-width: 1600px) {
  .home-text h1 {
      font-size: 3vw; /* Adjust for larger screens */
      margin-top: 11%; /* Maintain negative margin if needed */
  }
}
/* For tablets */
@media (max-width: 992px) {
  .home {
      flex-direction: column;
      align-items: flex-start;
  }

  .home-text {
      width: 100%;
      padding-top: 80px;
  }

  .home-image {
      width: 100%;
      margin-top: 30px;
  }

  .home-text h1,
  .home-text h2 {
      font-size: 40px;
  }

  .home-text h3 {
      font-size: 18px;
  }

  .home-text p {
      font-size: 0.95em;
  }
}

/* For mobile phones */
@media (max-width: 768px) {
  .home-text {
      padding-top: 3px;
      text-align: center;
  }

  .home-text h1,
  .home-text h2 {
      font-size: 35px;
  }

  .home-text h3 {
      font-size: 16px;
  }

  .home-text p {
      font-size: 0.9em;
  }

  .home-image {
      margin-top: 20px;
  }

   .home-image img,
  .home-image video {
      padding-left: 0;
      margin: 34px;
  }

}

/* For small mobile phones */
@media (max-width: 576px) {

  .home-text h1,
  .home-text h2 {
      font-size: 30px;
  }

  .home-text h3 {
      font-size: 14px;
  }

  .home-text p {
      font-size: 0.85em;
  }

  .home-image .img1,
  .home-image .img2,
  .home-image .img3,
  .home-image .img4,
  .home-image .img5,
  .home-image .img6,
  .home-image .img7,
  .home-image .img8,
  .home-image .img9,
  .home-image .img10,
  .home-image .img11 {
      width: 15%;
  }
}

/*   <!-- ======= IDC page ======= --> */

.interactive-catalogue-section {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #E7E7E7;
  text-align: center;
  padding: 20px;
  position: relative;
  /* Ensures the pseudo-element is positioned relative to this section */
}

.interactive-catalogue-section h2 {
  font-size: 22px;
  font-style: "Medium";
  color: #212529;
  font-weight: 400;
}


.interactive-catalogue-section h2,
.interactive-catalogue-section h3,
.interactive-catalogue-section p {
  margin-bottom: 20px;
}

.interactive-catalogue-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.idc-image-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
  /* Ensures the images container is positioned relative to the section */
  z-index: 1;
  /* Makes sure the images are above the border line */
  flex-wrap: wrap;
  /* Allow wrapping to the next line */
}

.idc-image-container img {
  max-width: 10%;
  height: auto;
  border-radius: 8px;
}
.idc-image-container img {
  width: 100%;
  height: auto;
  max-width: 10%;
  border-radius: 8px;
  filter: grayscale(100%);
}

/* For medium screens (tablets) */
@media (max-width: 768px) {
  .idc-image-container img {
    max-width: 20%; /* Adjust the size for tablets */
    align-items: center;
  }
}

/* For small screens (mobiles) */
@media (max-width: 576px) {
  .idc-image-container img {
    max-width: 40%; /* Adjust the size for mobiles */
    align-items: center;
  }
}

/* @media (max-width: 935px) {
  .idc-image-container {
    justify-content: space-around;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
} */

@media (max-width: 767px) {
  .idc-image-container {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
}


/* General styles for the catalogbookmain section */
.catalogbookmain {
  width: 100%;
  background-color: #f9f9f9; /* Light background color for contrast */
  text-align: center; /* Center content horizontally */
  padding: 50px;
}

/* Styles for the content container */
#content {
  width: 100%;
  height: auto; /* Fixed height for the content container */
  margin: 0 auto; /* Center the container horizontally */
  overflow: hidden; /* Hide scrollbars */ /* Light border for visibility */
    
}

/* Ensure the object element scales with the content */
#content object {
  width: 100%;
  height: 100%;
  border: none; /* Remove border if not needed */
  overflow: hidden; /* Hide any scrollbars inside the object */
}

/* @media (max-width: 768px) {
  #content {
      height: 400px;
      overflow: hidden; 
  }
}

@media (max-width: 480px) {
  #content {
      height: 300px;
  }
} */

.catalogbookmain p{
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
}


.social-icons {
  display: flex;
  justify-content: center; /* Centers the icons horizontally */
  align-items: center; /* Centers the icons vertically */
  gap: 10px; /* Space between icons, adjust as needed */
}

.social-icons a {
  color: #000; /* Adjust color as needed */
  text-decoration: none; /* Removes underline from links */
}

.social-icons i {
  font-size: 16px; /* Adjust size of icons as needed */
}

/* Optional: Add responsive design */
@media (max-width: 600px) {
  .social-icons i {
      font-size: 20px; /* Smaller size on smaller screens */
  }
}