html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
  }
  
  .section55 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    position: relative;
  }
  
  .section55:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .section55 img {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .content55 {
    width: 50%;
    text-align: left;
  }
  
  .content55 h2 {
    font-size: 24px;
    color: #2c3e50;
  }
  
  .content55 p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
  }
  
  .road55 {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #3498db;
    transform: translateX(-50%);
  }
  
  .road55:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #3498db;
    border-radius: 50%;
    transform: translateX(-50%);
  }
  
  .road55-line55 {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 0;
    background-color: #3498db;
    transform: translateX(-50%);
    transition: height 0.5s ease-in-out;
  }
  
  .visible55 .road55-line55 {
    height: 100%;
  }
  /* banner55 section55 with Parallax */
.banner55 {
  background: url("../img/banner_1.jpg") 
              no-repeat center center fixed; /* Center and fixed for parallax effect */
  background-size: cover; /* Ensure the image covers the entire area */
  height: 100vh; /* Full viewport height */
  width: 99vw; /* Full viewport width */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
  
  .banner55-content55 h1 {
    z-index: 2;
    color: #4b70a9f2;
  }
  
  .banner55 h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .banner55 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .banner55 .btn {
    background-color: #ff7b00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .banner55 .btn:hover {
    background-color: #e66b00;
  }
  
  /* about55 section55 */
  .about55 {
    background-color: #f4f4f4;
    padding: 250px 20px;
    text-align: center;
  }
  
  .about55 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about55 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Programs section55 */
  .programs55 {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .programs55 h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .program-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .program-item {
    background: #f0f0f0;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .program-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .program-item p {
    font-size: 1rem;
  }
  
  /* testimonial55s55 section55 */
  .testimonials55 {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonials55 h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .testimonial55 {
    margin: 20px 0;
  }
  
  .testimonial55 p {
    font-style: italic;
    font-size: 1.2rem;
  }
  
  /* Contact section55 */
  .contact {
    background-color: #333;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .contact .btn {
    background-color: #ff7b00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .contact .btn:hover {
    background-color: #e66b00;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  /*----------------- Services ---------------------*/
   
  body {
    
    overflow-x: hidden;
  } 
  
  /* Key IT Services Section */
  .key-services-unique {
    font-size: 2.5rem;
    font-weight: bold;
    left: 50px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .key-services-unique::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, orange, pink);
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  
  /*---------------------------- Approach -----------------------------*/
  .timeline-container * {
    box-sizing: border-box;
  }
  
  .timeline-container {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
  }
  
  .timeline-container .timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
  }
  
  .timeline-container .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #006E51;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }
  
  .timeline-container .container {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
  }
  
  .timeline-container .container.left {
    left: -25%;
  }
  
  .timeline-container .container.right {
    left: 25%;
  }
  
  .timeline-container .container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid #006E51;
    border-radius: 16px;
    z-index: 1;
  }
  
  .timeline-container .container.right::after {
    left: -8px;
  }
  
  .timeline-container .container::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: #006E51;
    z-index: 1;
  }
  
  .timeline-container .container.right::before {
    left: 8px;
  }
  
  .timeline-container .container .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #006E51;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
  }
  
  .timeline-container .container.left .date {
    right: -75px;
  }
  
  .timeline-container .container.right .date {
    left: -75px;
  }
  
  .timeline-container .container .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: #F6D155;
    border: 2px solid #006E51;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #006E51;
    z-index: 1;
  }
  
  .timeline-container .container.left .icon {
    right: 56px;
  }
  
  .timeline-container .container.right .icon {
    left: 56px;
  }
  
  .timeline-container .container .content {
    padding: 30px 90px 30px 30px;
    background: #F6D155;
    position: relative;
    border-radius: 0 500px 500px 0;
  }
  
  .timeline-container .container.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
  
  .timeline-container .container .content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: normal;
    color: #006E51;
  }
  
  .timeline-container .container .content p {
    margin: 0;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
  }
  
  @media (max-width: 767.98px) {
    .timeline-container .timeline::after {
      left: 90px;
    }
  
    .timeline-container .container {
      width: 115%;
      padding-left: 120px;
      padding-right: 30px;
    }
  
    .timeline-container .container .content{
      text-align: start;
    }
  
    .timeline-container .container.right {
      left: 0%;
    }
  
    .timeline-container .container.left {
      left: 0%;
    }
  
    .timeline-container .container.left::after, 
    .timeline-container .container.right::after {
      left: 82px;
    }
  
    .timeline-container .container.left::before,
    .timeline-container .container.right::before {
      left: 100px;
      border-color: transparent #006E51 transparent transparent;
    }
  
    .timeline-container .container.left .date,
    .timeline-container .container.right .date {
      right: auto;
      left: 15px;
    }
  
    .timeline-container .container.left .icon,
    .timeline-container .container.right .icon {
      right: auto;
      left: 146px;
    }
  
    .timeline-container .container.left .content,
    .timeline-container .container.right .content {
      padding: 30px 30px 30px 90px;
      border-radius: 500px 0 0 500px;
    }
  }
  
  
  /* Service Section */
  .service-section-unique {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 100px;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff;
  }
  
  .text-container-unique {
    flex: 1;
    padding: 20px;
  }
  
  .text-container-unique h2 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .text-container-unique h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 2.5px;
    background: linear-gradient(45deg, #ff6803, #ca5690);
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  
  .text-container-unique p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #555;
  }
  
  /* Accordion Menu */
  .accordion-menu-unique {
    display: block;
    position: relative;
    border-radius: 5px;
  }
  
  .accordion-menu-unique h3 {
    font-size: 18px;
    line-height: 34px;
    font-weight: bolder;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
    color: #232323;
    margin-bottom: 10px; /* Spacing between the header and bullet list */
  }
  
  .accordion-menu-unique ul {
    list-style: none;
    padding: 0 0px 10px;
    margin-right: 30px;
    border-radius: 5px;
  }
  
  .accordion-menu-unique ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-top: 1px dotted #dce7eb;
  }
  
  .accordion-menu-unique ul li:nth-child(1) {
    border: none;
  }
  
  /* Adding Bullets to the Accordion List */
  .accordion-menu-unique ul li ul {
    list-style-type: disc; /* Ensures that bullets are applied */
    padding-left: 20px; /* Indents the bullets */
    margin-top: 10px;
  }
  
  .accordion-menu-unique ul li ul li {
    margin-bottom: 5px;
    color: rgba(48, 69, 92, 0.8);
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
  }
  
  /* Arrow Styling */
  .accordion-menu-unique ul li .arrow-unique {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before,
  .accordion-menu-unique ul li .arrow-unique:after {
    content: "";
    position: absolute;
    /*background-color: #f6483b;*/
    background: linear-gradient(45deg, #764f8f, #da1f3e);
    width: 3px;
    height: 9px;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before {
    transform: translate(-2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique ul li .arrow-unique:after {
    transform: translate(2px, 0) rotate(-45deg);
  }
  
  /* Checkbox Behavior */
  .accordion-menu-unique ul li input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }
  
  .accordion-menu-unique ul li input[type="checkbox"]:checked ~ ul {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:before {
    transform: translate(2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:after {
    transform: translate(-2px, 0) rotate(-45deg);
  }
  
  .transition,
  p,
  ul li .arrow-unique:before,
  ul li .arrow-unique:after {
    transition: all 0.25s ease-in-out;
  }
  
  /* Image Container */
  .image-container-unique {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 300px; /* Set a minimum height to avoid shifting */
  }
  
  .image-container-unique img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .service-section-unique {
      flex-direction: column;
      text-align: center;
      margin-top: 40px;
      padding: 0px 25px;
    }
  
    .key-services-unique {
      margin-bottom: 50px;
      left: 30px;
    }
  
    .text-container-unique {
      text-align: left;
      padding: 0%;
      line-height: 1.4;
    }
  
    .image-container-unique {
      height: 30%;
    }
  
    .image-container-unique img {
      max-width: 105%;
    }
  }
  
  .dropdown-item {
    position: relative;
    display: inline-block;
    padding-right: 40px; /* Adjust to give space for the label */
  }
  
  .new-label {
    position: absolute;
    right: 10px;
    background-color: blue;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  


  
  .new-content-item {
    display: none; /* Initially hide all content */
  }
  
  .new-content-item.active {
    display: block; /* Show only the active content */
  }
  
  /* Additional class */
  .new-class-66 {
    font-size: 18px; /* Example customization */
    margin-top: 10px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .new-menu {
      flex-direction: column;
      align-items: normal;
    }
    .new-quote-button {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
      .navbar{
          padding-left: 0rem !important;
          padding-right: 1rem !important;
      }
  }
  









.new-menu {
  position: fixed;
  top: -100px; /* Initially hidden (animated with transition) */
  left: 0;
  width: 100%;
  background-color: #0056b3;
  color: white;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  z-index: 997;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding: 10px 20px; */
  transition: top 0.3s ease-in-out; /* Smooth show/hide transition */
}

.new-menu.visible {
  top: 94px; /* Visible when scrolled past the threshold */
}

.new-menu-item {
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.new-menu-item:hover {
  color: #007bff;
}

.new-quote-button {
    margin-left: 13%;
    padding: 3px 3px;
    color: #0056b3;
    background-color: white;
    border: none;
    /* border-radius: 30px; */
    cursor: pointer;
    font-weight: bold;
    transition: background-color 1.3s ease, color 0.3s ease;
}

.new-quote-button:hover {
  background-color: #ffffff;
}


/* Default visibility */
.new-menu {
  display: flex; /* Ensure it is visible by default */
  flex-wrap: wrap; /* Adjust for responsiveness */
}

/* Hide the menu on screens smaller than 768px */
@media (max-width: 1068px) {
  .new-menu {
      display: none; /* Hide the menu */
  }
}














.reels-section {
  text-align: center;
  padding: 20px;
}

.reels-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.reels-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.reel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  transition: all 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel iframe {
  width: 90%;
  height: 90%;
  border-radius: 15px;
  border: none;
}

.reel.active {
  left: 0;
}

.reel.inactive {
  left: -100%;
}





/* [A] WHATSAPP CHAT SUPPORT CLASS */
.whatsapp_chat_support {
  position: relative;
  display: inline-block;
  vertical-align: top;
  }
  .wcs_button_container {
  position: relative; /* Make sure this container is relative */
  }
  .wcs_button {
  text-align: center;
  vertical-align: middle;
  padding: 9px 18px;
  border-radius: 50px;
  background: #2db742;
  color: #fff;
  display: inline-block;
  margin-right: 3px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  
  .wcs_button .fa-brands {
  font-size: 15px;
  margin-right: 3px;
  }
  
  .wcs_button_circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  }
  
  .wcs_button_circle .fa-brands {
  line-height: 50px;
  font-size: 30px;
  margin-right: 0;
  }
  
  .wcs_button_label {
  position: absolute;
  bottom: 100%;
  left: -170%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  font-size: 14px;
  background: #d4f3e6;
  padding: 10px 15px;
  border-radius: 20px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Align items vertically center */
  white-space: nowrap; /* Prevent text from wrapping */
  }
  
  .wcs_button_label:hover {
  background-color: #b0e5d4;
  }
  
  .wcs_button_label::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 85%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d4f3e6;
  }
  
  .wcs_button_icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: middle;
  object-fit: cover;
  }
  
  .wcs_button_text {
  vertical-align: middle;
  }
  
  .wcs_button_label_hide {
  transform: translate(10px, 0);
  opacity: 0;
  visibility: hidden;
  }
  
  .wcs_fixed_right {
  z-index: 999;
  position: fixed;
  bottom: 20px;
  right: 20px;
  }
  
  
  
  .wcs_popup {
  position: absolute;
  width: 300px;
  bottom: 100%;
  right: 0;
  margin-bottom: 20px;
  visibility: hidden;
  max-width: calc(100vw - 60px);
  }
  
  .wcs_popup_close {
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
  opacity: 0.8;
  color: #fff;
  font-size: 18px;
  transition: opacity 0.08s ease-in-out;
  }
  
  .wcs_popup_close:hover {
  opacity: 1;
  }
  /* HEADER */
  
  .wcs_popup_header {
  padding: 20px;
  background: #2db742;
  border-radius: 8px 8px 0 0;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(43, 43, 43, 0.15);
  }
  
  .wcs_popup_header .fa-whatsapp {
  font-size: 50px;
  display: block;
  margin-bottom: 20px;
  }
  
  .wcs_popup_header_description {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  }
  
  /* CONTAINER */
  
  .wcs_popup_person_container {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(43, 43, 43, 0.15);
  }
  
  /* PERSON */
  
  .wcs_popup_person {
  background: #f5f7f9;
  padding: 10px;
  text-align: left;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
  }
  
  .wcs_popup_person:hover {
  box-shadow: 0 1px 2px rgba(43, 43, 43, 0.15);
  }
  
  .wcs_popup_person:last-child {
  margin-bottom: 0;
  }
  
  .wcs_popup_person::after {
  content: "";
  clear: both;
  display: table;
  }
  
  /* PERSON IMG */
  
  .wcs_popup_person_img {
  display: table-cell;
  vertical-align: middle;
  }
  
  .wcs_popup_person_img img {
  border: 2px solid #2db742;
  border-radius: 50%;
  display: block;
  width: 60px;
  height: 60px;
  }
  
  /* PERSON CONTENT */
  
  .wcs_popup_person_content {
  padding-left: 15px;
  display: table-cell;
  vertical-align: middle;
  }
  
  /* PERSON NAME */
  
  .wcs_popup_person_name {
  font-size: 14px;
  color: #383838;
  font-weight: bold;
  }
  
  /* PERSON DESCRIPTION */
  
  .wcs_popup_person_description {
  font-size: 11px;
  line-height: 18px;
  color: #8c8c8c;
  }
  
  /* EFFECTS */
  .wcs-show .wcs_popup {
  visibility: visible;
  }
  
  .wcs-effect .wcs_popup {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s;
  }
  
  .wcs-show.wcs-effect .wcs_popup {
  transform: scale(1);
  opacity: 1;
  }


/* Hide the chat box text and only show icon for mobile */
@media screen and (max-width: 767px) {
  .wcs_button_label {
    display: none;  /* Hide the label text */
  }

  .wcs_button {
    position: absolute;
    bottom: 100%;
    right: -30px;
    transform: translateX(-50%);
    margin-bottom: 10px;
    font-size: 14px;
    background: #2db742;
    padding: 10px 15px;
    border-radius: 20px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Align items vertically center */
    white-space: nowrap;
  }

  .wcs_button_circle span {
    font-size: 30px;
    color: white;
  }
}

/* On larger screens, show both text and icon */
@media screen and (min-width: 768px) {
  .wcs_button {
    display: block;  /* Show the button */
  }

  .wcs_button_label {
    display: flex;  /* Show the label text on larger screens */
  }
}






@font-face {
	font-family: 'MontserratBold';
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/MontserratBold.eot');
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/MontserratBold.eot?#iefix') format('embedded-opentype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/MontserratBold.woff') format('woff'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/MontserratBold.ttf') format('truetype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/MontserratBold.svg#MontserratBold') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'CrimsonRegular';
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/CrimsonRegular.eot');
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/CrimsonRegular.eot?#iefix') format('embedded-opentype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/CrimsonRegular.woff') format('woff'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/CrimsonRegular.ttf') format('truetype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/CrimsonRegular.svg#CrimsonRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

	@font-face {
	font-family: 'HelveticaNeueUltraLight';
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/HelveticaNeueUltraLight.eot');
	src: url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/HelveticaNeueUltraLight.eot?#iefix') format('embedded-opentype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/HelveticaNeueUltraLight.woff') format('woff'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/HelveticaNeueUltraLight.ttf') format('truetype'), url('https://d22j4fzzszoii2.cloudfront.net/images/fontlibrary/HelveticaNeueUltraLight.svg#HelveticaNeueUltraLight') format('svg');
	font-weight: normal;
	font-style: normal;
}
	
	
#wrapper * {
	-webkit-box-sizing: border-box; /* Needed for mobile WebKit */
	-moz-box-sizing: border-box; /* Needed for Firefox */
	box-sizing: border-box;
}

#wrapper p {
	font-family: 'CrimsonRegular', sans-serif;
	margin:0px;
	padding:0px;
	font-size:13px;
	line-height:17px;
	color: #687181;
	-webkit-font-smoothing: antialiased;
}






#wrapper {
	font-family: sans-serif;
	display: block;
	width: 700px;
	height: 450px;
	background-color: #FFFFFF;
	padding: 10px;
  margin: 100px auto 100px auto;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 30px 80px -25px rgba(81,79,90,0.9);
	-moz-box-shadow: 0px 30px 80px -25px rgba(81,79,90,0.9);
	box-shadow: 0px 30px 80px -25px rgba(81,79,90,0.9);
	transition: .3s ease-in-out;
}
#wrapper {
    position: fixed;
    top: 80px; /* Or desired offset */
    left: 25%;
    transform: translateX(-50%);
    z-index: 9999; /* High value to appear above other elements */
}


	.image{
		width: 280px;
		height: 430px;
		float: left;

		background-image: url("../img/happy_22.jpg");
		background-size: 100% 100%;
		background-position: center center;
		transition: 1s cubic-bezier(.6,0,.4,1);
	}
	
	.image:hover{
		background-size: 105% 105%;
	}
	
	.text{
		float: right;
		width: 400px;
		height: 430px;
		position: relative;
		padding: 270px 50px 0px 70px
	}
	
	.discovery{
		position: absolute;
		top: 115px;
		left: -87px;
		z-index: 10;
	}
	.education{
		position: absolute;
		top: 150px;
		left: 70px;
		z-index: 5;
	}
/* Wrapper styling */
.request-call-back {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: nowrap; /* Prevent wrapping */
  overflow: hidden;  /* Avoid unintended overflow issues */
}

/* Input field styling */
.request-call-back #phoneNumber {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  width: 178px; /* Fixed width to avoid pushing the button */
  padding: 10px;
  font-size: 14px;
  border: 2px solid #001aff;
  border-radius: 6px;
  outline: none;
  transition: 0.3s ease;
}

.request-call-back #phoneNumber:focus {
  border-color: #ffbb00;
  box-shadow: 0 0 8px rgba(0, 17, 255, 0.5);
}

/* Button styling */
#wrapper .btn {
  font-family: 'MontserratBold', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  background-color: #001aff;
  color: #ffffff;
  padding: 10px 15px; /* Fixed padding for compact layout */
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap; /* Prevent button text wrapping */
}

#wrapper .btn:hover {
  background-color: #1900ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

	
#wrapper a.exit {
	font-family: 'HelveticaNeueUltraLight', serif;
	font-weight: normal;
	font-size: 60px;
	line-height: 60px;
	display: block;
	position: absolute;
	top: -5px;
	right: 10px;
	color: #d1d6df;
	text-decoration: none;
	text-align: center;
	transition: .2s ease-in-out;
}

#wrapper a.exit:hover {
	color:#9ea5b1;
	}

	


@media screen and (max-width: 700px) {


	
#wrapper {
	width: 100%;
	height: auto;
  left: 0pc;
}
	
.image{
		display:none;
	}
	
	.text{
		float: none;
		width: 100%;
		height: auto;
		padding: 170px 30px 30px 30px;
		text-align: center;
	}
	
.discovery{
		top: 40px;
	  width: 280px;
	  left: 50%;
		margin-left: -140px;
		z-index: 10;
	}
	.education{
		width: 260px;
	  top: 65px;
		left: 50%;
		margin-left: -125px;
		z-index: 5;
	}
	

}

.fadeindown{
  animation: fadeindown ease 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: fadeindown ease 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: fadeindown ease 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: fadeindown ease 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: fadeindown ease 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes fadeindown{
  0% { opacity:0; transform:  translate(0px,-25px);}
  100% { opacity:1; transform:  translate(0px,0px);}
}

@-moz-keyframes fadeindown{
  0% { opacity:0; -moz-transform:  translate(0px,-25px);}
  100% { opacity:1; -moz-transform:  translate(0px,0px);}
}

@-webkit-keyframes fadeindown{
  0% { opacity:0; -webkit-transform:  translate(0px,-25px);}
  100% { opacity:1; -webkit-transform:  translate(0px,0px);}
}

@-o-keyframes fadeindown{
  0% { opacity:0; -o-transform:  translate(0px,-25px);}
  100% { opacity:1; -o-transform:  translate(0px,0px);}
}
@-ms-keyframes fadeindown{
  0% { opacity:0; -ms-transform:  translate(0px,-25px);}
  100% { opacity:1; -ms-transform:  translate(0px,0px);}
}


    

	.popup_22 {
  display: none; /* Initially hidden */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.popup_22.visible {
  display: block; /* Make it visible */
  opacity: 1;
}

