html, body {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    background: #fff;
    color: #051F66;
   
    
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Vendor prefixes for older browsers */
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Apply the fadeIn animation to elements with the fadeIn class */
  .fadeInUp {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
    transform: translateZ(0); 
  }

  /* Adjust styles for mobile view */
 
  

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}


/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #4169E2;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

.hr {
    height: 1px;
    margin: 1rem 0;
    color: inherit;
    background-color: #051F66 !important;
    border: 0;
}

.text-blue{
    color: #4169E2;
}
.text-darkblue{
    color: #051F66;
}

.text-red{
    color: red;
}

.bg-blue{
    background-color: #4169E2;
}

.bg-darkblue{
    background-color: #051F66;
}

b,strong {
    font-weight: 700
}
.text-muted {
    color: #96ACEF!important;
}

.logo img{
    width: auto;
    max-width: 100%;
    max-height: 141px;
}
.form-control{
    border-radius: 0px !important;
    background-color: #FCFCFC;
    padding: 12px;
}

.form-control:focus {
    border: 3px solid #051F66;
    box-shadow: 0 0 0 2px transparent;
}


.circle {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    overflow: hidden;
    margin: -110px 0px 0px 150px;
}
  
.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    bottom: 0;
}
.rounded{
    border-radius: 25px;
}

.f8{font-size: 8px;}
.f10{font-size: 10px;}
.f12{font-size: 12px;}
.f13{font-size: 13px;}
.f14{font-size: 14px;}
.f15{font-size: 15px;}
.f18{font-size: 18px;}
.f20{font-size: 20px;}
.f25{font-size: 25px;}
.f30{font-size: 30px;}
.f35{font-size: 35px;}
.f40{font-size: 40px;}
.f45{font-size: 45px;}

@media (max-width: 576px) {
    /* Add your styles here for mobile devices */
    body {
      font-size: 16px;
    }
    .fadeInUp {
        /* Adjust animation duration for better performance on mobile */
        animation-name:none;
      }
      .fam-img{
        position: relative;
        top: 0;
      }
  }

  .torn-paper {
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4;
    padding: 20px;
  }
  
  .torn-paper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background-image: radial-gradient(circle at 0 0, transparent 0%, transparent 20%, #f4f4f4 20%, #f4f4f4 80%, transparent 80%, transparent 100%);
    transform: rotate(-5deg);
    transform-origin: 0 0;
  }
  
  .torn-paper:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 100%, transparent 0%, transparent 20%, #f4f4f4 20%, #f4f4f4 80%, transparent 80%, transparent 100%);
    transform: rotate(5deg);
    transform-origin: 100% 100%;
  }
  
  .content {
    position: relative;
    z-index: 1;
  }

  svg{
    position: absolute;
    margin: 2px;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    stroke: #D3535F;
    stroke-width: 0.1em;
    stroke-width: max(1px, 0.1em);
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  .fam-img{
    position: relative;
    top: -130px;
  }

  
  