*{
    padding: 0;
    margin: 0;
}
@keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1600px); /* move the container to the left by the total width of all images minus one image width */
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1600px);
    }
    100% {
      transform: translateX(0px); /* move the container to the left by the total width of all images minus one image width */
    }
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateX(0); /* move the text back to its original position */
    }
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes mobileSlideIn{
    0%{
        transform: translateX(500px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes dropdown-animation {
    0% {
      max-height: 0;
    }
    100% {
      max-height: 500px; /* adjust this value to match the height of your dropdown */
    }
  }
  @keyframes shimmer {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 100%;
    }
  }
  @keyframes scroll_reminder {
    0% {
      opacity: 0;
      transform: translateY(-50px) scale(0.8); /* Starts higher up and smaller */
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1); /* Ends in normal position */
    }
  }
  @keyframes fadeInOut1 {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fadeInOut2 {
    0%{
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fadeInOut3 {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  
  .footercol2 a{
    color: white;
    text-decoration: none;
  }
  
  .footer_social i:hover::after {
    content: "Coming Soon!";
    position: absolute;
    bottom: 40px; /* Adjust this to position the text how you like */
    left: 0%;
    transform: translateX(-50%);
    font-family: "Barlow Condensed", sans-serif;
    color: white;
    font-size: 14px; /* You can adjust this size to match your design */
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7); /* Optional: Adds a background to make the text stand out */
    padding: 5px 10px;
    border-radius: 5px;
  }

@media screen and (max-width:450px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 60px;
        margin-right: 20px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        position: absolute;
        left: 0;
    }
    .header_image2 img{
        height: 80px;
        padding: 10px;
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: end;
        height: 834px;
        background-size: cover;
        background-position: 0%;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
    }
  .video-background {
      position: absolute;
      z-index: -1;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0%;
      filter: brightness(0.7);
  }
  .scroll_reminder {
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    text-align: center;
    opacity: 0;
    margin: auto;
    margin-top: 550px;
    animation: scroll_reminder 3s forwards;
    animation-delay: 3s;
    transform: translateY(-50px); /* Starts higher up */
  }
  .scroll_reminder p{
    font-weight: 500;
    letter-spacing: 20px;
  }
  .scroll_reminder i{
    display: inline-block;
  }
  /* First chevron animation */
  .fadearrow1 {
    animation: fadeInOut1 1s ease-in-out infinite;
    animation-delay: 0s;
  }
  /* Second chevron animation */
  .fadearrow2 {
    animation: fadeInOut2 1s ease-in-out infinite;
    animation-delay: 0.33s; /* Starts after the first one */
  }
  /* Third chevron animation */
  .fadearrow3 {
    animation: fadeInOut3 1s ease-in-out infinite;
    animation-delay: 0.66s; /* Starts after the second one */
  }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        display: none;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .mobile_nav a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        font-size: 40px;
        padding: 20px;
        padding-top: 30px;
        color: rgb(133, 0, 0);
    }
    .mobile_nav, #myLinks{
        width: 100vw;
        height: 3000px;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        display: none;
        overflow: hidden;
        animation-name: mobileSlideIn;
        animation-duration: 0.3s;
        animation-timing-function: linear;
        overflow: hidden;
        z-index: 10;
    }
    .mobile_nav a{
        display: flex;
        -webkit-display: flex;
        justify-content: end;
        align-items: center;
        color: white;
        text-decoration: none;
        padding: 20px;
        font-size: 30px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .mobile_nav a:hover{
        color: rgb(255, 174, 0);
        transform: translateX(-20px);
        transition: 0.3s;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 70px;
        width: 250px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 200;
        transition: .1s;
        float: right;
        border: none;
        margin-right: 10px;
        margin-top: 10px;
    }
    .demo_button:hover{
        background-color: rgb(255, 174, 0);
        color: rgb(255, 255, 255);
        font-weight: 500;
        transform: translateX(-10px);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 280px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 15%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 40px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
      flex-direction: column;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 40px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 25px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 100%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 700px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 220px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        width: 90%;
        margin: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 25%;
      }
      .democontact button{
        position: relative;
      }
    .image-wrapper {
        display: none;
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        margin-bottom: 100px;
        margin-top: 50px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 100%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 40px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 90%;
    }
    .testimonials-container {
        position: relative;
        height: 1050px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 100%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 40px;
        font-weight: 400;
        color: rgb(133, 0, 0);
        max-width: 80%;
        margin: auto;
    }
    .testimonial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
        width: 95%
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 100px;
    }
    .platform_wrapper p{
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 80%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
        display: none;
    }
    .footer_logo img{
        position: absolute;
        height: 100px;
        display: none;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 20px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 13px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 1px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 20px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 90%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 10px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 30px;
}
.subprocess p{
    margin: auto;
    padding: 50px;
}
.partner{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.partnerimage{
    display: flex;
    justify-content: center;
    width: 100%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 50px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }
          /********* CONTACT FORM **********/
          .contactform{
            background-image: url(Assets/contact.png);
            background-size: cover;
            height: 900px;
            background-position: 30% 20%;
        }
        form{
            padding-top: 200px;
            border-radius: 5px;
            margin: auto;
        }
        form input, textarea{
            width: 400px;
            height: 30px;
            display: flex;
            -webkit-display: flex;
            justify-content: center;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: none;
            color: rgb(0, 0, 0);
            padding:10px;
            border-radius: 5px;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 600;
        }
        form input::placeholder{
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 300;
        }
        textarea::placeholder{
            font-weight: 300;
        }
        textarea{
            height: 200px;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
        }
        .submitbutton{
            display: flex;
            justify-content: center;
        }
        #submitbutton{
            width: 250px;
            height: 70px;
            background-color: rgb(133, 0, 0);
            color: white;
            font-family: "Barlow Condensed", sans-serif;
            font-weight: 500;
            font-size: 30px;
            border: none;
            border-radius: 10px;
            transition: 0.2s;
        }
        #submitbutton:hover{
            transform: scale(1.1);
            background-color: transparent;
            color: rgb(133, 0, 0);
            border: solid 4px rgb(133, 0, 0);
            font-weight: 400;
            cursor: pointer;
        }
        form input:focus, textarea:focus{
            outline: none;
        }
        .icon-submit {
            font-size: 46px;
            color: rgb(255, 255, 255);
            display: block;
            margin: 20px auto;
            text-align: center;
            text-shadow: 1px 1px 10px black;
          }
        
          .fly-away {
            animation: flyAway 2s linear forwards;
            animation-delay: 0.5s;
          }
          .mathdiv{
            width: 420px;
            display: flex;
            margin: auto;
            margin-bottom: 50px;
          }
          #mathChallenge{
            width: 80px;
          }
          .mathquestion{
            width: 250px;
            height: 30px;
            display: flex;
            -webkit-display: flex;
            justify-content: center;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: none;
            color: rgb(0, 0, 0);
            padding:10px;
            border-radius: 5px;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 600;
          }
        
          @keyframes flyAway {
            0% {
              transform: translateX(0) rotate(5deg);
            }
    
            2% {
                transform: translateX(0) rotate(10deg);
            }
    
            4% {
                transform: translateX(0) rotate(15deg);
            }
    
            6% {
                transform: translateX(0) rotate(20deg);
            }
    
            8% {
                transform: translateX(0) rotate(30deg);
            }
    
            10% {
                transform: translateX(1vw) rotate(35deg);
            }
    
            100% {
              transform: translateX(100vw) translateY(-30vh) rotate(75deg);
            }
          }
                          /*********SOLUTIONS***********/
      .solutionsheader{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 20px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 20px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 25px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      .moderntech_demo{
        width: 200px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }
            
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
        font-size: 40px;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
        display: none;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
        width: 50%;
        margin: auto;
        margin-bottom: 20px;
        font-size: 40px;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 270px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 70%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 90%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
       /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 90%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 25px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 90%;
      }
      .SLpages-container {
        margin-top: 100px;
        margin-bottom: 100px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 125px;
        margin-bottom: 125px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 100px;
        margin-bottom: 100px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 90%;
        margin-top: 20px;
      }
      .table_row1{
        text-align: center;
        padding: 5px;
        background-color: rgb(216, 216, 216);
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
}

@media only screen and (min-width: 451px) and (max-width: 768px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 90px;
        margin-right: 20px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        position: absolute;
        left: 0;
    }
    .header_image2 img{
        height: 100px;
        padding: 10px;
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: end;
        height: 834px;
        background-size: cover;
        background-position: 0%;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
    }
  .video-background {
      position: absolute;
      z-index: -1;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0%;
      filter: brightness(0.7);
  }
  .scroll_reminder {
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    text-align: center;
    opacity: 0;
    margin: auto;
    margin-top: 550px;
    animation: scroll_reminder 3s forwards;
    animation-delay: 3s;
    transform: translateY(-50px); /* Starts higher up */
  }
  .scroll_reminder p{
    font-weight: 500;
    letter-spacing: 20px;
  }
  .scroll_reminder i{
    display: inline-block;
  }
  /* First chevron animation */
  .fadearrow1 {
    animation: fadeInOut1 1s ease-in-out infinite;
    animation-delay: 0s;
  }
  /* Second chevron animation */
  .fadearrow2 {
    animation: fadeInOut2 1s ease-in-out infinite;
    animation-delay: 0.33s; /* Starts after the first one */
  }
  /* Third chevron animation */
  .fadearrow3 {
    animation: fadeInOut3 1s ease-in-out infinite;
    animation-delay: 0.66s; /* Starts after the second one */
  }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        display: none;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .mobile_nav a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        font-size: 40px;
        padding: 20px;
        padding-top: 30px;
        color: rgb(133, 0, 0);
    }
    .mobile_nav, #myLinks{
        width: 100vw;
        height: 3000px;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        display: none;
        overflow: hidden;
        animation-name: mobileSlideIn;
        animation-duration: 0.3s;
        animation-timing-function: linear;
        overflow: hidden;
        z-index: 10;
    }
    .mobile_nav a{
        display: flex;
        -webkit-display: flex;
        justify-content: end;
        align-items: center;
        color: white;
        text-decoration: none;
        padding: 20px;
        font-size: 30px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .mobile_nav a:hover{
        color: rgb(255, 174, 0);
        transform: translateX(-20px);
        transition: 0.3s;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 70px;
        width: 250px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 200;
        transition: .1s;
        float: right;
        border: none;
        margin-right: 10px;
        margin-top: 10px;
    }
    .demo_button:hover{
        background-color: rgb(255, 174, 0);
        color: rgb(255, 255, 255);
        font-weight: 500;
        transform: translateX(-10px);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 280px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 15%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 40px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
      flex-direction: column;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 40px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 25px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 100%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 220px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 25%;
      }
      .democontact button{
        position: relative;
      }
    .image-wrapper {
        display: none;
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        margin-bottom: 100px;
        margin-top: 100px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 100%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 50px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 90%;
    }
    .testimonials-container {
        position: relative;
        height: 1000px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 100%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 45px;
        font-weight: 400;
        color: rgb(133, 0, 0);
        max-width: 80%;
        margin: auto;
    }
    .testimonial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
        width: 90%;
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 100px;
    }
    .platform_wrapper p{
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 80%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
        display: none;
    }
    .footer_logo img{
        position: absolute;
        height: 120px;
        display: none;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 20px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 13px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 1px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 20px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 90%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 10px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 30px;
}
.subprocess p{
    margin: auto;
    padding: 50px;
}
.partner{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.partnerimage{
    display: flex;
    justify-content: center;
    width: 100%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 50px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }
        /********* CONTACT FORM **********/
        .contactform{
            background-image: url(Assets/contact.png);
            background-size: cover;
            height: 900px;
            background-position: 30% 20%;
        }
        form{
            padding-top: 200px;
            border-radius: 5px;
            margin: auto;
        }
        form input, textarea{
            width: 400px;
            height: 30px;
            display: flex;
            -webkit-display: flex;
            justify-content: center;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: none;
            color: rgb(0, 0, 0);
            padding:10px;
            border-radius: 5px;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 600;
        }
        form input::placeholder{
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 300;
        }
        textarea::placeholder{
            font-weight: 300;
        }
        textarea{
            height: 200px;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
        }
        .submitbutton{
            display: flex;
            justify-content: center;
        }
        #submitbutton{
            width: 250px;
            height: 70px;
            background-color: rgb(133, 0, 0);
            color: white;
            font-family: "Barlow Condensed", sans-serif;
            font-weight: 500;
            font-size: 30px;
            border: none;
            border-radius: 10px;
            transition: 0.2s;
        }
        #submitbutton:hover{
            transform: scale(1.1);
            background-color: transparent;
            color: rgb(133, 0, 0);
            border: solid 4px rgb(133, 0, 0);
            font-weight: 400;
            cursor: pointer;
        }
        form input:focus, textarea:focus{
            outline: none;
        }
        .icon-submit {
            font-size: 46px;
            color: rgb(255, 255, 255);
            display: block;
            margin: 20px auto;
            text-align: center;
            text-shadow: 1px 1px 10px black;
          }
        
          .fly-away {
            animation: flyAway 2s linear forwards;
            animation-delay: 0.5s;
          }
          .mathdiv{
            width: 420px;
            display: flex;
            margin: auto;
            margin-bottom: 50px;
          }
          #mathChallenge{
            width: 80px;
          }
          .mathquestion{
            width: 250px;
            height: 30px;
            display: flex;
            -webkit-display: flex;
            justify-content: center;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: none;
            color: rgb(0, 0, 0);
            padding:10px;
            border-radius: 5px;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 20px;
            font-weight: 600;
          }
        
          @keyframes flyAway {
            0% {
              transform: translateX(0) rotate(5deg);
            }
    
            2% {
                transform: translateX(0) rotate(10deg);
            }
    
            4% {
                transform: translateX(0) rotate(15deg);
            }
    
            6% {
                transform: translateX(0) rotate(20deg);
            }
    
            8% {
                transform: translateX(0) rotate(30deg);
            }
    
            10% {
                transform: translateX(1vw) rotate(35deg);
            }
    
            100% {
              transform: translateX(100vw) translateY(-30vh) rotate(75deg);
            }
          }

                /*********SOLUTIONS***********/
      .solutionsheader{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 50px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 25px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      .moderntech_demo{
        width: 200px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }
            
      
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
        font-size: 40px;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
        display: none;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
        width: 50%;
        margin: auto;
        margin-bottom: 20px;
        font-size: 40px;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 270px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 95%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 90%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
       /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 90%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 25px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 90%;
      }
      .SLpages-container {
        margin-top: 100px;
        margin-bottom: 100px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 125px;
        margin-bottom: 125px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 100px;
        margin-bottom: 100px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 80%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 90%;
        margin-top: 20px;
      }
      .table_row1{
        text-align: center;
        padding: 5px;
        background-color: rgb(216, 216, 216);
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
}

@media only screen and (min-width: 769px) and (max-width: 899px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 90px;
        margin-right: 20px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        position: absolute;
        left: 0;
    }
    .header_image2 img{
        height: 100px;
        padding: 10px;
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: end;
        height: 834px;
        background-size: cover;
        background-position: 0%;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
    }
  .video-background {
      position: absolute;
      z-index: -1;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0%;
      filter: brightness(0.7);
  }
  .scroll_reminder {
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    text-align: center;
    opacity: 0;
    margin: auto;
    margin-top: 550px;
    animation: scroll_reminder 3s forwards;
    animation-delay: 3s;
    transform: translateY(-50px); /* Starts higher up */
  }
  .scroll_reminder p{
    font-weight: 500;
    letter-spacing: 20px;
  }
  .scroll_reminder i{
    display: inline-block;
  }
  /* First chevron animation */
  .fadearrow1 {
    animation: fadeInOut1 1s ease-in-out infinite;
    animation-delay: 0s;
  }
  /* Second chevron animation */
  .fadearrow2 {
    animation: fadeInOut2 1s ease-in-out infinite;
    animation-delay: 0.33s; /* Starts after the first one */
  }
  /* Third chevron animation */
  .fadearrow3 {
    animation: fadeInOut3 1s ease-in-out infinite;
    animation-delay: 0.66s; /* Starts after the second one */
  }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        display: none;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .mobile_nav a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        font-size: 40px;
        padding: 20px;
        padding-top: 30px;
        color: rgb(133, 0, 0);
    }
    .mobile_nav, #myLinks{
        width: 100vw;
        height: 3000px;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        display: none;
        overflow: hidden;
        animation-name: mobileSlideIn;
        animation-duration: 0.3s;
        animation-timing-function: linear;
        overflow: hidden;
        z-index: 10;
    }
    .mobile_nav a{
        display: flex;
        -webkit-display: flex;
        justify-content: end;
        align-items: center;
        color: white;
        text-decoration: none;
        padding: 20px;
        font-size: 30px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .mobile_nav a:hover{
        color: rgb(255, 174, 0);
        transform: translateX(-20px);
        transition: 0.3s;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 70px;
        width: 250px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 200;
        transition: .1s;
        float: right;
        border: none;
        margin-right: 10px;
        margin-top: 10px;
    }
    .demo_button:hover{
        background-color: rgb(255, 174, 0);
        color: rgb(255, 255, 255);
        font-weight: 500;
        transform: translateX(-10px);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 280px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 10%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 45px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
      padding: 30px;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 40px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 25px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 50%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 220px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 25%;
      }
      .democontact button{
        position: relative;
      }
    .image-wrapper h1{
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 50px;
        font-size: 50px;
        margin-bottom: 70px;
    }
    .image-wrapper hr{
        max-width: 70%;
        margin: auto;
        margin-top: -40px;
        border-bottom: solid 2px rgb(133, 0, 0);
        border-top: solid 2px rgb(133, 0, 0);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .image-container {
        width: 250%; /* total width of both image rows */
        animation: scroll-left 40s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-container2 {
        width: 250%; /* total width of both image rows */
        animation: scroll-right 40s linear infinite;
        display: flex;
        -webkit-display: flex;
        flex-direction: row-reverse;
    }
    .image-container3 {
        width: 250%; /* total width of both image rows */
        animation: scroll-left 40s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-row {
        width: 200%; /* total width of a single image row */
    }
    .image-row img {
        width: 17%; /* individual image width */
        height: auto; /* individual image height */
        vertical-align: middle;
        margin-right: 10px; /* add some space between images */
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 50%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 50px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 80%;
        margin: auto;
    }
    .testimonials-container {
        position: relative;
        height: 1000px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 50%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 45px;
        font-weight: 400;
        color: rgb(133, 0, 0);
    }
    .testimonial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
        width: 90%;
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 200px;
    }
    .platform_wrapper p{
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 40%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
    }
    .footer_logo img{
        height: 120px;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-around;
        align-items: center;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 25px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        margin-top: 50px;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        margin-right: 5%;
        margin-left: 20%;
        height: 300px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 17px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .section img{
        width: 100%;
    }
    .dropdown{
        width: 100%;
        text-align: center;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 30px;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 10px;
      max-width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 25px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 80%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 100px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 40px;
}
.subprocess p{
    margin: auto;
    padding: 50px;
}
.partner{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.partnerimage{
    display: flex;
    justify-content: center;
    width: 100%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    width: 70%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 100px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }

      /********* CONTACT FORM **********/
      .contactform{
        background-image: url(Assets/contact.png);
        background-size: cover;
        height: 900px;
        background-position: 30% 20%;
    }
    form{
        padding-top: 200px;
        border-radius: 5px;
        margin: auto;
    }
    form input, textarea{
        width: 400px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    form input::placeholder{
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 300;
    }
    textarea::placeholder{
        font-weight: 300;
    }
    textarea{
        height: 200px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
    }
    .submitbutton{
        display: flex;
        justify-content: center;
    }
    #submitbutton{
        width: 250px;
        height: 70px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        border: none;
        border-radius: 10px;
        transition: 0.2s;
    }
    #submitbutton:hover{
        transform: scale(1.1);
        background-color: transparent;
        color: rgb(133, 0, 0);
        border: solid 4px rgb(133, 0, 0);
        font-weight: 400;
        cursor: pointer;
    }
    form input:focus, textarea:focus{
        outline: none;
    }
    .icon-submit {
        font-size: 46px;
        color: rgb(255, 255, 255);
        display: block;
        margin: 20px auto;
        text-align: center;
        text-shadow: 1px 1px 10px black;
      }
    
      .fly-away {
        animation: flyAway 2s linear forwards;
        animation-delay: 0.5s;
      }
      .mathdiv{
        width: 420px;
        display: flex;
        margin: auto;
        margin-bottom: 50px;
      }
      #mathChallenge{
        width: 80px;
      }
      .mathquestion{
        width: 250px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
      }
    
      @keyframes flyAway {
        0% {
          transform: translateX(0) rotate(5deg);
        }

        2% {
            transform: translateX(0) rotate(10deg);
        }

        4% {
            transform: translateX(0) rotate(15deg);
        }

        6% {
            transform: translateX(0) rotate(20deg);
        }

        8% {
            transform: translateX(0) rotate(30deg);
        }

        10% {
            transform: translateX(1vw) rotate(35deg);
        }

        100% {
          transform: translateX(100vw) translateY(-30vh) rotate(75deg);
        }
      }

      /*********SOLUTIONS***********/
      .solutionsheader{
        width: 65%;
        margin: auto;
        text-align: center;
        padding: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 35px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 100px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 100px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 25px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      
      .moderntech_demo{
        width: 200px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }
      
      
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
        display: none;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_tex, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
        width: 50%;
        margin: auto;
        margin-bottom: 20px;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 220px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 80%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 90%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
      /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 75%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        justify-content: space-evenly;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 25px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 50%;
      }
      .SLpages-container {
        margin-top: 150px;
        margin-bottom: 150px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 70%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 175px;
        margin-bottom: 175px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 70%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 150px;
        margin-bottom: 150px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 70%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 40%;
      }
      .table_row1{
        text-align: center;
        background-color: rgb(216, 216, 216);
        padding: 5px;
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
}
@media only screen and (min-width: 900px) and (max-width: 1366px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 90px;
        margin-right: 20px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        display: none;
    }
    #logo-video {
      width: 300px; /* You can adjust the size of the video here */
      height: auto;
      z-index: 1000; /* Make sure it stays on top of other content */
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;      
        width: 100%;
        max-width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
        box-shadow: 0px 10px 15px rgb(0, 0, 0, 0.8);
    }
    .video-background {
        position: absolute;
        z-index: -1;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0%;
        filter: brightness(0.7);
    }
    .scroll_reminder {
      color: white;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 26px;
      text-align: center;
      margin-top: 450px;
      opacity: 0;
      animation: scroll_reminder 3s forwards;
      animation-delay: 3s;
      transform: translateY(-50px); /* Starts higher up */
    }
    .scroll_reminder p{
      font-weight: 500;
      letter-spacing: 20px;
    }
    .scroll_reminder i{
      display: inline-block;
    }
    /* First chevron animation */
    .fadearrow1 {
      animation: fadeInOut1 1s ease-in-out infinite;
      animation-delay: 0s;
    }
    /* Second chevron animation */
    .fadearrow2 {
      animation: fadeInOut2 1s ease-in-out infinite;
      animation-delay: 0.33s; /* Starts after the first one */
    }
    /* Third chevron animation */
    .fadearrow3 {
      animation: fadeInOut3 1s ease-in-out infinite;
      animation-delay: 0.66s; /* Starts after the second one */
    }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 25px;
    }
    .navbar a{
        position: relative;
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 22px;
        transition: 0.1s linear;
    }
    .navbar a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        display: none;
    }
    .mobile_nav_icon i:hover{
        display: none;
    }
    .mobile_nav, #myLinks{
        display: none;
    }
    .mobile_nav a{
        display: none;
    }
    .mobile_nav a:hover{
        display: none;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        transition: .1s;
        border: none;
    }
    .demo_button:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 280px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 10%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 45px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
      padding: 30px;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 40px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 25px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 50%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 60px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 220px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 50%;
      }
      .democontact button{
        position: relative;
        left: 50%;
      }
    .image-wrapper h1{
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 50px;
        font-size: 50px;
        margin-bottom: 70px;
    }
    .image-wrapper hr{
        max-width: 70%;
        margin: auto;
        margin-top: -40px;
        border-bottom: solid 2px rgb(133, 0, 0);
        border-top: solid 2px rgb(133, 0, 0);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .image-container {
        width: 150%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-container2 {
        width: 200%; /* total width of both image rows */
        animation: scroll-right 70s linear infinite;
        display: flex;
        -webkit-display: flex;
        flex-direction: row-reverse;
    }
    .image-container3 {
        width: 200%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-row {
        width: 100%; /* total width of a single image row */
    }
    .image-row img {
        width: 18%; /* individual image width */
        height: auto; /* individual image height */
        vertical-align: middle;
        margin-right: 10px; /* add some space between images */
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 50%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 50px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 80%;
        margin: auto;
    }
    .testimonials-container {
        position: relative;
        height: 850px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 50%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 45px;
        font-weight: 400;
        color: rgb(133, 0, 0);
    }
    .testimonial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
        width: 90%;
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 200px;
    }
    .platform_wrapper p{
        font-size: 70px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 40%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
    }
    .footer_logo img{
        height: 120px;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-around;
        align-items: center;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 25px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        margin-top: 50px;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        margin-right: 5%;
        margin-left: 20%;
        height: 300px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 17px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 10px;
      max-width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 25px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 80%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 100px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 40px;
}
.subprocess p{
    margin: auto;
    padding: 50px;
}
.partner{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.partnerimage{
    display: flex;
    justify-content: center;
    width: 100%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    width: 70%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 100px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }
      /********* CONTACT FORM **********/
      .contactform{
        background-image: url(Assets/contact.png);
        background-size: cover;
        height: 900px;
        background-position: 0% 40%;
    }
    form{
        padding-top: 200px;
        width: 50%;
        border-radius: 5px;
    }
    form input, textarea{
        width: 400px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    form input::placeholder{
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 300;
    }
    textarea::placeholder{
        font-weight: 300;
    }
    textarea{
        height: 200px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
    }
    .submitbutton{
        display: flex;
        justify-content: center;
    }
    #submitbutton{
        width: 250px;
        height: 70px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        border: none;
        border-radius: 10px;
        transition: 0.2s;
    }
    #submitbutton:hover{
        transform: scale(1.1);
        background-color: transparent;
        color: rgb(133, 0, 0);
        border: solid 4px rgb(133, 0, 0);
        font-weight: 400;
        cursor: pointer;
    }
    form input:focus, textarea:focus{
        outline: none;
    }
    .icon-submit {
        font-size: 46px;
        color: rgb(255, 255, 255);
        display: block;
        margin: 20px auto;
        text-align: center;
        text-shadow: 1px 1px 10px black;
      }
    
      .fly-away {
        animation: flyAway 2s linear forwards;
        animation-delay: 0.5s;
      }
      .mathdiv{
        width: 420px;
        display: flex;
        margin: auto;
        margin-bottom: 50px;
      }
      #mathChallenge{
        width: 80px;
      }
      .mathquestion{
        width: 270px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
      }
    
      @keyframes flyAway {
        0% {
          transform: translateX(0) rotate(5deg);
        }

        2% {
            transform: translateX(0) rotate(10deg);
        }

        4% {
            transform: translateX(0) rotate(15deg);
        }

        6% {
            transform: translateX(0) rotate(20deg);
        }

        8% {
            transform: translateX(0) rotate(30deg);
        }

        10% {
            transform: translateX(1vw) rotate(35deg);
        }

        100% {
          transform: translateX(100vw) translateY(-30vh) rotate(75deg);
        }
      }

      /*********SOLUTIONS***********/
      .solutionsheader{
        width: 65%;
        margin: auto;
        text-align: center;
        padding: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 35px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 100px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 100px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 55px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      
      .moderntech_demo{
        width: 200px;
        height: 70px;
        font-size: 25px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }

      
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
        display: none;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        font-size: px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 270px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 70%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 70%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
       /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 65%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        justify-content: space-evenly;
        text-align: justify;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 25px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 50%;
      }
      .SLpages-container {
        margin-top: 150px;
        margin-bottom: 150px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 55%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 175px;
        margin-bottom: 175px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 55%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 150px;
        margin-bottom: 150px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 55%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 40%;
      }
      .table_row1{
        text-align: center;
        background-color: rgb(216, 216, 216);
        padding: 5px;
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
}
@media only screen and (min-width: 1367px) and (max-width: 1919px) {
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .wrapper::-webkit-scrollbar {
        display: none;
      }
      .header_image{
        z-index: 2;
      }
    .header_image img{
        height: 90px;
        margin-right: 100px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        display: none;
    }
    #logo-video {
      width: 320px; /* You can adjust the size of the video here */
      height: auto;
      z-index: 1000; /* Make sure it stays on top of other content */
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;      
        width: 100%;
        max-width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
        box-shadow: 0px 10px 15px rgb(0, 0, 0, 0.8);
    }
    .video-background {
        position: absolute;
        z-index: -1;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0%;
        filter: brightness(0.7);
    }
    .scroll_reminder {
      color: white;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 26px;
      text-align: center;
      margin-top: 450px;
      opacity: 0;
      animation: scroll_reminder 3s forwards;
      animation-delay: 3s;
      transform: translateY(-50px); /* Starts higher up */
    }
    .scroll_reminder p{
      font-weight: 500;
      letter-spacing: 20px;
    }
    .scroll_reminder i{
      display: inline-block;
    }
    /* First chevron animation */
    .fadearrow1 {
      animation: fadeInOut1 1s ease-in-out infinite;
      animation-delay: 0s;
    }
    /* Second chevron animation */
    .fadearrow2 {
      animation: fadeInOut2 1s ease-in-out infinite;
      animation-delay: 0.33s; /* Starts after the first one */
    }
    /* Third chevron animation */
    .fadearrow3 {
      animation: fadeInOut3 1s ease-in-out infinite;
      animation-delay: 0.66s; /* Starts after the second one */
    }
    .spanishbutton{
        color: rgb(133,0,0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        width: 95%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
    }
    .navbar a{
        position: relative;
        text-decoration: none;
        color: rgb(25, 25, 25);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 22px;
        transition: 0.1s linear;
    }
    .navbar a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        display: none;
    }
    .mobile_nav_icon i:hover{
        display: none;
    }
    .mobile_nav, #myLinks{
        display: none;
    }
    .mobile_nav a{
        display: none;
    }
    .mobile_nav a:hover{
        display: none;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        transition: .1s;
        border: none;
    }
    .demo_button:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 200px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 2%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 50px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 45px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 30px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 50%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 80px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 250px;
        background-size: 200% 200%;
        background-image: linear-gradient(45deg, rgb(133,0,0), rgb(158, 125, 125));
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .4s;
        border: none;
    }
    .demo_button2:hover{
        color: rgb(255, 255, 255);
        font-weight: 400;
        transform: scale(1.1);
        box-shadow: 0px 0px 25px rgb(255,255,255,0.9);
        background-image:linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.1));
        color: rgb(133, 0, 0);
        font-weight: 500;
    }
    
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.7);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(10px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 50%;
      }
      .democontact button{
        position: relative;
        left: 50%;
      }
      
    .image-wrapper h1{
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 50px;
        font-size: 70px;
        margin-bottom: 70px;
    }
    .image-wrapper hr{
        max-width: 70%;
        margin: auto;
        margin-top: -40px;
        border-bottom: solid 2px rgb(133, 0, 0);
        border-top: solid 2px rgb(133, 0, 0);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .image-container {
        width: 170%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-container2 {
        width: 200%; /* total width of both image rows */
        animation: scroll-right 70s linear infinite;
        display: flex;
        -webkit-display: flex;
        flex-direction: row-reverse;
    }
    .image-container3 {
        width: 200%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-row {
        width: 100%; /* total width of a single image row */
    }
    .image-row img {
        width: 19%; /* individual image width */
        height: auto; /* individual image height */
        vertical-align: middle;
        margin-right: 10px; /* add some space between images */
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 50%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 70px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 80%;
        margin: auto;
    }
    .testimonials-container {
        position: relative;
        height: 700px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 50%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 65px;
        font-weight: 400;
        color: rgb(133, 0, 0);
    }
    .testimonial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
        width: 90%;
    }
    .testimonial.active {
        opacity: 1;
    }
    
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 200px;
    }
    .platform_wrapper p{
        font-size: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 40%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    /**************************************/
    /***************FOOTER*****************/
    /**************************************/
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
    }
    .footer_logo img{
        height: 120px;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 20px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
    }
    .footercol1{
        margin-left: 50px;
    }
    .footercol2{
        text-align: center;
        margin-left: 50px;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        margin-right: 2%;
        margin-left: 5%;
        height: 300px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 17px;
        line-height: 2;
    }
    /**********************************************/
    /*******************PROCESS********************/
    /**********************************************/
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 10px;
      max-width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 25px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 80%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 100px; /* Add padding when expanded */
  }
    .subprocess{
        width: 100%;
        text-align: center;
        background-color: rgb(133, 0, 0);
        color:white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 60px;
        padding: 50px;
    }
    .subprocess p{
        max-width: 70%;
        margin: auto;
    }
    .partner{
        display: flex;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .partnerimage{
        width: 50%;
    }
    .partnerimage img{
      width: 100%;
    }
    .partnertext{
        display: flex;
        flex-direction: column;
        justify-content: end;
        padding: 30px;
        width: 50%;
    }
    .partnertext h1{
        text-align: left;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 70px;
        font-weight: 400;
        padding-left: 30px;
        padding-bottom: 30px;
    }
    .partnertext hr{
        max-width: 50%;
        width: 50%;
        margin-left: auto;
        border: solid 3px rgb(133, 0, 0);
    }
    .partnertext p{
        text-align: left;
        color:rgb(42, 42, 42);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 25px;
        padding-left: 30px;
        padding-top: 30px;
    }
    .animated-line {
        height: 3px;
        background-color: rgb(133, 0, 0);
        width: 50%; /* limit the width to 50% */
        transform: translateX(0); /* initial translateX value */
        transition: transform 2.5s; /* add transition effect */
      }
      
      .animated-line.animate {
        transform: translateX(calc(100% - 0%)); /* move the line to the right side */
      }
      .partnercircle img{
        position: absolute;
        display: block;
        right: 100px;
        height: 300px;
        width: 300px;
        border-radius: 50%;
        z-index: -1;
        filter: opacity(0.4);
      }

  
    /********* CONTACT FORM **********/
    .contactform{
        background-image: url(Assets/contact.png);
        background-size: cover;
        height: 900px;
        background-position: 0% 40%;
    }
    form{
        padding-top: 200px;
        width: 50%;
        border-radius: 5px;
    }
    form input, textarea{
        width: 400px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    form input::placeholder{
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 300;
    }
    textarea::placeholder{
        font-weight: 300;
    }
    textarea{
        height: 200px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
    }
    .submitbutton{
        display: flex;
        justify-content: center;
    }
    #submitbutton{
        width: 250px;
        height: 70px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        border: none;
        border-radius: 10px;
        transition: 0.2s;
    }
    #submitbutton:hover{
        transform: scale(1.1);
        background-color: transparent;
        color: rgb(133, 0, 0);
        border: solid 4px rgb(133, 0, 0);
        font-weight: 400;
        cursor: pointer;
    }
    form input:focus, textarea:focus{
        outline: none;
    }
    .icon-submit {
        font-size: 46px;
        color: rgb(255, 255, 255);
        display: block;
        margin: 20px auto;
        text-align: center;
        text-shadow: 1px 1px 10px black;
      }
    
      .fly-away {
        animation: flyAway 2s linear forwards;
        animation-delay: 0.5s;
      }
      .mathdiv{
        width: 420px;
        display: flex;
        margin: auto;
        margin-bottom: 50px;
      }
      #mathChallenge{
        width: 80px;
      }
      .mathquestion{
        width: 270px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
      }
    
      @keyframes flyAway {
        0% {
          transform: translateX(0) rotate(5deg);
        }

        2% {
            transform: translateX(0) rotate(10deg);
        }

        4% {
            transform: translateX(0) rotate(15deg);
        }

        6% {
            transform: translateX(0) rotate(20deg);
        }

        8% {
            transform: translateX(0) rotate(30deg);
        }

        10% {
            transform: translateX(1vw) rotate(35deg);
        }

        100% {
          transform: translateX(100vw) translateY(-30vh) rotate(75deg);
        }
      }

      /*********SOLUTIONS***********/
      .solutionsheader{
        width: 65%;
        margin: auto;
        text-align: center;
        padding: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 35px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 100px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 100px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 55px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      .moderntech_demo{
        width: 200px;
        height: 70px;
        font-size: 25px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }

      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        font-size: px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 400px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 70%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 500px;
        width: auto;
      }
      .aboutus_text{
        max-width: 50%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }

      /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 45%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 15%;
        padding-right: 15%;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        justify-content: space-evenly;
        text-align: justify;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 25px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 50%;
      }
      .SLpages-container {
        margin-top: 300px;
        margin-bottom: 300px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 325px;
        margin-bottom: 325px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 250px;
        margin-bottom: 250px;
        position: relative;
        width: 90%;
        height: 400px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 40%;
      }
      .table_row1{
        text-align: center;
        background-color: rgb(216, 216, 216);
        padding: 5px;
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
      
}
@media only screen and (min-width: 1920px) and (max-width: 2560px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 90px;
        margin-right: 100px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        display: none;
    }
    #logo-video {
      width: 350px; /* You can adjust the size of the video here */
      height: auto;
      z-index: 1000; /* Make sure it stays on top of other content */
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;      
        width: 100%;
        max-width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
        box-shadow: 0px 10px 15px rgb(0, 0, 0, 0.8);
    }
    .video-background {
        position: absolute;
        z-index: -1;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0%;
        filter: brightness(0.7);
    }
    .scroll_reminder {
      color: white;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 26px;
      text-align: center;
      margin-top: 450px;
      opacity: 0;
      animation: scroll_reminder 3s forwards;
      animation-delay: 3s;
      transform: translateY(-50px); /* Starts higher up */
    }
    .scroll_reminder p{
      font-weight: 500;
      letter-spacing: 20px;
    }
    .scroll_reminder i{
      display: inline-block;
    }
    /* First chevron animation */
    .fadearrow1 {
      animation: fadeInOut1 1s ease-in-out infinite;
      animation-delay: 0s;
    }
    /* Second chevron animation */
    .fadearrow2 {
      animation: fadeInOut2 1s ease-in-out infinite;
      animation-delay: 0.33s; /* Starts after the first one */
    }
    /* Third chevron animation */
    .fadearrow3 {
      animation: fadeInOut3 1s ease-in-out infinite;
      animation-delay: 0.66s; /* Starts after the second one */
    }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        width: 95%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
    }
    .navbar a{
        position: relative;
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 22px;
        transition: 0.1s linear;
    }
    .navbar a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        display: none;
    }
    .mobile_nav_icon i:hover{
        display: none;
    }
    .mobile_nav, #myLinks{
        display: none;
    }
    .mobile_nav a{
        display: none;
    }
    .mobile_nav a:hover{
        display: none;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        transition: .1s;
        border: none;
    }
    .demo_button:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 200px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 2%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 50px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 50px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 35px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 50%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 80px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 250px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 50%;
      }
      .democontact button{
        position: relative;
        left: 50%;
      }
    .image-wrapper h1{
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 50px;
        font-size: 70px;
        margin-bottom: 70px;
    }
    .image-wrapper hr{
        max-width: 70%;
        margin: auto;
        margin-top: -40px;
        border-bottom: solid 2px rgb(133, 0, 0);
        border-top: solid 2px rgb(133, 0, 0);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .image-container {
        width: 170%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-container2 {
        width: 200%; /* total width of both image rows */
        animation: scroll-right 70s linear infinite;
        display: flex;
        -webkit-display: flex;
        flex-direction: row-reverse;
    }
    .image-container3 {
        width: 200%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-row {
        width: 100%; /* total width of a single image row */
    }
    .image-row img {
        width: 19%; /* individual image width */
        height: auto; /* individual image height */
        vertical-align: middle;
        margin-right: 10px; /* add some space between images */
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 50%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 70px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 80%;
        margin: auto;
    }
    .testimonials-container {
        position: relative;
        height: 700px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 50%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 65px;
        font-weight: 400;
        color: rgb(133, 0, 0);
    }
    .testimonial {
        position: absolute;
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 200px;
    }
    .platform_wrapper p{
        font-size: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 40%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
    }
    .footer_logo img{
        height: 120px;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 25px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        margin-top: 50px;
        margin-left: 5%;
    }
    .footer_social{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        margin-right: 5%;
        margin-left: 5%;
        height: 300px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 17px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .process{
        width: 100%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
    }
    .section img{
        width: 100%;
    }
    .dropdown{
        width: 100%;
        text-align: center;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 30px;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 10px;
      max-width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 25px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 80%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 100px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 60px;
    padding: 50px;
}
.subprocess p{
    max-width: 70%;
    margin: auto;
}
.partner{
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}
.partnerimage{
    width: 50%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    width: 50%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 70px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 35px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 100px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }
      /********* CONTACT FORM **********/
      .contactform{
        background-image: url(Assets/contact.png);
        background-size: cover;
        height: 900px;
        background-position: 0% 40%;
    }
    form{
        padding-top: 200px;
        width: 50%;
        border-radius: 5px;
    }
    form input, textarea{
        width: 400px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    form input::placeholder{
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 300;
    }
    textarea::placeholder{
        font-weight: 300;
    }
    textarea{
        height: 200px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
    }
    .submitbutton{
        display: flex;
        justify-content: center;
    }
    #submitbutton{
        width: 250px;
        height: 70px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        border: none;
        border-radius: 10px;
        transition: 0.2s;
    }
    #submitbutton:hover{
        transform: scale(1.1);
        background-color: transparent;
        color: rgb(133, 0, 0);
        border: solid 4px rgb(133, 0, 0);
        font-weight: 400;
        cursor: pointer;
    }
    form input:focus, textarea:focus{
        outline: none;
    }
    .icon-submit {
        font-size: 46px;
        color: rgb(255, 255, 255);
        display: block;
        margin: 20px auto;
        text-align: center;
        text-shadow: 1px 1px 10px black;
      }
    
      .fly-away {
        animation: flyAway 2s linear forwards;
        animation-delay: 0.5s;
      }
      .mathdiv{
        width: 420px;
        display: flex;
        margin: auto;
        margin-bottom: 50px;
      }
      #mathChallenge{
        width: 80px;
      }
      .mathquestion{
        width: 270px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
      }
    
      @keyframes flyAway {
        0% {
          transform: translateX(0) rotate(5deg);
        }

        2% {
            transform: translateX(0) rotate(10deg);
        }

        4% {
            transform: translateX(0) rotate(15deg);
        }

        6% {
            transform: translateX(0) rotate(20deg);
        }

        8% {
            transform: translateX(0) rotate(30deg);
        }

        10% {
            transform: translateX(1vw) rotate(35deg);
        }

        100% {
          transform: translateX(100vw) translateY(-30vh) rotate(75deg);
        }
      }

      /*********SOLUTIONS***********/
      .solutionsheader{
        width: 65%;
        margin: auto;
        text-align: center;
        padding: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 35px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 100px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 100px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 55px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      .moderntech_demo{
        width: 200px;
        height: 70px;
        font-size: 25px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }
      
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        font-size: px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }

      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 400px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%; 
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 60%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 50%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
      
      /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 45%;
        display: flex;
        flex-direction: column;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        justify-content: space-evenly;
        text-align: justify;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 30px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 50%;
      }
      .SLpages-container {
        margin-top: 250px;
        margin-bottom: 250px;
        position: relative;
        width: 90%;
        height: 700px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        margin-top: 325px;
        margin-bottom: 325px;
        position: relative;
        width: 90%;
        height: 700px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        margin-top: 250px;
        margin-bottom: 250px;
        position: relative;
        width: 90%;
        height: 700px; /* Adjust to fit your images */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 40%;
      }
      .table_row1{
        text-align: center;
        background-color: rgb(216, 216, 216);
        padding: 5px;
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
}
@media screen and (min-width:2561px){
    body{
        overflow-x: hidden;
        background-color: rgb(255, 255, 255);
    }
    .wrapper{
        overflow-x: hidden;
        height: auto;
    }
    .header_image img{
        height: 90px;
        margin-right: 100px;
        transition: 0.1s;
    }
    .header_image img:hover{
        transform: scale(1.1);
        cursor: pointer;
        filter:drop-shadow(8px 8px 3px rgb(0,0,0,0.5));
    }
    .header_image2{
        display: none;
    }
    #logo-video {
      width: 350px; /* You can adjust the size of the video here */
      height: auto;
      z-index: 1000; /* Make sure it stays on top of other content */
    }
    .header{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        align-items: center;      
        width: 100%;
        max-width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.80) 20%, rgba(255, 255, 255, 0.65) 30%, transparent 55%);
        box-shadow: 0px 10px 15px rgb(0, 0, 0, 0.8);
    }
    .video-background {
        position: absolute;
        z-index: -1;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0%;
        filter: brightness(0.7);
    }
    .scroll_reminder {
      color: white;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 26px;
      text-align: center;
      margin-top: 450px;
      opacity: 0;
      animation: scroll_reminder 3s forwards;
      animation-delay: 3s;
      transform: translateY(-50px); /* Starts higher up */
    }
    .scroll_reminder p{
      font-weight: 500;
      letter-spacing: 20px;
    }
    .scroll_reminder i{
      display: inline-block;
    }
    /* First chevron animation */
    .fadearrow1 {
      animation: fadeInOut1 1s ease-in-out infinite;
      animation-delay: 0s;
    }
    /* Second chevron animation */
    .fadearrow2 {
      animation: fadeInOut2 1s ease-in-out infinite;
      animation-delay: 0.33s; /* Starts after the first one */
    }
    /* Third chevron animation */
    .fadearrow3 {
      animation: fadeInOut3 1s ease-in-out infinite;
      animation-delay: 0.66s; /* Starts after the second one */
    }
    .spanishbutton{
        color: rgb(133, 0, 0);
        background-color: transparent;
        border: none;
        text-decoration: underline;
        position: absolute;
        right: 0;
        margin-right: 10px;
    }
    .spanishbutton:hover{
        cursor: pointer;
        transform: scale(1.1);
    }
    .navbar{
        width: 95%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
    }
    .navbar a{
        position: relative;
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 22px;
        transition: 0.1s linear;
    }
    .navbar a:not(.enrollbutton):before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2.5px;
        border-radius: 10px;
        background-color: rgb(255, 0, 0);
        transition: width 0.3s ease-in-out;
    }
    .navbar .header_image a:before,
    .navbar .header_image2 a:before {
    display: none;
    }
    .navbar a:hover::before {
        width: 100%;
    }
    .mobile_nav_icon i{
        display: none;
    }
    .mobile_nav_icon i:hover{
        display: none;
    }
    .mobile_nav, #myLinks{
        display: none;
    }
    .mobile_nav a{
        display: none;
    }
    .mobile_nav a:hover{
        display: none;
    }
    .active_nav{
        border-bottom: solid 3px red;
        font-weight: 500;
    }
    .demo_button{
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        transition: .1s;
        border: none;
    }
    .demo_button:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
    }
    .sub_hero_opener{
        background-color: rgb(133, 0, 0);
        height: 200px;
    }
    .sub_hero_opener h1{
        text-align: center;
        padding-top: 2%;
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 50px;
        opacity: 0; /* add this to set initial opacity to 0 */
        transform: translateY(-80%); /* add this to move the text off-screen to the right */
        animation: fadeIn 2s ease-in-out 2s forwards; /* increased duration to 3s */
    }
    .whatwedo{
      margin-top: 100px;
      border-bottom: solid 100px rgb(255, 255, 255);
      background-color: rgb(133, 0, 0);
    }
    .whatwedosection1{
      display: flex;
      justify-content: space-between;
    }
    .whatwedotext1{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
    }
    .whatwedotext1 h3{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 50px;
      font-weight: 400;
      color: rgb(255, 255, 255);
      margin-bottom: 50px;
      letter-spacing: 3px;
    }
    .whatwedotext1 p{
      font-family: "Barlow Condensed", sans-serif;
      font-size: 35px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 80%;
    }
    .whatwedoimage1{
      display: flex;
      justify-content: end;
      max-width: 50%;
    }
    .whatwedoimage1 img{
      width: 100%;
      margin-right: 0;
    }
    .demo_section{
        height: 800px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url(Assets/presentation2.jpg);
        background-size: cover;
        background-position: 50%;
    }
    .demo_section h1{
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 80px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    }
    .demo_button2{
        cursor: pointer;
        height: 100px;
        width: 250px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 15px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        margin-top: 100px;
        transition: .1s;
        border: none;
    }
    .demo_button2:hover{
        background-color: rgba(255, 255, 255, 0.513);
        border: solid 4px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        font-weight: 400;
        transform: scale(1.1);
    }
    .democontactform {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
        display: none; /* Hide the form by default */
      }
    
      .democontactform.show {
        display: block; /* Show the form when the button is clicked */
      }
    
      /* Add a blur effect to the background when the form is visible */
      .democontactform.show ~ * {
        filter: blur(5px);
      }
      .democontact{
        height: auto;
        padding-top: 0;
        padding-bottom: auto;
      }
      .democontact img{
        margin-bottom: 20px;
        position: relative;
        left: 50%;
      }
      .democontact button{
        position: relative;
        left: 50%;
      }
    .image-wrapper h1{
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 50px;
        font-size: 70px;
        margin-bottom: 70px;
    }
    .image-wrapper hr{
        max-width: 70%;
        margin: auto;
        margin-top: -40px;
        border-bottom: solid 2px rgb(133, 0, 0);
        border-top: solid 2px rgb(133, 0, 0);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .image-container {
        width: 200%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-container2 {
        width: 200%; /* total width of both image rows */
        animation: scroll-right 70s linear infinite;
        display: flex;
        -webkit-display: flex;
        flex-direction: row-reverse;
    }
    .image-container3 {
        width: 200%; /* total width of both image rows */
        animation: scroll-left 70s linear infinite;
        display: flex;
        -webkit-display: flex;
    }
    .image-row {
        width: 100%; /* total width of a single image row */
    }
    .image-row img {
        width: 10%; /* individual image width */
        height: auto; /* individual image height */
        vertical-align: middle;
        margin-right: 300px; /* add some space between images */
    }
    .testimonials-wrapper{
        display: flex;
        -webkit-display: flex;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    .testimonial-response{
        display: flex;
        -webkit-display: flex;
        align-items: center;
        background-color: rgb(133, 0, 0);
        width: 50%;
        padding: 20px;
    }
    .testimonial-response h1{
        text-align: center;
        vertical-align: middle;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 70px;
        font-weight: 200;
        color: rgb(255, 255, 255);
        max-width: 80%;
        margin: auto;
    }
    .testimonials-container {
        position: relative;
        height: 700px; /* You can adjust this value */
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        width: 50%;
    }
    .testimonials-container h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 65px;
        font-weight: 400;
        color: rgb(133, 0, 0);
    }
    .testimonial {
        position: absolute;
        width: 70%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
        font-weight: 300;
        color: rgb(133, 0, 0);
    }
    .testimonial.active {
        opacity: 1;
    }
    .test_image {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
        margin-bottom: 20px;
        border: solid 5px rgb(133, 0, 0);
    }
    .test_image img {
        height: 100%;
        width: auto;
    }
    .test3 img{
        height: 300%;
    }
    .fa-star{
        color: rgb(255, 191, 0);
        padding-top: 10px;
    }
    .next {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        height: 50px;
        width: 150px;
        background-color: rgb(133, 0, 0);
        color: white;
        border-radius: 10px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        border:none;
    }
    .next:hover{
        background-color: white;
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
    }
    .platform_wrapper{
        display: flex;
        -webkit-display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
        margin-bottom: 200px;
    }
    .platform_wrapper p{
        font-size: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        max-width: 40%;
        text-align: center;
        color:rgb(133, 0, 0);
        text-shadow: 15px 15px 10px rgb(133, 0, 0,0.5);
    }
    .platforms{
        margin-top: 50px;
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
    }
    .plat_image{
        height: auto;
        width: auto;
        margin: 20px;
        overflow: hidden;
        transition: 0.1s;
    }
    .plat_image img{
        height: 100px;
        width: auto;
    }
    .plat_image:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 1px rgb(0,0,0,0.5));
        cursor: pointer;
    }
    
    footer{
        height: auto;
        background-color: rgb(133, 0, 0);
        display: flex;
        -webkit-display: flex;
        width: 100%;
    }
    .footer_logo{
        filter: drop-shadow(1px 1px 15px rgb(0,0,0,0.9));
    }
    .footer_logo img{
        height: 120px;
    }
    .footer_content{
        width: 100%;
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        color: white;
        line-height: 2;
        font-size: 25px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        margin-top: 50px;
        margin-left: 5%;
    } 
    .footer_social{
        display: flex;
        -webkit-display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: rgba(255, 255, 255, 0.508);
        font-size: 50px;
        margin-right: 5%;
        margin-left: 5%;
        height: 300px;
    }
    .footer_social i{
        transition: .1s;
    }
    .footer_social i:hover{
        transform: scale(1.2);
        cursor: pointer;
        color: white;
    }
    .subfooter{
        display: flex;
        -webkit-display: flex;
        justify-content: space-between;
        color:rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 17px;
        line-height: 2;
    }
    .footercol2{
        text-align: center;
    }
    .process_wrapper{
      position: relative;
    }
    .process_wrapper::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(Assets/Process_Background.jpg);
      background-position: 10% 50%;
      background-size: cover;
      filter: blur(5px);
      z-index: -1; /* Place behind the content */
    }
    .process{
      font-family: Arial, sans-serif;
      display: flex; /* Use flexbox for centering */
      flex-direction: column;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically (if needed) */
      min-height: 60vh; /* Full height of the viewport */
      margin: 0; /* Remove default margin */
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .dropdown {
      margin-top: 5px; /* Space between dropdowns */
      margin-bottom: 5px; /* Space between dropdowns */
      overflow: hidden; /* Hide overflow to prevent content from showing when collapsed */
      width: 100%; /* Set dropdown width to 60% */
  }
  
  .dropbtn {
      background-color: transparent;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      color: rgb(255, 255, 255);
      padding: 10px;
      font-size: 26px;
      border: none;
      cursor: pointer;
      width: 100%; /* Make button full width of the dropdown */
      text-align: center; /* Align text to the left */
      position: relative;
      background-color: rgba(0, 0, 0, 0.455);
  }
  
  .dropdown-content {
      max-height: 0; /* Start with max-height of 0 */
      opacity: 0; /* Start with opacity of 0 */
      transition: max-height 0.3s ease, opacity 0.3s ease; /* Transition for max-height and opacity */
      padding: 0 10px; /* Add padding for better spacing */
      display: block; /* Set display to block for transition */
      overflow-y: auto; /* Enable vertical scrolling */
      overflow-x: hidden; /* Hide horizontal overflow */
      background-color: rgba(0, 0, 0, 0.455);
      color:rgb(255, 255, 255);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-shadow: none;
  }
  
  .dropdown-content .process_step1,
  .dropdown-content .process_step2,
  .dropdown-content .process_step3,
  .dropdown-content .process_step4,
  .dropdown-content .process_step5,
  .dropdown-content .process_step6 {
      padding: 10px;
      max-width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-size: 25px;
  }
  
  .dropdown-content img {
      max-width: 100%; /* Responsive images */
      height: auto;
      margin-top: 20px;
  }
  
  .dropdown-content hr {
    max-width: 80%;
      margin: 10px 0; /* Space around the horizontal rule */
      border-top: solid 1px rgb(133, 0, 0);
      border-bottom: solid 1px rgb(133, 0, 0);
  }
  
  .dropdown.active .dropdown-content {
      max-height: 500px; /* Set a max-height for the expanded state */
      opacity: 1; /* Set opacity to 1 for the expanded state */
      padding: 100px; /* Add padding when expanded */
  }
.subprocess{
    width: 100%;
    text-align: center;
    background-color: rgb(133, 0, 0);
    color:white;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-size: 60px;
    padding: 50px;
}
.subprocess p{
    max-width: 70%;
    margin: auto;
}
.partner{
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}
.partnerimage{
    width: 50%;
}
.partnerimage img{
   width: 100%;
}
.partnertext{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    width: 50%;
}
.partnertext h1{
    text-align: left;
    color:rgb(133, 0, 0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 90px;
    font-weight: 400;
    padding-left: 30px;
    padding-bottom: 30px;
}
.partnertext hr{
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    border: solid 3px rgb(133, 0, 0);
}
.partnertext p{
    text-align: left;
    color:rgb(42, 42, 42);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 45px;
    padding-left: 30px;
    padding-top: 30px;
}
.animated-line {
    height: 3px;
    background-color: rgb(133, 0, 0);
    width: 50%; /* limit the width to 50% */
    transform: translateX(0); /* initial translateX value */
    transition: transform 2.5s; /* add transition effect */
  }
  
  .animated-line.animate {
    transform: translateX(calc(100% - 0%)); /* move the line to the right side */
  }
  .partnercircle img{
    position: absolute;
    display: block;
    right: 100px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: opacity(0.4);
  }
      /********* CONTACT FORM **********/
      .contactform{
        background-image: url(Assets/contact.png);
        background-size: cover;
        height: 900px;
        background-position: 0% 40%;
    }
    form{
        padding-top: 200px;
        width: 50%;
        border-radius: 5px;
    }
    form input, textarea{
        width: 400px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    form input::placeholder{
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 300;
    }
    textarea::placeholder{
        font-weight: 300;
    }
    textarea{
        height: 200px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
    }
    .submitbutton{
        display: flex;
        justify-content: center;
    }
    #submitbutton{
        width: 250px;
        height: 70px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 30px;
        border: none;
        border-radius: 10px;
        transition: 0.2s;
    }
    #submitbutton:hover{
        transform: scale(1.1);
        background-color: transparent;
        color: rgb(133, 0, 0);
        border: solid 4px rgb(133, 0, 0);
        font-weight: 400;
        cursor: pointer;
    }
    form input:focus, textarea:focus{
        outline: none;
    }
    .icon-submit {
        font-size: 46px;
        color: rgb(255, 255, 255);
        display: block;
        margin: 20px auto;
        text-align: center;
        text-shadow: 1px 1px 10px black;
      }
    
      .fly-away {
        animation: flyAway 2s linear forwards;
        animation-delay: 0.5s;
      }
      .mathdiv{
        width: 420px;
        display: flex;
        margin: auto;
        margin-bottom: 50px;
      }
      #mathChallenge{
        width: 80px;
      }
      .mathquestion{
        width: 270px;
        height: 30px;
        display: flex;
        -webkit-display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: none;
        color: rgb(0, 0, 0);
        padding:10px;
        border-radius: 5px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 600;
      }
    
      @keyframes flyAway {
        0% {
          transform: translateX(0) rotate(5deg);
        }

        2% {
            transform: translateX(0) rotate(10deg);
        }

        4% {
            transform: translateX(0) rotate(15deg);
        }

        6% {
            transform: translateX(0) rotate(20deg);
        }

        8% {
            transform: translateX(0) rotate(30deg);
        }

        10% {
            transform: translateX(1vw) rotate(35deg);
        }

        100% {
          transform: translateX(100vw) translateY(-30vh) rotate(75deg);
        }
      }

      /*********SOLUTIONS***********/
      .solutionsheader{
        width: 65%;
        margin: auto;
        text-align: center;
        padding: 100px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 35px;
        color: rgb(133, 0, 0);
      }
      .solutions{
        margin-bottom: 100px;
      }
      .solution{
        margin-top: 100px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: solid 15px rgb(133, 0, 0);
        position: relative;
        padding: 100px;
      }
      .solution-button{
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .solution-button button{
        border: none;
      }
      .solution p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 30px;
      }
      .solutions h1{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 55px;
        color: rgb(133, 0, 0);
      }
      .solution-icon{
        text-align: center;
        color: rgb(133, 0, 0);
        font-size: 65px;
      }
      .solution1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/custom_communication.jpg);
        background-size: cover;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution1 > * {
        position: relative;
        z-index: 1;
      }
      .solution2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/technologysolution.jpg);
        background-size: cover;
        filter: brightness(2); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution2 > * {
        position: relative;
        z-index: 1;
      }
      .solution3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/callcenter_solution.jpg);
        background-size: cover;
        background-position: 70%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution3 > * {
        position: relative;
        z-index: 1;
      }
      .solution4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/broker_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.2; /* adjust the opacity to your liking */
      }
      
      .solution4 > * {
        position: relative;
        z-index: 1;
      }
      .solution5::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(Assets/enroll_solution.jpg);
        background-size: cover;
        background-position: 0%;
        filter: brightness(1); /* adjust the brightness to your liking */
        opacity: 0.3; /* adjust the opacity to your liking */
      }
      
      .solution5 > * {
        position: relative;
        z-index: 1;
      }
      .moderntech_demo{
        width: 200px;
        height: 70px;
        font-size: 25px;
      }
      .moderntech_demo:hover{
        background-color: rgba(255, 255, 255, 0);
        border: solid 3px rgb(133, 0, 0);
        color: rgb(133, 0, 0);
        transform: scale(1.1);
        width: 200px;
      }

      
      /**********************************************/
      /*******************PRODUCTS*******************/
      /**********************************************/

      .products{
        display: flex;
        flex-direction: column;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        color: rgb(133, 0, 0);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
      }
      .products_header h1{
        text-align: center;
        font-weight: 500;
      }
      .products i{
        font-size: 80px;
        margin-right: 20px;
      }
      .product1, .product3, .product5, .product7, .product9, .product11{
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 50px;
      }
      .product2, .product4, .product6, .product8, .product10{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      .product1_text, .product2_text, .product3_text, .product4_text, .product5_text, .product6_text, .product7_text, .product8_text, .product9_text, .product10_text, .product11_text{
        padding: 5%;
      }
      .product1_text h1, .product2_text h1, .product3_text h1, .product4_text h1, .product5_text h1, .product6_text h1, .product7_text h1, .product8_text h1, .product9_text h1, .product10_text h1, .product11_text h1{
        padding: 5%;
        font-size: px;
        background-color: rgb(133, 0, 0);
        color: white;
        font-weight: 500;
      }
      .product1_image img, .product2_image img, .product3_image img, .product4_image img, .product5_image img, .product6_image img, .product7_image img, .product8_image img, .product9_image img, .product10_image img, .product11_image img{
        height: 300px;
        border: solid 3px rgb(133, 0, 0);
      }
      
      .carriers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .carriers img{
        width: 400px;
        padding: 35px;
        transition: .1s;
      }
      .carriers_row1, .carriers_row2, .carriers_row3, .carriers_row4, .carriers_row5, .carriers_row6, 
      .carriers_row7, .carriers_row8, .carriers_row9, .carriers_row10, .carriers_row11, .carriers_row12,
      .carriers_row13, .carriers_row14, .carriers_row15, .carriers_row16, .carriers_row17, .carriers_row18{        
        display: flex;
        align-items: center;
      }

      .carriers img:hover{
        transform: scale(1.1);
        filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
      }
      .privacypolicy_wrapper{
        background-image: url(Assets/privacypolicy.jpg);
        background-size: cover;
        width: 100%;
      }
      .privacypolicy{
        max-width: 100%;
        margin: auto;
        background-color: rgba(29, 29, 29, 0.876);
        padding: 5%;
      }
      .privacypolicy p{
        color: rgb(255, 255, 255);
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 22px;
        max-width: 50%;
        margin: auto;
      }
      .policy_header{
        font-size: 36px;
        font-weight: 500;
      }
      .policy_header2{
        font-size: 30px;
        font-weight: 400;
      }
      .aboutus{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .aboutus_image{
        position: absolute;
        z-index: -1;
        filter:blur(3px);
        max-width: 100%;
        margin: auto;
        opacity: 0.3;
      }
      .aboutus_image img{
        height: 400px;
        width: auto;
      }
      .aboutus_text{
        max-width: 50%;
        margin: auto;
        margin-bottom: 100px;
        margin-top: 100px;
      }
      .aboutus_text h3{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 500;
        font-size: 45px;
        color: rgb(133, 0, 0);
        margin-bottom: 25px;
      }
      .aboutus_text p{
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 300;
        font-size: 25px;
        color: rgb(133, 0, 0);
      }
      /***********************************/
      /*************Partners**************/
      /**********************************/
      .partners {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      .partners::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(Assets/partners_BG.jpg);
        background-position: 10% 50%;
        background-size: cover;
        filter: blur(15px);
        z-index: -2; /* Place behind the content */
      }
      .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; /* Place behind the content */
        background-color: rgba(0, 0, 0, 0.6); /* Darken the background */
      }
      .selerix_wrapper, .en_wrapper, .zevo_wrapper{
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
      }
      .selerix_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        background-image: linear-gradient(200deg,rgb(214, 214, 214), rgb(106, 161, 225));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .zevo_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        background-image: linear-gradient(35deg,rgb(83, 120, 139), rgb(29, 50, 74));
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      }
      .en_wrapper img{
        padding: 5%;
        padding-left: 20%;
        padding-right: 20%;
        width: 60%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        background-image: linear-gradient(200deg,rgb(255, 255, 255), rgb(128, 252, 153));
      }
      .selerix_header, .zevo_header, .en_header{
        display: flex;
        justify-content: space-evenly;
        text-align: justify;
        padding-top: 50px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 400;
        font-size: 40px;
        color: rgb(255, 255, 255);
      }
      .selerix_header p, .zevo_header p, .en_header p{
        width: 50%;
      }
      .SLpages-container {
        width: 60%;
        height: 700px; /* Adjust to fit your images */
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .SLpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ZVpages-container {
        width: 60%;
        height: 750px; /* Adjust to fit your images */
        display: flex;
        align-items: center;
      }
      
      .ZVpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .ENpages-container {
        width: 60%;
        height: 700px; /* Adjust to fit your images */
        display: flex;
        justify-content: space-evenly;
        align-items: center;
      }
      
      .ENpages-container img {
        width: 50%; /* Adjust width as needed */
        height: auto;
        padding: 10px;
      }
      .pro_table{
        border-collapse: collapse;
        border-spacing: 0;
        cursor: default;
        width: 40%;
      }
      .table_row1{
        text-align: center;
        background-color: rgb(216, 216, 216);
        padding: 5px;
        color: rgb(60, 60, 60);
      }
      .table_row2{
        background-color: rgb(238, 238, 238);
        padding: 5px;
        text-align: center;
        color: rgb(60, 60, 60);
      }
    }