* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Eudoxus Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}
html{
  scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: unset;
}
nav {
    background-color: transparent;
    padding: 10px 3%;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    z-index: 999;

}

ul {
    width: 100%;
    min-height: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    gap: 0.5rem;
    margin-right: 72px;
}

.links {
    display: flex;
    width: 100%;
    align-items: center;
}

.link {
    color: #000;
    font-size: 14px;
    padding: 0 20px;
    font-weight: 600;
    opacity: 0.9;
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;

}

nav button {
    min-height: 52px;
    border: none;
    padding: 0 32px;
    background-color: #EEFAFE;
    color: #161c27;
    cursor: pointer;
    margin-left: auto;
    font-weight: 500;
    font-size: 14px;
}

nav button:hover {
    background-color: #161c27;
    color: #EEFAFE;
    transition: all 0.3s ease-in-out;
}

.menu_btn {
    display: none;
}

@media screen and (max-width: 991px) {
    .links {
        display: none;
    }

    ul {
        width: 100%;
        min-height: 100%;
        max-width: 1250px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .links.active {
        position: absolute;
        display: flex !important;
        flex-direction: column;
        top: 90px;
        width: 100%;
        right: 0;
        z-index: 999999;
        background: white;
        height: fit-content;
    }

    .link {
        padding: 20px 20px;
    }

    .links button {
        margin-left: unset;
        width: 100%;
    }

    .menu_btn {
        display: flex;
        padding: 20px;
        background-color: #EEFAFE;
        margin-left: auto;
        cursor: pointer;
    }
}

body {
    overflow-x: hidden;
}

.cta__footer{
    min-height: 56px;
    padding: 0 32px;
    background-color: #ebeefa;
    border: 2px solid #ebeefa;
    color: #000;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    margin-top:42px;
}
.grecaptcha-badge { 
  visibility: hidden;
}
.cta__footer:hover {
  background-color: transparent;
  color: #ebeefa;
  transition: all 0.3s ease-in-out;
}
/**    Get Started      **/
.get_started {
    display: flex;
    overflow: hidden;
    min-height: 480px;
    padding: 96px 3%;
    justify-content: center;
    align-items: center;
    background-color: #161c27;
    background-image: url('https://res.cloudinary.com/alapanbagchi/image/upload/v1660295908/Tisoe/assets/Footer.webp');
    background-position: 50% 50%;
    background-size: auto 100%;
    background-repeat: repeat-x;
    flex-direction: column;
}

.get_started .title_wrap {
    display: flex;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.get_started .title_wrap h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: -0.03em;
    color: #fff;
    font-family: 'Eudoxussans Heading', sans-serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.get_started form {
    display: flex;
    align-items: center;
    margin-top: 42px;
}

.get_started form input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    min-height: 56px;
    min-width: 290px;
    margin-bottom: 0px;
    border: 1px solid #485162;
    background-color: #232a37;
    color: #f3f6fb;
}

.get_started form button {
    display: flex;
    min-height: 56px;
    margin-left: 20px;
    padding-right: 24px;
    padding-left: 24px;
    justify-content: center;
    align-items: center;
    background-color: #f3f6fb;
    border: none;
    white-space: nowrap;
    color: #161c27;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .get_started .title_wrap h2 {
        font-size: 42px;

    }

    .get_started form {
        flex-direction: column;
    }

    .get_started input {
        width: 100%;
    }

    .get_started button {
        width: 100%;
        margin-left: unset !important;
    }
}

.footerinfo{
    color: white;
    position: relative;
    bottom: 0;
    margin-top: 42px;
}


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital@1&family=Poppins:wght@400;500;600&display=swap');

.captcha_wrapper{
    max-width: 500px;
    width: 100%;
    background: #fff;
    height: fit-content;
    padding: 22px 30px 40px;
    border-radius: 10px;
    box-shadow: 8px 8px 8px rgb(0 0 0 / 5%);
}
.captcha_wrapper header{
  color: #4db2ec;
  font-size: 33px;
  font-weight: 500;
  text-align: center;
}
.captcha_wrapper .captcha-area{
  display: flex;
  height: 65px;
  margin: 30px 0 20px;
  align-items: center;
  justify-content: space-between;
}
.captcha-area .captcha-img{
  height: 100%;
  width: 345px;
  user-select: none;
  background: #000;
  border-radius: 5px;
  position: relative;
}
.captcha-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  opacity: 0.95;
}
.captcha-img .captcha{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  color: #fff;
  font-size: 35px;
  text-align: center;
  letter-spacing: 10px;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 2px #b1b1b1;
  font-family: 'Noto Serif', serif;
}
.captcha_wrapper button{
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  background: #4db2ec;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.captcha_wrapper button:hover{
  background: #2fa5e9;
}
.captcha-area .reload-btn{
  width: 75px;
  height: 100%;
  font-size: 25px;
}
.captcha-area .reload-btn i{
  transition: transform 0.3s ease;
}
.captcha-area .reload-btn:hover i{
  transform: rotate(15deg);
}
.captcha_wrapper .input-area{
  height: 60px;
  width: 100%;
  position: relative;
}
.input-area input{
  width: 100%;
  height: 100%;
  outline: none;
  padding-left: 20px;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
}
.input-area input:is(:focus, :valid){
  padding-left: 19px;
  border: 2px solid #4db2ec;
}
.input-area input::placeholder{
  color: #bfbfbf;
}
.input-area .check-btn{
  position: absolute;
  right: 7px;
  top: 50%;
  font-size: 17px;
  height: 45px;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
.input-area input:valid + .check-btn{
  opacity: 1;
  pointer-events: auto;
}
.captcha_wrapper .status-text{
  display: none;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 -5px;
}
@media (max-width: 506px){

  .captcha_wrapper{
    padding: 22px 25px 35px;
  }
  .captcha_wrapper header{
    font-size: 25px;
  }
  .captcha_wrapper .captcha-area{
    height: 60px;
  }
  .captcha-area .captcha{
    font-size: 28px;
    letter-spacing: 5px;
  }
  .captcha-area .reload-btn{
    width: 60px;
    margin-left: 5px;
    font-size: 20px;
  }
  .captcha_wrapper .input-area{
    height: 55px;
  }
  .input-area .check-btn{
    height: 40px;
  }
  .captcha_wrapper .status-text{
    font-size: 15px;
  }
  .captcha-area .captcha-img{
    width: 250px;
  }
}