<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.thrd_section {
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
  }
  .thrd_section &gt; p {
    text-align: center;
    font-family: "Yu Gothic UI", sans-serif;
    color: #000;
    font-size: 20px;
    width: 65%;
    margin: 0 auto;
    padding-top: 10px;
    margin-bottom: 50px;
  }
  .thrd_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .thrd_heading img {
    width: 35px;
  }
  .thrd_heading h2 {
    font-size: 40px;
    margin: 7px 50px;
    color: #333;
  }
  .our_story_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0 50px;
  }
  .our_story_cntnt {
    width: 55%;
  }
  .our_story_cntnt h2{
    display: inline-block;
    font-size: 34px;
    color: #861cff;  
    position: relative;
    padding-left: 20px;
  }
  .our_story_cntnt p {
    font-size: 18px;
    padding: 5px 0;
    color: #303030;
    font-family: "Yu Gothic UI", sans-serif;
    text-align: justify;
  }
  .our_story_cntnt &gt; div{
      display: flex;
      align-items: center;
      
  }
  .our_story_main span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff4b70;
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    animation: pulse 1.5s infinite ;
    -webkit-animation: pulse 1.5s infinite ;
}
  .our_story_main &gt; img {
    width: 40%;
    height: auto;
  }
  
@keyframes pulse {
    from {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 138, 138, );
      box-shadow: 0 0 0 0 rgba(255, 138, 138, 1);
    }
    to {
      -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 138, 0);
      box-shadow: 0 0 0 10px rgba(255, 138, 138, 0);
    }
  }
  
  
.fourth_section {
    width: 95%;
    margin: 0 auto;
    margin-top: 170px;
  }
  .fourth_section &gt; p {
    text-align: center;
    font-family: "Yu Gothic UI", sans-serif;
    color: #000;
    font-size: 20px;
    width: 65%;
    margin: 0 auto;
    padding-top: 10px;
  }
  .fourth_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .fourth_head h2 {
    font-size: 45px;
    margin: 7px 50px;
    color: #333;
  }
  .fourth_head img {
    width: 40px;
  }
  .bubbles {
    width: 100%;
    margin: 0 auto;
    margin-top: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bubble {
    width: 15%;
    text-align: center;
    position: relative;
  }
  .bubble img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .bubble:hover :nth-child(1) {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .bubble h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    position: relative;
  }
  .bubble h2::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 18px;
    height: 3px;
    -webkit-box-shadow: 0px 7px 10px #ff4b70;
    box-shadow: 0px 7px 10px #ff4b70;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .bubble1 h2::before {
    width: 32%;
  }
  .bubble2 h2::before {
    width: 47%;
  }
  .bubble3 h2::before {
    width: 90%;
  }
  .bubble4 h2::before {
    width: 50%;
  }
  .bubble5 h2::before {
    width: 50%;
  }
  .bubble6 h2::before {
    width: 55%;
  }
  .bubble:hover h2::before {
    opacity: 1;
  }
  .bubble p {
    width: 80%;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 500;
    color: #333;
  }
  .dot3 {
    position: absolute;
    right: 0;
    margin-right: -40px;
    top: 0;
    margin-top: 40px;
  }
  
  
  
@media screen and (max-width: 991px) {
    .our_story_main{
        flex-direction: column;
    }
    .our_story_main:nth-child(even) &gt; div{
        order: 2;
    }
    .our_story_main:nth-child(even) &gt; img{
        order: 1 !important;
    }
    .our_story_main &gt; img{
        width: 70%;
    }
    .our_story_cntnt{
        width: 100%;
    }
}</pre></body></html>