@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,800;1,200&family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.parent{
  width: 100%;
}
nav {
  width: 100%;
  background-color: #f1f2fa;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 0;
}
.nav-menu {
  display: flex;
   flex-direction: row; 
  gap: 2rem;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  text-decoration: none;
}
.nav-menu #black {
  color: black;
}
nav img {
  width: 100px;
  height: 30px;
}
.nav-button {
  display: flex;
  gap: 1rem;
 } 
.mobile-nav{
  display: none;
}
.nav-login {
  border: 1px solid #374387;
  color: #374387;
  border-radius: 10px;
  width: 80px;
  height: 30px;
}
.nav-reg {
  border: 1px solid #374387;
  background-color: #374387;
  color: white;
  border-radius: 10px;
  border: none;
  width: 92px;
  height: 38px;
}

.custom-nav {
  width: 90%;
  margin: 0 auto; /* This centers the navigation bar on the page */
}

  .navbar-toggler-icon {
    filter: invert(100%); /* Change the color of the navigation icon to black */
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon:focus {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='black'%3E%3Cline x1='3' y1='2.5' x2='27' y2='2.5' stroke='currentColor' stroke-width='3'%3E%3C/line%3E%3Cline x1='3' y1='15' x2='27' y2='15' stroke='currentColor' stroke-width='3'%3E%3C/line%3E%3Cline x1='3' y1='27.5' x2='27' y2='27.5' stroke='currentColor' stroke-width='3'%3E%3C/line%3E%3C/svg%3E");
  }

  /* Change the color of the close icon (X) when the menu is open */
  .navbar-toggler-icon:not(.collapsed) {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='black'%3E%3Cpath d='M5 5.5L25 25.5M25 5.5L5 25.5' stroke='currentColor' stroke-width='3'%3E%3C/path%3E%3C/svg%3E");
  }

  /* Change the color of the navigation icons to black */
 

  .menu-icon .navbar-toggler-icon {
    background-color: black;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    border: none;
    outline: none !important;
  }



/* styling of section one */
.sec {
  width: 100%;
  background-color: #f1f2fa;
  padding-top: 30px;
}
.sec-1 {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  width: 50%;
  padding: 2rem;
}
.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 750px;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 60px;
  font-weight: 500;
  /* line-height: 78px; */
  /* text-align: left; */
}
.sec-1 p {
  color: #4351a0;
  width: 300px;
  padding-top: 30px;
  padding-bottom: 55px;
  font-size: 16px;
  font-family: Montserrat;
}
.sec-1 button {
  background-color: #4351a0;
  color: #f5f6ff;
  border: none;
  border-radius: 5px;
  width: 110px;
  height: 30px;
  font-family: Montserrat;
}

/* styling of section 2 */
.sec-2 {
  width: 100%;
  background-color: #374387;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 3rem;
  position: relative;
}
.sec-2 h1 {
  color: white;
  font-size: 30px;
  font-family: Montserrat;
  margin-left: 6rem;
}
.container {
  /* width: 80%; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
  padding: 2rem;
}
.main-pic img {
  width: 850px;
  height: 1080px;
  position: absolute;
  right: 0%;
  bottom: 0%;
}
#cont1 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 250px;
  height: 300px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
#cont1:hover {
  background-color: rgba(12, 12, 12, 0.5);
  transition: 2s;
}
#cont1 img {
  height: 60px;
  width: 50px;
}
#cont1 h4 {
  font-size: 20px;
  color: white;
  padding-top: 2rem;
  font-family: Montserrat;
}
#cont1 p {
  width: 150px;
  text-align: left;
  font-size: 12px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 2rem;
}

#cont2 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 250px;
  height: 300px;
  border-radius: 10px;
}
#cont2:hover {
  background-color: rgba(12, 12, 12, 0.5);
  transition: 2s;
}
#cont2 img {
  height: 60px;
  width: 50px;
}
#cont2 h4 {
  color: white;
  padding-top: 2rem;
  font-family: Montserrat;
  font-size: 20px;
}
#cont2 p {
  width: 170px;
  text-align: left;
  font-size: 12px;
  color: white;
  font-weight: 100;
  font-family: Montserrat;
  padding-top: 2rem;
}
#cont3 {
  background-color: rgba(12, 12, 12, 0.5);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 250px;
  height: 300px;
  border-radius: 10px;
}
#cont3:hover {
  background-color: rgba(12, 12, 12, 0.5);
  transition: 2s;
}
#cont3 img {
  height: 60px;
  width: 50px;
}
#cont3 h4 {
  color: white;
  padding-top: 2rem;
  font-family: Montserrat;
  font-size: 20px;
}
#cont3 p {
  width: 170px;
  text-align: left;
  font-size: 12px;
  color: white;
  font-weight: 100;
  font-family: Montserrat;
  font-size: 12px;
  padding-top: 2rem;
}
.sec-2 button {
  color: #374387;
  width: 125px;
  height: 49px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  margin-left: 6rem;
}

/* styling of section 3 */
.side {
  width: 100%;
  display: flex;
  flex-direction: row;
  background-color: #f1f2fa;
  padding-top: 12rem;
}
.section3-3{
  display: none;
}

.side-1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 7rem;
}
.side-1 img {
  width: 510px;
  height: 675px;
  position: absolute;
  bottom: 0%;
  right: 5%;
}
.side-2 {
  width: 45%;
  padding-left: 10rem;
  /* padding-bottom: 5rem; */
  /* display:flex ; */
}
.side-2 h2 {
  text-align: center;
  /* padding-top: 1rem; */
  font-size: 45px;
  font-weight: 700;
  color: #4351a0;
}
.main1 {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
.main2 {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
#one {
  background-color: #d6dcfd;
  color: #374387;
  position: relative;
  border: solid 5px white;
  border-radius: 20px;
  padding: 1.8rem;
  width: 300px;
  height: 200px;
}
#one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 17px;
  line-height: 24px;
  /* Line height: 100%; */
  align: Left;
  vertical-align: Top;
}
#one p {
  font-family: Montserrat;
  font-size: 11px;
  line-height: 20px;
  /* width: 10px; */
  align: Left;
  padding-top: 1rem;
}

.vec1 {
  background-color: #6070cd;
  width: 55px;
  /* height: 50px; */
  border-radius: 15px;
  border: solid white 5px;
  position: absolute;
  bottom: 88%;
  left: 8%;
}
.vec1 img {
  width: 45px;
}

#one:hover {
  background-color: #f5f6ff;
  transition: 1s;
}
#one h5:hover {
  color: #7181dd;
  transition: 1ms;
  font-size: 18px;
}
#one p:hover {
  font-size: 13px;
  transition: 1ms;
}

.vec1:hover {
  background-color: #d6dcfd;
}

.butt-get {
  display: flex;
  justify-content: flex-end;
  padding-top: 2rem;
}

.butt-get button {
  background-color: #374387;
  border: none;
  border-radius: 10px;
  color: white;
  width: 120px;
  height: 40px;
  font-family: Montserrat;
}

/* styling of section 4 */
.sec-4 {
  width: 100%;
  background-color: #f1f2fa;
  padding: 3rem 5rem;
}
.sec-4 h1 {
  font-size: 48px;
  font-family: Montserrat;
  color: #374387;
  padding-bottom: 40px;
}
.sec4-cont {
  display: flex;
  width: 100%;
  /* height: 300px; */
  border: white solid 1rem;
  border-radius: 40px;
  display: flex;
  justify-content: space-around;
  background-color: #374387;
  padding: 2rem 2rem;
}
.butt-try button {
  border-radius: 12px;
  background-color: #374387;
  width: 130px;
  height: 40px;
  border: none;
  color: white;
  font-size: 18px;
  font-family: Montserrat;
}
.butt-try {
  padding-top: 20px;
}
.frame {
  background-color: #374387;
  color: #d6dcfd;
  text-align: center;
  width: 250px;
  height: 250px;
}

.frame h4 {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
  line-height: 37px;
  text-align: center;
  padding-top: 20px;
  /* color: #D6DCFD; */
}
.frame h5 {
  font-size: 16px;
  font-family: Montserrat;
  padding-top: 10px;
}

.frame p {
  font-family: Montserrat;
  font-size: 13px;
  /* font-weight: 400; */
  line-height: 22px;
  text-align: center;
  padding-top: 10px;
  /* color: #D6DCFD; */
}
.frame:hover {
  /* transform: scale(Y) (2); */
  height: 350px;
  margin-top: -100px;
  transition: 2s;
  background-color: #ffc804;
  color: #374387;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

/* styling of section 5 */

.sec-5 {
  width: 100%;
  background-color: #f1f2fa;
  padding: 10rem 0rem;
  display: flex;
  flex-direction: row;
}

.part1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 7rem;
}
.part1 img {
  width: 620px;
  height: 730px;
  position: absolute;
  bottom: 0%;
  left: 0%;
}

.part2 {
  width: 45%;
  padding-left: 10rem;
}
.part2 h1 {
  color: #374387;
  padding-top: 2rem;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 59px;
}
.part2 p {
  color: #ffc804;
  padding-top: 1rem;
  font-family: "Montserrat";
  font-style: normal;
  /* font-weight: 400; */
  font-size: 14px;
  line-height: 20px;
}
.part3 {
  background-color: #d6dcfd;
  border-radius: 10px;
  height: 300px;
  width: 500px;
  height: 250px;
  margin-top: 70px;
  position: relative;
}
.part3 p {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 1rem;
}
.words {
 
  
}
.words h4 {
  font-family: Montserrat;
  font-size: 14px;
  color: #374387;
  position: absolute;
  left: 12%;
  bottom: 20%;
}
.words p {
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  color: #374387;
  position: absolute;
  left: 9%;
  top: 150px;
}

#img4{
  background-color: #374387;
 width: 60px;
 border-radius: 10px;
 position: absolute;
 top: -15%;
 left: 5%;
}
#img4 img{
  width: 60px;
}
#img1{
  position: absolute;
  bottom: 10%;
  padding-left: 1rem;
}
#img1 img{
  height: 40px;
}
#img2{
  position: absolute;
  right: 25%;
  bottom: 12%;
  background-color: #374387;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#img2 img{
  width: 10px;
  height: 12px;
}
#img3{
  position: absolute;
   right: 20%;
  bottom: 12%; 
  background-color: #F5F6FF;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#img3 img{
  width: 10px;
  height: 12px;
}
.footer-bar{
  width: 100%;
  background-color: #374387;
  color:  #F5F6FF;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
 
}
.footer-bar h3{
font-family: Montserrat;
}
.footer-bar p{
  font-family: Montserrat;
}

#line1 img{
width: 100px;
}
#line1{
 gap: 1rem; 
 display: flex;
 flex-direction: column;
 padding-top: 4rem;
}
#line2{
  gap: 1rem; 
  display: flex;
  flex-direction: column; 
  padding-top: 4rem; 
}
#line2 h3{
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  line-height: 44px;
  text-align: left;
  
}
#line3{
  gap: 1rem; 
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}
#line3 h3{
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  line-height: 44px;
  text-align: left;
  
}
#line4{
  gap: 1rem; 
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}
#line4 h3{
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  line-height: 44px;
  text-align: left; 
}

.holding{
  background-color: #374387;
  color:  #F5F6FF;
  padding: 3rem;
  /* padding-left: 3rem; */
   display: flex;
  justify-content: space-around; 
  gap: 33rem;
}
#hold1 p{
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
width: 280px;
}
#hold2 p{
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;

}

#hold-butt1{
  width: 240px;
  height: 30px;
  border-radius: 5px;
  border: none;
  color: #595959;
  margin-top: 10px;
}
#hold-butt2{
  width: 170px;
  height: 30px;
  border-radius: 5px;
  border: none;
  color: #374387;
  margin-top: 10px;
}
#hold2 h2{
  font-family: Montserrat;
}
#social-icons{
  display: flex;
  justify-content: space-around;
  width: 150px;
  /* padding-top: 5px; */
  margin-top: 10px;
}
#social-icons img{
  width: 20px;
  height: 20px;
}
.bottom-line{
background-color: #F5F6FF;
width: 100%;
height: 1px;
}
.copyright{
  background-color: #374387;
  color: #F5F6FF;
}
.copyright p{
  font-family: Montserrat;
font-size: 10px;
padding: 1rem 8rem ;
/* text-align: left; */
}
#hold2{
  position: relative;
  left: 0;
}
footer{
  display: none;
}
@media (max-width:1368px){
  .main-pic img {
    width: 694px;
    height: 1030px;
    position: absolute;
    right: 0%;
    bottom: 0%;
}
#hold2 {
  position: relative;
  left: -35px;
}
.part2 {
  width: 45%;
  padding-left: 8rem;
}
}

@media (max-width:1225px){
  .main-pic img {
    width: 619px;
    height: 1019px;
    position: absolute;
    right: 0%;
    bottom: 0%;
  }
}

@media (max-width:1156px){
  .part1 {
    width: 35%;
    height: 550px;
    background-color: rgba(113, 129, 221, 0.53);
    border: 15px solid white;
    position: relative;
    border-radius: 10px;
    /* padding-right: 15rem; */
    margin-left: 4rem;
}
.side-1 img {
  width: 390px;
  height: 675px;
  position: absolute;
  bottom: 0%;
  right: 5%;
}

.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 638px;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 500;
  /* line-height: 78px; */
  /* text-align: left; */
}
.part3 {
  background-color: #d6dcfd;
  border-radius: 10px;
  height: 300px;
  width: 426px;
  height: 250px;
  margin-top: 70px;
  position: relative;
}
}

@media (max-width:1025px){
  .words p {
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    color: #374387;
    position: absolute;
    left: 16%;
    top: 243px;
}
.words h4 {
  font-family: Montserrat;
  font-size: 14px;
  color: #374387;
  position: absolute;
  left: 20%;
  bottom: 5%;
}
.part1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 5rem;
}
#img1 {
  position: absolute;
  bottom: -1%;
  padding-left: 1rem;
}
#img2 {
  position: absolute;
  right: 29%;
  bottom: 6%;
  background-color: #374387;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#img3 {
  position: absolute;
  right: 15%;
  bottom: 6%;
  background-color: #F5F6FF;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.part3 {
  background-color: #d6dcfd;
  border-radius: 10px;
  height: 300px;
  width: 100%;
  height: 312px;
  margin-top: 70px;
  position: relative;
}
.part1 img {
  width: 537px;
  height: 730px;
  position: absolute;
  bottom: 0%;
  left: 0%;
}
.side-1 img {
  width: 390px;
  height: 675px;
  position: absolute;
  bottom: 0%;
  right: 5%;
}
.main-pic img {
  width: 512px;
  height: 949px;
  position: absolute;
  right: 0%;
  bottom: 0%;
}
.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 673px;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 45px;
  font-weight: 500;
  /* line-height: 78px; */
  /* text-align: left; */
}
.side-2 {
  width: 45%;
  padding-left: 4rem;
  /* padding-bottom: 5rem; */
  /* display: flex; */
}
#one {
  background-color: #d6dcfd;
  color: #374387;
  position: relative;
  border: solid 5px white;
  border-radius: 20px;
  padding: 1.8rem;
  width: 263px;
  height: 230px;
}
}
@media (max-width:970px){
  #social-icons {
    display: flex;
    justify-content: space-around;
    width: 108px;
    /* padding-top: 5px; */
    margin-top: 10px;
}
#one {
  background-color: #d6dcfd;
  color: #374387;
  position: relative;
  border: solid 5px white;
  border-radius: 20px;
  padding: 1.8rem;
  width: 263px;
  height: 257px;
}
one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 12px;
  line-height: 24px;
  vertical-align: Top;
}
}
@media (max-width:970px){
  .main-pic img {
    width: 387px;
    height: 899px;
    position: absolute;
    right: 0%;
    bottom: 0%;
}
#hold2 p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
}
#hold2 {
  position: relative;
  left: -81px;
}
.part3 {
  background-color: #d6dcfd;
  border-radius: 10px;
  height: 300px;
  width: 100%;
  height: 371px;
  margin-top: 70px;
  position: relative;
}
#img1 {
  position: absolute;
  bottom: -1%;
  padding-left: 1rem;
  left: -12px;
}
.words p {
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  color: #374387;
  position: absolute;
  left: 16%;
  top: 299px;
}
#one p {
  font-family: Montserrat;
  font-size: 12px;
  line-height: 14px;
  /* width: 10px; */
  align: Left;
  padding-top: 1rem;
}
.main-pic img {
    width: 355px;
    height: 975px;
    position: absolute;
    right: 0%;
    bottom: 0%;
}
.part1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 7rem;
  left: -50px;
}
}
@media (max-width:801px){
  .sec-1 h1 {
    color: #4351a0;
    /* height: 150px; */
    width: 488px;
    left: 147px;
    /* top: 260px; */
    font-family: Montserrat;
    font-size: 38px;
    font-weight: 500;
    /* line-height: 78px; */
    /* text-align: left; */
}
.main-pic img {
  width: 355px;
  height: 952px;
  position: absolute;
  right: 0%;
  bottom: 0%;
}
#one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 12px;
  line-height: 15px;
  align: Left;
  vertical-align: Top;
}
.part1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 7rem;
  left: -81px;
}
.part1 img {
  width: 500px;
  height: 730px;
  position: absolute;
  bottom: 0%;
  left: 0%;
}
.side-1 img {
  width: 350px;
  height: 675px;
  position: absolute;
  bottom: 0%;
  right: -17%;
}
.side-1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 6rem;
}
#hold1 {
  position: relative;
  left: 120px;
}
#hold2 {
  position: relative;
  left: -126px;
}
#img1 {
    position: absolute;
    bottom: 16%;
    padding-left: 1rem;
    left: -12px;
}
.part3 p {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 1rem;
}
.words h4 {
  font-family: Montserrat;
  font-size: 12px;
  color: #374387;
  position: absolute;
  left: 22%;
  bottom: 26%;
}
.part1 img {
  width: 481px;
  height: 730px;
  position: absolute;
  bottom: 0%;
  left: -5%;
}
#img2 {
  position: absolute;
  right: 30%;
  bottom: 18%;
  background-color: #374387;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#img3 {
  position: absolute;
  right: 12%;
  bottom: 18%;
  background-color: #F5F6FF;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#move {
  position: absolute;
  top: -71px;
  width: 100%;
  right: 0px;
}
#img4 {
  background-color: #374387;
  width: 61px;
  border-radius: 10px;
  position: absolute;
  top: -11%;
  left: 5%;
}
.part2 {
  width: 45%;
  padding-left: 6rem;
}
}

@media (max-width:767px){
  .mobile-nav{
    display: block;
    padding: 1rem 4rem;
    background-color: #f1f2fa;
  }
  nav{
    display: none;
  }
  .mob-nav{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 90%;
  }
  .nav-mobile{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-mobile img{
    width: 100px;
  }
  #blue{
    color: #374387;
    font-size: 50px;
    cursor: pointer;
  }
  .expandable-content li{
    list-style: none;
    padding-top: 20px;
  }
  .expandable-content li a{
   text-decoration: none;
   padding-top: 20px;
  }
  .expandable-content{
    display: flex;
    justify-content: center;
    background-color: #f1f2fa;
    gap: 30px;
    text-align: center;
    transition: all 0.2s ease-in-out;
  }
  
  .sec-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
}

.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 100%;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 43px;
  font-weight: 900;
  /* line-height: 78px; */
  /* text-align: left; */
}
.sec-1 p {
  color: #4351a0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 55px;
  font-size: 32px;
  font-weight: 100;
  font-family: Montserrat;
}

.sec-1 button {
  background-color: #4351a0;
  color: #f5f6ff;
  border: none;
  border-radius: 20px;
  width: 80%;
  height: 48px;
  font-family: Montserrat;
  font-size: 24px;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  z-index: 1;
  padding: 2rem;
}

.main-pic img {
  width: 325px;
  height: 941px;
  position: absolute;
  right: 0%;
  bottom: 0%;
  display: none;
}
#cont1 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
#cont1 h4 {
  font-size: 40px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont1 p {
  width: 100%;
  text-align: center;
  font-size: 27px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 2rem;
}
#cont2 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
#cont2 h4 {
  font-size: 40px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont2 p {
  width: 100%;
  text-align: center;
  font-size: 27px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 0rem;
}
#cont3 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
#cont3 h4 {
  font-size: 40px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont3 p {
  width: 100%;
  text-align: center;
  font-size: 27px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 0rem;
}

.sec-2 h1 {
  color: white;
  font-size: 40px;
  font-family: Montserrat;
  margin-left: 0rem;
  text-align: center;
  font-weight: 900;
}

.startnow{
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-2 button {
  color: #374387;
  width: 70%;
  height: 49px;
  font-size: 26px;
  border-radius: 10px;
  border: none;
  border-radius: 20px;
  margin-left: 0rem;
}
.side h1{
  display: block;
}
.side {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f1f2fa;
  padding-top: 8rem;
  align-items: center;
}
.section3-3{
  display: block;
  background-color: #f1f2fa;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4351a0;
}
.section3-3 h1{
  font-size: 45px;
  padding-top: 4rem;
}
.side-1 {
  width: 50%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 16px solid white;
  position: relative;
  border-radius: 61px;
  /* padding-right: 15rem; */
  margin-left: 0rem;
}
.side-1 img {
  width: 350px;
  height: 675px;
  position: absolute;
  bottom: 0%;
  right: 5%;
}
.side-2 h2 {
  text-align: center;
  /* padding-top: 1rem; */
  font-size: 45px;
  font-weight: 700;
  color: #4351a0;
  display: none;
}
.side-2 {
  width: 90%;
  padding-left: 0rem;
  padding-top: 2rem;
  /* display: flex; */
}
#one {
  background-color: #d6dcfd;
  color: #374387;
  position: relative;
  border: solid 5px white;
  border-radius: 42px;
  padding: 2rem;
  width: 100%;
  height: auto;
}
#one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 21px;
  line-height: 20px;
  align: Left;
  vertical-align: Top;
}

.vec1 {
  background-color: #6070cd;
  width: 55px;
  /* height: 50px; */
  border-radius: 15px;
  border: solid white 5px;
  position: absolute;
  bottom: 88%;
  left: 10%;
}
#one p {
  font-family: Montserrat;
  font-size: 16px;
  line-height: 26px;
  /* width: 10px; */
  align: Left;
  padding-top: 1rem;
}

#one:hover {
  background-color: #f5f6ff;
  transition: 1s;
}
#one h5:hover {
  color: #7181dd;
  transition: 1ms;
  font-size: 28px;
}
#one p:hover {
  font-size: 19px;
  transition: 1ms;
}
.butt-get {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
.butt-get button {
  background-color: #374387;
  border: none;
  border-radius: 10px;
  color: white;
  width: 90%;
  height: 50px;
  font-family: Montserrat;
  font-size: 27px;
  cursor: pointer;
}
.sec-4 {
  width: 100%;
  background-color: #f1f2fa;
  padding: 3rem 0rem;
}
.sec-4 h1 {
  font-size: 39px;
  font-family: Montserrat;
  color: #374387;
  padding-bottom: 22px;
  padding-left: 3rem;
}
.sec4-cont {
  display: flex;
  width: 100%;
  /* height: 300px; */
  border: white solid 1rem;
  border-radius: 40px;
  display: flex;
  background-color: #374387;
  padding: 2rem 5rem;
  /* align-items: baseline; */
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

.frame {
  background-color: #374387;
  color: #d6dcfd;
  text-align: center;
  width: 100%;
  height: 100px;
  gap: 30px;
  display: flex;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.frame:hover {
  width: 100%;
  height: 170px;
  margin-top: 00px; 
  transition: 1s;
  background-color: #ffc804;
  color: #374387;
  padding: 0rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.sec4-cont {
  display: flex;
  width: 100%;
  /* height: 300px; */
  border: white solid 1rem;
  border-radius: 40px;
  display: flex;
  background-color: #374387;
  padding: 2rem 1rem;
  /* align-items: baseline; */
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

.frame h4 {
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 600;
  line-height: 37px;
  text-align: center;
  padding-top: 20px;
  /* color: #D6DCFD; */
}
.frame p {
  font-family: Montserrat;
  font-size: 17px;
  /* font-weight: 400; */
  line-height: 22px;
  text-align: center;
  padding-top: 10px;
  /* color: #D6DCFD; */
}
.butt-try {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.butt-try button {
  border-radius: 12px;
  background-color: #374387;
  width: 76%;
  height: 51px;
  border: none;
  color: white;
  font-size: 29px;
  font-family: Montserrat;
  cursor: pointer;
}
.part1 {
  width: 35%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 15px solid white;
  position: relative;
  border-radius: 10px;
  /* padding-right: 15rem; */
  margin-left: 7rem;
  left: -81px;
  display: none;
}
.sec-5 {
  width: 100%;
  background-color: #f1f2fa;
  padding: 3rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part2 {
  width: 100%;
  padding-left: 0rem;
}
.part2 h1 {
  color: #374387;
  padding-top: 2rem;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 27px;
  line-height: 59px;
  text-align: center;
}
.part2 p{
  display: none;
}
.part3 p {
  display: block;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 2rem;
}
.part3 {
  background-color: #d6dcfd;
  border-radius: 47px;
  width: 100%;
  height: 340px;
  margin-top: 70px;
  position: relative;
  border: 5px solid #fff;
}
#img4 {
  background-color: #374387;
  width: 61px;
  border-radius: 10px;
  position: absolute;
  top: -11%;
  left: 11%;
}
#img1 {
  position: absolute;
  bottom: 16%;
  padding-left: 1rem;
  left: 17px;
  bottom: 36px;
}
.words h4 {
  font-family: Montserrat;
  font-size: 22px;
  color: #374387;
  position: absolute;
  left: 12%;
  bottom: 17%;
}
#move p{
  position: absolute;
  bottom: -71px;
  left: 58px;
  font-size: 24px;
}

#img2 {
  position: absolute;
  right: 30%;
  bottom: 18%;
  background-color: #374387;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

#img3 {
  position: absolute;
  right: 19%;
  bottom: 18%;
  background-color: #F5F6FF;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
footer{
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 2rem;
  background-color: #374387;
}
.reni-1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 50px;
  padding: 2rem;
}
.reni-1 img {
  width: 100px;
  padding-bottom: 82px;
}
.reni-word p{
  color: #fff;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.reni-word input{
  background: #fff;
  width: 279px;
  height: 51px;
  outline: none;
  border-radius: 10px;
  font-size: 20px;
  padding: 1rem;
  border: 1px solid #fff;
}
.reni-word input::placeholder{
  color: #595959;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.reni-word button{
  color: var(--reni-900, #374387);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100px;
  height: 51px;
  background: #fff;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fff;
}
form{
  padding-top: 1rem;
}
.quick{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  padding: 7rem 0 0 2rem;
}
.quick-1{
  color: white;
}
.quick-1 ul h1{
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quick-1 ul{
  padding-left: 0rem;
}
.quick-1 ul li{
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  list-style: none;
  padding-top: 20px; 
}
.social-2{
  padding-top: 4rem;
  color: #fff;
}
.social-2 h1{
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hide{
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding-top: 2rem;
  gap: 20px;
}
.hide img{
  width: 21px;
}
.social-2 a{
  text-decoration: none;
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mail{
  padding-top: 2rem;
}
hr{
  margin-top: 2rem;
  background-color: #fff;
  height: 3px;
}
.copy{
  padding: 2rem;
  color: #fff;
}
.copy p{
  font-family: Montserrat;
  font-size: 30px;
  line-height: normal;
}
.footer-bar{
  display: none;
}
.holding{
  display: none;
}
.copyright{
  display: none;
}
.reni-1-1{
  display: flex;
  justify-content: center;
  align-items: center;
}
}

@media (max-width:599px){
  #cont1 p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
  #cont2 p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
  #cont3 p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
#cont2 h4 {
  font-size: 30px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
/* #one h5:hover {
  color: #7181dd;
  transition: 1ms;
  font-size: 10px;
}
#one p:hover {
  font-size: 8px;
  transition: 1ms;
} */
}
@media (max-width:581px){
  .words h4 {
    font-family: Montserrat;
    font-size: 22px;
    color: #374387;
    position: absolute;
    left: 16%;
    bottom: 17%;
}
.reni-word input {
  background: #fff;
  width: 196px;
  height: 51px;
  outline: none;
  border-radius: 10px;
  font-size: 11px;
  padding: 1rem;
  border: 1px solid #fff;
}
.reni-word input::placeholder{
  color: #595959;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.reni-word button{
  color: var(--reni-900, #374387);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100px;
  height: 51px;
  background: #fff;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fff;
}
#cont1 h4 {
  font-size: 20px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont2 h4 {
  font-size: 15px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}#cont3 h4 {
  font-size: 20px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
}
@media (max-width:531px){
  .reni-word button {
    color: var(--reni-900, #374387);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 80px;
    height: 51px;
    background: #fff;
    border-radius: 10px;
    outline: none;
    border: 1px solid #fff;
}
.reni-word input {
  background: #fff;
  width: 160px;
  height: 51px;
  outline: none;
  border-radius: 10px;
  font-size: 11px;
  padding: 1rem;
  border: 1px solid #fff;
}
.copy p {
  font-family: Montserrat;
  font-size: 16px;
  line-height: normal;
}
.frame p {
  font-family: Montserrat;
  font-size: 11px;
  /* font-weight: 400; */
  line-height: 16px;
  text-align: center;
  padding-top: 10px;
  /* color: #D6DCFD; */
}
.frame h4 {
  font-family: Montserrat;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
  text-align: center;
  padding-top: 20px;
  /* color: #D6DCFD; */
}
.sec-1 p {
  color: #4351a0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 55px;
  font-size: 23px;
  font-weight: 000;
  font-family: Montserrat;
}
.side-1 {
  width: 50%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 16px solid white;
  position: relative;
  border-radius: 61px;
  margin-right: -7rem;
  margin-left: 0rem;
}
#one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 15px;
  line-height: 20px;
  align: Left;
  vertical-align: Top;
}
.reni-word p {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.section3-3 h1 {
  font-size: 40px;
  padding-top: 4rem;
}
.quick-1 ul h1 {
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quick-1 ul li {
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  list-style: none;
  padding-top: 20px;
}
.social-2 h1 {
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hide {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding-top: 2rem;
  gap: 15px;
}
.reni-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 2rem;
}
.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 100%;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 900;
  /* line-height: 78px; */
  /* text-align: left; */
}
}
@media (max-width:471px){
  #cont2 h4 {
    font-size: 22px;
    color: white;
    padding-top: 0rem;
    font-family: Montserrat;
}
.mobile-nav{
  display: block;
  padding: 1rem 1rem;
  background-color: #f1f2fa;
}
.side-1 {
  width: 100%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 16px solid white;
  position: relative;
  border-radius: 61px;
  margin-right: 0rem;
  margin-left: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part3 p {
  display: block;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 2rem;
}
.words h4 {
  font-family: Montserrat;
  font-size: 22px;
  color: #374387;
  position: absolute;
  left: 20%;
  bottom: 17%;
}
}
@media (max-width:436px){
  #cont1 p {
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
.sec-1 h1 {
  color: #4351a0;
  /* height: 150px; */
  width: 100%;
  left: 147px;
  /* top: 260px; */
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 900;
  /* line-height: 78px; */
  /* text-align: left; */
}
.sec-1 p {
  color: #4351a0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 55px;
  font-size: 20px;
  font-weight: 000;
  font-family: Montserrat;
}
.quick-1 ul li {
  font-family: Montserrat;
  font-size: 9px;
  font-style: normal;
  line-height: normal;
  list-style: none;
  padding-top: 20px;
}
  #cont2 p {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
  #cont3 p {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: white;
    font-family: Montserrat;
    font-weight: 100;
    padding-top: 0rem;
}
#cont2 h4 {
  font-size: 15px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont3 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
#cont2 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
#cont1 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.section3-3 h1 {
  font-size: 30px;
  padding-top: 4rem;
}
.vec1 {
  background-color: #6070cd;
  width: 55px;
  /* height: 50px; */
  border-radius: 15px;
  border: solid white 5px;
  position: absolute;
  bottom: 94%;
  left: 10%;
}
#one {
  background-color: #d6dcfd;
  color: #374387;
  position: relative;
  border: solid 5px white;
  border-radius: 42px;
  padding: 15px;
  width: 100%;
  height: auto;
}
#one:hover {
  background-color: #f5f6ff;
  transition: 1s;
}
#one h5:hover {
  color: #7181dd;
  transition: 1ms;
  font-size: 19px;
}
#one p:hover {
  font-size: 12px;
  transition: 1ms;
}
#one p {
  font-family: Montserrat;
  font-size: 10px;
  line-height: 17px;
  /* width: 10px; */
  align: Left;
  padding-top: 1rem;
}
.frame h4 {
  font-family: Montserrat;
  font-size: 10px;
  font-weight: 900;
  line-height: 0px;
  text-align: center;
  padding-top: 20px;
  /* color: #D6DCFD; */
}
.frame p {
  font-family: Montserrat;
  font-size: 11px;
  /* font-weight: 400; */
  line-height: 14px;
  text-align: center;
  padding-top: 27px;
  /* color: #D6DCFD; */
}
.part3 p {
  display: block;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 29px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 2rem;
}
.words h4 {
  font-family: Montserrat;
  font-size: 16px;
  color: #374387;
  position: absolute;
  left: 23%;
  bottom: 18%;
}
#move p {
  position: absolute;
  bottom: -71px;
  left: 54px;
  font-size: 17px;
}
.reni-word p {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.reni-word input {
  background: #fff;
  width: 123px;
  height: 45px;
  outline: none;
  border-radius: 10px;
  font-size: 11px;
  padding: 1rem;
  border: 1px solid #fff;
}
.reni-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 2rem;
}
.reni-word button {
  color: var(--reni-900, #374387);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 89px;
  height: 45px;
  background: #fff;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fff;
}
.reni-1 img {
  width: 100px;
  padding-bottom: 60px;
}
.social-2 a {
  text-decoration: none;
  color: #fff;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.reni-1 img{
  width: 80px;
}
}
@media(max-width:380px){
  .sec-1 h1 {
    color: #4351a0;
    /* height: 150px; */
    width: 100%;
    left: 147px;
    /* top: 260px; */
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 900;
    /* line-height: 78px; */
    /* text-align: left; */
} 
.sec-1 p {
  color: #4351a0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 15px;
  font-weight: 000;
  font-family: Montserrat;
}
.sec-2 h1 {
  color: white;
  font-size: 34px;
  font-family: Montserrat;
  margin-left: 0rem;
  text-align: center;
  font-weight: 900;
}
#cont1 p {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 0rem;
}
#one h5 {
  font-family: Montserrat;
  font-style: SemiBold;
  font-size: 11px;
  line-height: 20px;
  align: Left;
  vertical-align: Top;
}
#one p {
  font-family: Montserrat;
  font-size: 8px;
  line-height: 17px;
  /* width: 10px; */
  align: Left;
  padding-top: 1rem;
}
.sec-4 h1 {
  font-size: 32px;
  font-family: Montserrat;
  color: #374387;
  padding-bottom: 22px;
  padding-left: 3rem;
}
#cont1 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 145%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
#cont2 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 145%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
#cont3 {
  background-color: rgba(245, 246, 255, 0.19);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  width: 145%;
  height: auto;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.sec-2 button {
  color: #374387;
  width: 95%;
  height: 49px;
  font-size: 22px;
  border-radius: 10px;
  border: none;
  border-radius: 20px;
  margin-left: 0rem;
  cursor: pointer;
}
.side-1 img {
  width: 276px;
  height: 654px;
  position: absolute;
  bottom: 0%;
  right: 5%;
}
.frame h4 {
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 900;
  line-height: 10px;
  text-align: center;
  padding-top: 20px;
  /* color: #D6DCFD; */
}
.butt-try button {
  border-radius: 12px;
  background-color: #374387;
  width: 76%;
  height: 51px;
  border: none;
  color: white;
  font-size: 22px;
  font-family: Montserrat;
  cursor: pointer;
}
.frame p {
  font-family: Montserrat;
  font-size: 10px;
  /* font-weight: 400; */
  line-height: 13px;
  text-align: center;
  padding-top: 27px;
  /* color: #D6DCFD; */
}
.part2 h1 {
  color: #374387;
  padding-top: 2rem;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 59px;
  text-align: center;
}
.part3 p {
  display: block;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  line-height: 29px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 2rem;
}
#img2 {
  position: absolute;
  right: 21%;
  bottom: 14%;
  background-color: #374387;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
#img3 {
  position: absolute;
  right: 9%;
  bottom: 14%;
  background-color: #F5F6FF;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.reni-word p {
  color: #fff;
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.reni-word button {
  color: var(--reni-900, #374387);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 73px;
  height: 45px;
  background: #fff;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fff;
}
.hide img {
  width: 16px;
}
.social-2 h1 {
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.social-2 a {
  text-decoration: none;
  color: #fff;
  font-family: Montserrat;
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.quick-1 ul h1 {
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quick-1 ul li {
  font-family: Montserrat;
  font-size: 9px;
  font-style: normal;
  line-height: normal;
  list-style: none;
  padding-top: 20px;
}
.sec-1 button {
  background-color: #4351a0;
  color: #f5f6ff;
  border: none;
  border-radius: 20px;
  width: 80%;
  height: 48px;
  font-family: Montserrat;
  font-size: 18px;
}
.butt-get button {
  background-color: #374387;
  border: none;
  border-radius: 10px;
  color: white;
  width: 90%;
  height: 50px;
  font-family: Montserrat;
  font-size: 20px;
  cursor: pointer;
}
.sec4-cont {
  display: flex;
  width: 100%;
  /* height: 300px; */
  border: white solid 1rem;
  border-radius: 40px;
  display: flex;
  background-color: #374387;
  padding: 2rem 2rem;
  /* align-items: baseline; */
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}
}
@media (max-width:340px){
  .sec-1 h1 {
    color: #4351a0;
    /* height: 150px; */
    width: 100%;
    left: 147px;
    /* top: 260px; */
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 900;
    /* line-height: 78px; */
    /* text-align: left; */
}
.sec-1 p {
  color: #4351a0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 15px;
  font-weight: 000;
  font-family: Montserrat;
}
.sec-2 h1 {
  color: white;
  font-size: 29px;
  font-family: Montserrat;
  margin-left: 0rem;
  text-align: center;
  font-weight: 900;
}
#cont1 h4 {
  font-size: 18px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont1 p {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 0rem;
}
#cont2 h4 {
  font-size: 14px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont3 h4 {
  font-size: 21px;
  color: white;
  padding-top: 0rem;
  font-family: Montserrat;
}
#cont3 p {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: white;
  font-family: Montserrat;
  font-weight: 100;
  padding-top: 0rem;
}
.sec-2 button {
  color: #374387;
  width: 95%;
  height: 49px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  border-radius: 20px;
  margin-left: 0rem;
  cursor: pointer;
}
.section3-3 h1 {
  font-size: 24px;
  padding-top: 4rem;
}
.part3 p {
  display: block;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-size: 10px;
  line-height: 29px;
  color: #374387;
  /* position: relative; */
  padding: 3rem 2rem;
}
#move p {
  position: absolute;
  bottom: 3px;
  left: 42px;
  font-size: 16px;
}
.words h4 {
  font-family: Montserrat;
  font-size: 15px;
  color: #374387;
  position: absolute;
  left: 26%;
  bottom: 13%;
}
#img1 img {
  height: 32px;
}
#img2 {
  position: absolute;
  right: 24%;
  bottom: 10%;
  background-color: #374387;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
#img3 {
  position: absolute;
  right: 8%;
  bottom: 10%;
  background-color: #F5F6FF;
  width: 22px;
  height: 23px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.reni-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 1rem;
}
.reni-word p {
  color: #fff;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.reni-word input {
  background: #fff;
  width: 112px;
  height: 37px;
  outline: none;
  border-radius: 10px;
  font-size: 8px;
  padding: 1rem;
  border: 1px solid #fff;
}
.reni-word input::placeholder{
  color: #595959;
  font-family: Montserrat;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.reni-word button {
  color: var(--reni-900, #374387);
  font-family: Montserrat;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 62px;
  height: 37px;
  background: #fff;
  border-radius: 10px;
  outline: none;
  border: 1px solid #fff;
}
.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 4rem 0 0 1rem;
}
.social-2 h1 {
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hide img {
  width: 15px;
}
.quick-1 ul h1 {
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.social-2 a {
  text-decoration: none;
  color: #fff;
  font-family: Montserrat;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.copy p {
  font-family: Montserrat;
  font-size: 12px;
  line-height: normal;
}
.copy {
  padding: 1rem;
  color: #fff;
}
.side-1 {
  width: 100%;
  height: 550px;
  background-color: rgba(113, 129, 221, 0.53);
  border: 16px solid white;
  position: relative;
  border-radius: 61px;
  margin-right: 0rem;
  margin-left: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
}
