@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body{
    color: #050e2f;
    font-family: "Montserrat", sans-serif;
    background-color: #f3f2f2;
    font-size: 16px;
}
h1, h2, h3, h4{
      font-family: "Michroma", sans-serif;
}
h3{
    font-size: 25px;
    font-weight: 700;
}
a{
    color: #FF7A59;
    text-decoration: none;
}
header{
    background-color: transparent;
    color: #ffffff;
    border-radius: 99px;
    width: 100%;
    margin: auto;
    display: block;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.logo{
    width: 222px;
    fill: #ffffff;
    transition: fill 0.4s ease;
}
header.fixed {
    background-color: #ffffff;
    color: #050e2f;
    padding: 16px auto !important;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80%;
    border-radius: 99px;  
    transition: background-color 0.4s ease, color 0.4s ease;
}
header.fixed .logo{
    fill: #050e2f;
}
.hero-banner{
    background: linear-gradient(180deg,#0b1736 0,#103072 35%,#3f4fbf 60%,#c676a0 80%,#f48c66 100%);
    min-height: 100vh;
    color: #ffffff;
}
.container{
    max-width: 1200px;
}
footer{
    padding: 120px 0;
    background-image: radial-gradient(72.47% 120.55% at 57.01% 136.77%,#fff 0,#ffb89c 15.5%,#f0cced 35.5%,#d8eaff 65%,#f3f2f2 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-color: #f3f2f2;
    color: #4d4c4c;
    font-weight: 500;
}
footer .desc{
    border-top: 1px solid #cdcfd5;
    border-bottom: 1px solid #cdcfd5;
    padding: 32px 0;
    margin: 48px 0 16px;
}
.links{
    font-size: 12px;
    display: flex;
    justify-content: end;
    gap: 15px;
    margin: 16px 0 32px;
}
.links a{
    text-decoration: none;
    color: #4d4c4c;
    cursor: pointer;
}
.popup {
   display: none;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background-color: rgba(0, 0, 0, 0.8);
   color: white;
   padding: 20px;
   border-radius: 5px;
   z-index: 1000;
}
 .close-button{
    color: #ffffff;
    margin-left: auto;
    display: block;
    background-color: transparent;
 }
 .btn{
    background-color: #ff8959;
    color: #050e2f;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.14);
    padding: 12px 24px;
    font-weight: 500;
 }
 .btn:hover{
    background-color: #ff7138;
 }
 button[type=submit]{
    border: 2px solid #f3f2f2;
    border-radius: 10px;
    color: #f3f2f2;
    outline: none;
    background-color: transparent;
    padding: 12px 24px;
    font-weight: 500;
 }
 .circle {
  padding: 13px 20px;
  border-radius: 50%;
  background-color: #ED8D8D;
  color: #fff;
  max-height: 50px;
  z-index: 2;
}

.how-it-works.row .col-2 {
  align-self: stretch;
}
.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #ED8D8D;
  z-index: 1;
}

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid #ED8D8D;
  margin: 0;
  top: 17px;
  opacity: 1;
  position: relative;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #ED8D8D;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -52%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -52%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}
.card{
    text-align: center;
    min-height: 279px;
    box-shadow: rgb(184, 189, 244) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    padding: 20px 16px;
}
.card-img-top{
    max-width: 100px;
    margin: auto;
}
.choose-card{
    border: 6px solid#050e2f;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}
.choose-card img{
    max-width: 150px;
    height: auto;
    margin: -75px auto 20px;
    display: block;
    background-color: #f3f2f2;
    border-radius: 100%;
}
#tnx{
    display: none;
}