@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
/* #pop-container{
  backdrop-filter: blur(20px); 
  border-radius: 8px;
  border: 2px solid #555;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */
/* Style for popup */
.popup {
  display: none;
  position: fixed;
  right: -400px; /* Start position offscreen */
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 380px;
  /* margin-left: 4%; */
  /* background-color: rgba(0, 123, 255, 0.8); */
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-radius: 8px;
  color: white;
  text-align: center;
  border: 1PX solid #2F4858;
  backdrop-filter: blur(20px);
}

/* Close button */
.close-btn {
  background: #f44336;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  float: right;
}

/* Input fields 
 .popup input[type="text"],
.popup input[type="email"] {
  width: 90%;
  padding: 12px;
  background-color: transparent;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
} */
.styled-input {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.styled-input input {
  width: 100%;
  padding: 10px 5px;
  border: 2px solid #2F4858;
  border-radius: 10px;
  outline: none;
  color: white;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: transparent;
}

.styled-input label {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: 0.3s ease all;
  /* background-color: #f3f3f3; */
  padding: 0 5px;
}

.styled-input input:focus + label,
.styled-input input:not(:placeholder-shown) + label {
  top: -9px;
  left: 20px;
  font-size: 12px;
  color: #fff;
  backdrop-filter: blur(20px);
  background-color: #2F4858;
}

.styled-input input:focus{
  border-color: #2F4858;
}

/* input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    
    input[type=number] {
        -moz-appearance: textfield;
    } */
/* Submit button */
.popup button[type="submit"] {
  background-color: #0170B9;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

/* Slide-in animation */
@keyframes slideIn {
  from {
      right: -400px;
  }
  to {
      right: 30px;
  }
}

/* Slide-out animation */
@keyframes slideOut {
  from {
      right: 30px;
  }
  to {
      right: -400px;
  }
}

/* Apply the animation when active */
.popup.active {
  display: block;
  animation: slideIn 0.5s forwards;
}

/* Apply the slide-out animation */
.popup.closing {
  animation: slideOut 0.5s forwards;
}

.main {
    height: 100vh;
  }
  nav{
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #007bff;
    border-bottom: 2px solid black;
    position: relative;
    height: 57px;
  }
  
  .logo{
    color: #fff;
  }
  
  nav ul{
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  nav ul li{
    list-style-type: none;
  }
  
  nav ul li a{
    text-decoration: none;
    color: #fff;
  }
  nav ul li a:hover{
    color: #0170B9;
    font-weight: bold;
  }
  .logo img {
    width: 70px;
    height: auto;
  }
  
  
  .menu-icon{
    display: none;
  }
  
  .menu-icon i{
    color: #fff;
    font-size: 30px;
  }
  
  @media (max-width: 480px) {
    nav ul{
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #004274;
        gap: 0;
        z-index: 1;
        overflow: hidden;
    }
    nav ul li{
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        transition: all 0.5s;
    }
  }
  
  .demo_img {
    background-image: url("./Assets/offering-banner-img.png");
    background-size: 100% 130%;
    height: 65%;
    width: 100%;
    object-fit: cover;
    /* margin-top: -10%; */
  }
  .ct1 {
    position: absolute;
    padding: 320px 0 0 100px;
    font-size: 3rem;
    margin-top: -10%;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
  }
  @media (max-width: 480px){
    .demo_img {
      height: 40%;
    width: 100%;
    object-fit: contain;
    }
    .ct1{
      margin-top: -40%;
      margin-left: -20%;
    }
  }
  h1{
    color: #0170B9;
  }
  .title-head h1{
    text-align: center;
    font-weight: 900;
    font-size: 2.2rem;
    /* margin-top: 20px; */
    text-transform: uppercase;
    padding: 40px 10px;
  }
  .note-Container {
    width: 100%;
    margin: 50px auto;
  }
  .heading {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
}

.note {
    border: 2px solid #ccc;
    width: 19%;
    /* height: 20px; */
    background: #fff;
    margin-bottom: 50px;
    transition: 0.3s;
  }
  
  .note-header {
    text-align: center;
    padding: 50px 10px;
    background-color: #007bff;
    color: #fff;
  }
  .note-header h1{
    color: #fff;
  }
  .btn:hover{
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  .note-body {
    padding: 30px 20px;
    text-align: center;
    font-size: 18px;
  }
  
  .note-body .btn {
    display: block;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    margin-top: 30px;
    text-decoration: none;
    padding: 10px 5px;
  }
  
  .note:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
  }
  
  @media screen and (max-width: 1000px) {
    .note {
      width: 40%;
    }
  }
  
  @media screen and (max-width: 620px) {
    .container {
      width: 100%;
    }
  
    .heading {
      padding: 20px;
      font-size: 20px;
    }
  
    .card {
      width: 80%;
    }
  }
  
  
  #dco-content h1{
    text-align: center;
    font-weight: bolder;
    font-size: 2.3rem;
    /* margin-top: 20px; */
    text-transform: uppercase;
    padding: 0px 0px 30px 10px;
    padding-bottom: 70px;
  }
  #dco-content p{
    /* width: 100%; */
    /* text-align: center; */
    width: 80%;
    margin-left: 10%;
    margin-right: 3%;
    font-size: 1.2rem;
    color: #7A7A7A;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 90px;
  }
  #overview h2{
    font-weight: bolder;
    font-size: 1.5rem;
    color: #0170B9;
    margin-left: 10%;
    margin-bottom: 30px;
  }
  #overview p{
    width: 80%;
    margin-left: 15%;
    /* margin-right: 3%; */
    font-size: 1.2rem;
    color: #7A7A7A;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 30px;
  }
  summary {
    cursor: pointer;
    font-weight: bold;
}
#wheeler-div{
    background-color: #F5F5F5;
    height: 20rem;
    padding-block: 18px;
}
#wheeler-div h1{
    font-weight: bolder;
    font-size: 2rem;
    color: #0170B9;
    margin-left: 8%;
    margin-bottom: 30px;
}
#wheeler-div h2{
    font-weight: bolder;
    font-size: 1.5rem;
    color: #0170B9;
    margin-left: 11%;
    margin-bottom: 15px;
}
#wheeler-div p{
    width: 80%;
    margin-left: 15%;
    /* margin-right: 3%; */
    font-size: 1.2rem;
    color: #7A7A7A;
    /* font-weight: 600; */
    line-height: 1;
    padding-bottom: 15px;
}
#wheeler-div2{
    /* background-color: #F5F5F5; */
    height: 10rem;
    padding-block: 30px;
    margin-bottom: 30px;
}
#wheeler-div2 p{
    width: 80%;
    margin-left: 15%;
    /* margin-right: 3%; */
    font-size: 1.2rem;
    color: #7A7A7A;
    /* font-weight: 600; */
    line-height: 1;
    /* padding-top: 30px; */
    padding-bottom: 15px;
}
#wheeler-div3{
    background-color: #F5F5F5;
    height: 14rem;
    padding-block: 18px;
}
#wheeler-div3 h2{
    font-weight: bolder;
    font-size: 1.2rem;
    color: #7A7A7A;
    margin-left: 11%;
    margin-bottom: 15px;
}
.key-img img{
  width: 80%;
  height: 90vh;
  margin-left: 10%;
}
#wheeler-div3 p{
    width: 80%;
    margin-left: 15%;
    /* margin-right: 3%; */
    font-size: 1.2rem;
    color: #7A7A7A;
    /* font-weight: 600; */
    line-height: 1;
    padding-bottom: 15px;
}
#client-story{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-block: 5rem;
    gap: 10vw
}
#client-story video{
    height: 25rem;
    width: 30rem;
    margin-left: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    border-radius: 62px;
    border: 1px solid black;
}
#client-story h1{
    margin-top: -12rem;
    text-align: center;
    line-height: 2;
    width: 50%;
}
#client-content h1{
  text-align: center;
}
#client-content p{
    font-size: 1.25rem;
    line-height: 30px;
    width: 100%;

}
.gallary {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.sliding {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 4rem;
    /* height: 25rem;
    background-color: #F5F5F5; */
}

.slide-pic {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pic-card{
    flex: 0 0 calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    /* width: 300px;
    height: 85vh; */
    background-color: #fff;
    margin: 0 10px;
    margin-right: 10px;
    margin-bottom: 5rem;
}

.piccard-image {
    width: 100%;
    height: auto;
}
#rto-page h1{
    text-align: center;
    font-weight: bolder;
    font-size: 2.3rem;
    /* margin-top: 20px; */
    text-transform: uppercase;
    padding: 0px 0px 10px 0px;
    padding-bottom: 30px;
}
#rto-page p{
    width: 90%;
    margin-left: 10%;
    line-height: 25px;
}
#rto-questions{
    background-color: #F5F5F5;
}
#rto-questions h4{
    font-size: 1.2rem;
    margin-left: 7%;
    color: #0170B9;
}
#rto-questions p{
    margin-left: 15%;
    width: 80%;
}
#retro-page h1{
  text-align: center;
  font-weight: bolder;
  font-size: 2rem;
    /* margin-bottom: 10px; */
}
#retro-page video{
    height: 100vh;
    width: auto;
    margin-inline-start: 4vw;
}
#retro-page h2{
  color: black;
  font-size:1.75rem;
  /* margin-left: 15%; */
}
#retro-page h3 span{
  margin-left: 10%;
}
#retro-page h4 {
  margin-left: 10%;
}
#catogery-page{
    background-color: #F5F5F5;
}
#catogery-page h1{
    text-align: left;
    margin-left: 10%;
    margin-top: 2%;
}
#catogery-page h5{
    font-size: 1.5rem;
    color: #0170B9;
    margin-left: 10%;
    /* margin-top: 0px; */
}
#catogery-page p{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 30px;
}
.l3 h1{
    text-align: left;
    margin-left: 10%;
    margin-top: 5%;
}
#choose-rto{
    background-color: #fff;
}
#choose-rto p{
    line-height: 33px;
}
.slide-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 4rem;
    /* height: 25rem;
    background-color: #F5F5F5; */
}

.slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card{
    flex: 0 0 calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    /* width: 300px;
    height: 85vh; */
    background-color: #fff;
    margin: 0 10px;
    margin-right: 10px;
    margin-bottom: 5rem;
}

.piccard-image {
    width: 100%;
    height: auto;
}
.rto-img img{
     width: 80%;
     height: 100vh;
     margin-left: 10%;
}
#choose-rto h4{
    font-size: 1.2rem;
    margin-left: 7%;
    color: #0170B9;
}
#fco-page{
    /* background-image: url(./Assets/fcosvg.svg); */
    /* background-color: #F5F5F5; */
    object-fit: cover;
    width: 100%;
    height: auto;
}
#fco-page h1{
  text-align: center;
}
.fco-intro{
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* gap: -5px; */
}
.image-content p span{
  font-size: 1.5rem;
  color: black;
  /* background-color: red; */
}
.image-content p{
  color: blue;
}
#fco-page img{
    width: 60%;
    height: auto;
}
.fco-para{
    margin-top: 6%;
    margin-bottom: 3%;
    /* background-color: #F5F5F5; */
}
#fco-page h4{
    font-size: 1.2rem;
    margin-left: 7%;
    color: #0170B9;
}
.bsp-intro{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.bsp-content p span{
  font-size: 1.5rem;
  color: black;
  margin-block-start: 5%;
  /* background-color: red; */
}
#bsp-page img{
    width: 60%;
    height: auto;
}
#fco-ques p{
    /* margin-top: -10%;
     */
     line-height: 30px;
}
#choose-fco img{
  width: 50vw;
  height: auto;
  margin-block-start: 5%;
  margin-inline-start: 20%;
}
#emi-page p{
    margin-left: 10%;
    line-height: 25px;
}
#salary-info h4{
    margin-top: 4%;
    margin-bottom: 4%;
}
#salary-info p{
    margin-left: 10%;
    line-height: 27px;
}
.iframe-container {
    width: 100%; /* 80% width of the parent */
    height: 100%; /* Full height */
    margin: auto; /* Center the container */
    margin-left: 25%;
    /* background-color: #F5F5F5; */
}
#bsp-page{
    margin-left: 8%; 
}
/* #bsp-page1 img{
  margin-left: 6%;
}  */
#bsp-page3 img{
    background-color: #fff;
    width: 95%;
    /* margin-left: 5%; */
}
.sliding {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 4rem;
}

.slide-pics {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pics-card{
    flex: 0 0 calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    /* width: 300px;
    height: 85vh; */
    background-color: #fff;
    margin: 0 10px;
    margin-right: 10px;
    margin-bottom: 5rem;
}
.pics-card img{
  width: 100%;
}

/* The footer is fixed to the bottom of the page */

.footer-distributed {
  background-color:#10182F;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  height: 28rem;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;

  /* margin-right: -20px; */
  /* margin-top: 80px; */
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */
.footer-links{
display: flex;
flex-direction: column; /* Arrange items in a column */
align-items: flex-start; /* Align items to the start */
gap: 10px;
}
.footer-distributed .footer-left {
  width: 30%;
}
.footer-left li{
  list-style: none;
}
.footer-left li a{
  color: white;
  text-decoration: none;
  display: inline-block;
  line-height: 2.5;
  /* text-decoration: none; */
  /* color: inherit; */
}
.footer-left li a:hover{
  color: #0056b3;
}

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px 'Cookie', cursive;
  margin: 0;
}


.footer-distributed h3 span {
  color: #e0ac1c;
}

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.footer-right form {
display: flex;
gap: 10px;
margin-top: 7%;
}

.footer-right input[type="email"] {
flex: 1;
padding: 10px;
border-radius: 6px;
border: 1px solid #7489C6;
background: none;
color: #fff;
outline: none;
}

.footer-right input[type="email"]::placeholder {
color: #ccc;
}

.footer-right button {
background: #0170B9;
color: #fff;
border: none;
padding: 10px 15px;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
transition: background 0.2s ease, transform 0.2s ease;
}

.footer-right button:hover {
background: #cecccc;
transform: scale(1.1);
}


/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: #e0ac1c;
  text-decoration: none;
  ;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
  margin-left: 3%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about p {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  /* background-color: #33383b; */
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: #3F71EA;
}

.footer-links a:hover {
  color: #3F71EA;
}


@media (max-width: 480px){
.footer-distributed {
    flex-direction: column;
    align-items: center;
    height: auto;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.footer-left p span{
  margin-left: -87%;
}
}


@media (max-width: 480px){
    .note-Container{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      /* width: 120%; */
      gap: 20px;
    }
    .note{
      width: 80%;
    }
    body{
      width: 100%;

    }
    body p{
      font-size: 1.2rem;
    }
    #dco-content{
      margin-left: 0%;
    }
    #dco-content p{
      margin-left: 7%;
    }
    .key-img img{
      width: auto;
      height: 80rem;
    }
    #overview h2{
      margin-left: 7%;
    }
    #overview p{
      margin-left: 7%;
    }
    #wheeler-div {
         /* margin-bottom: 20rem; */
         height: auto;
         color: #F5F5F5;
    }
    #wheeler-div p{
      line-height: 30px;
      margin-left: 7%;
    }
    #rto-page p{
      margin-left: 7%;
    }
    #rto-questions p{
      margin-left: 7%;
    }
    #choose-rto p {
      margin-left: 10%;
      /* line-break: anywhere; */
    }
    #wheeler-div2{
      /* line-height: 29; */
      margin-bottom: 22rem;
      /* margin-top: 10rem; */
    }
    #wheeler-div2 p{
      line-height: 30px;
      margin-left: 7%;
    }
    .key-img img{
      height: 30vh;
      width: 100%;
      margin-left: 0;
      object-fit: contain;
      margin-bottom: 2rem;
    }
    #client-story{
      display: flex;
      flex-direction: column;
    }
    #client-story video{
      width: 80%;
    }
    #client-content h1{
      text-align: center;
    }
    #client-content p{
      text-align: center;
    }
    .slide-pic{
      width: 299%;
      height: auto;
    }
    .pic-card img{
      width: 100%;
    }
    .rto-img img{
      height: 30vh;
      width: 100%;
      object-fit: contain;
      margin-left: 0;
      /* margin-bottom: 8rem; */
    }
    #choose-rto p{
      margin-left: 7%;
    }
    .slide{
      width: 299%;
      height: auto;
    }
    #retro-page video{
      width: 100%;
      height: auto;
      object-fit: cover;
      margin-inline-start: 0;
    }
    #retro-page h2{
      text-align: center;
    }
    #retro-page h3{
      margin-left: -2.5%;
    }
    #retro-page h4{
      margin-left: 8%;
    }
    .fco-intro{
      display: flex;
      flex-direction: column;
    }
    .image-content .first-p-span{
      margin-left: -4%;
    }
    .image-content .second-p-span{
      margin-left: -1.3%;
      line-break: anywhere;
    }
    .image-content .third-p-span{
      margin-left: -13%;
      line-break: anywhere;
    }
    .image-content .fourth-p-span{
      margin-left: -5%;
    }
    .image-content .fifth-p-span{
      margin-left: -5%;
    }
    #fco-page img{
      height: auto;
      width: 112%;
      /* object-fit: cover; */
      /* margin-bottom: 8rem; */
    }
    #fco-page p{
      text-align: center;
    }
    #emi-page h4{
      text-align: center;
    }
    #emi-page p{
      margin-left: 7%;
    }
    #emi-page .first-p{
      margin-left: 5%;
      line-break: anywhere;
    }
    #emi-page .second-p{
      margin-left: 5.5%;
      line-break: anywhere;
    }
    #emi-page .third-p{
      margin-left: 5.5%;
      line-break: anywhere;
    }
    #emi-page .fourth-p{
      margin-left: 5.5%;
      line-break: anywhere;
      
    }
    #salary-info h4{
      text-align: center;
    }
    #local-client h4{
      text-align: center;
    }
    #local-client .first-para{
      margin-left: 6%;
      line-break: anywhere;
    }
    #local-client .second-para{
      margin-left: 0%;
      line-break: anywhere;
    }
    #local-client .third-para{
      margin-left: 1%;
      line-break: anywhere;
    }
    #choose-fco img{
      height: auto;
      width: 100%;
      object-fit: contain;
      margin-left: 0;
    }
    .iframe-container video{
      height: 27vh;
      width: 96%;
      margin-left: -82px;
      /* object-fit: contain; */
      /* margin-bottom: 20rem; */
    }
    #bsp-page3 img{
      width: 110%;
        height: auto;
        object-fit: cover;
        margin-left: -7%;
    }
    .bsp-intro{
      display: flex;
      flex-direction: column;
    }
    #bsp-page img{
      height: auto;
      width: 112%;
      margin-left: -7%;
    }
    .bsp-content p{
      margin-left: 0%;
    }
    .slide-pics{
      width: 299%;
      height: auto;
    }

  }