/* Load custom fonts */
@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
    font-family: 'Gilroy', sans-serif;
    color: white;
    background: #fff url(../assets/images/background-vector.jpg);
    height: auto;
    border-top: 30px solid #29dfc6;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    /* overflow: hidden; */
    min-height: 100vh;
}
body::before {
    content: "";
    background: #ffffff8c;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.landing-page {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../assets/images/vector-arrow.svg);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    min-height: 90vh;
}
.inner-page {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
/* Container centers everything */
.container {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}
header {
    position: absolute;
    top: 50px;
    width: 100%;
    left: 0px;
    text-align: left;
    padding: 0 5%;
    z-index: 1;
}
header.subpage-header {
    position: static;
    padding: 50px 5% 0;
}
/* Logo */
.logo {
  width: 300px;
}

/* Buttons */
.button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.btn {
    display: inline-block;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(180deg, #482e87 0%, #2c29ae 100%);
    text-decoration: none;
    border-radius: 8px;
    min-width: 320px;
    position: relative;
    text-align: left;
    box-shadow: 0px 4px 10px 0px #00000061;
}
.btn:after {
    content: "";
    background: url(../assets/images/arrow-icon.svg);
    position: absolute;
    right: 10px;
    width: 50px;
    height: 30px;
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
}
.form-control .btn:after {
    content: "";
    background: url(../assets/images/arrow-icon.svg);
    position: absolute;
    right: 10px;
    width: 50px;
    height: 40px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
}
.btn:hover {
  background: #482e87;
  color: white;
}
a.goback-link i {
    width: 40px;
    display: inline-block;
}
.go-back {
    float: right;
}
.go-back a{
  text-decoration: none;
}
.go-back a:hover{
  opacity: 0.6;
}
a.goback-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}
.go-back  strong {
    color: #361f82;
    font-weight: 400;
    font-size: 20px;
}
.go-back {
    float: right;
    display: flex;
    align-items: center;
    gap: 25px;
}
main.form-container h2 {
    color: #361f82;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 50px;
}
/* Responsive */


._cUP1np9gMvFQrcPftuf.OGcBAyJGBej5Gnyi9hGA.xahN8AEzyAvQtVj17TPv._Y8HCTxgNkwxXcG_DCXx {
    background: #fff !important;
}
body.gmem4bt.b1g49gfi.tax84oi.c1v45mk4 div {
    background: #fff;
}
/* Iframe container */
.iframe-container {
    width: 1060px;
    margin-top: 0;
}
.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact form */
.form-container {
    max-width: 800px;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: relative;
}
.contact-form input, .contact-form textarea {
    padding: 12px 30px;
    font-size: 1rem;
    border: 0px;
    border-radius: 30px;
    font-family: 'Gilroy', sans-serif;
    border-bottom: 0px;
    height: 55px;
    outline: none;
}
.contact-form textarea {
  resize: none;
  height: 100px;
  border: 0px;
}

.contact-form button {
  align-self: center;
  cursor: pointer;
}



.col-md-6 {
    width: 50%;
    padding: 0 15px;
    float: left;
}
.col-md-12 {
    width: 100%;
    padding: 0 15px;
    float: left;
}
.form-control{
  margin: 0 0 40px;
  position: relative;
}
.form-control.input-text:after {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -1px;
    right: -1px;
    bottom: 0px;
    background: linear-gradient(to bottom, #676767, white);
    border-radius: 30px;
    z-index: -1;
    height: 55px;
}
.form-control.text-area:after {
     content: '';
    position: absolute;
    top: -1.5px;
    left: -1px;
    right: -1px;
    bottom: 0px;
    background: linear-gradient(to bottom, #676767, white);
    border-radius: 30px;
    z-index: -1;
    height: 150px;
}
.form-control.text-area:after {
    height: 150px;
    border-radius: 15px;
}
.form-control input {
    width: 100%;
        background: linear-gradient(180deg, #e2e7ff 0%, #fff 100%);
          box-shadow: 0px 11px 10px -10px #00000030;
}
.form-control textarea {
    width: 100%;
    background: linear-gradient(180deg, #fff 0%, #e2e7ff 100%);
    border-radius: 15px;
    padding: 20px 25px;
    height: 150px;
    box-shadow: 0px 11px 10px -10px #00000030;
}
main.form-container button.btn {
    padding: 9px 70px 9px 40px;
    min-width: auto;
    outline: none;
    border: 0px;
    float: right;
    border-radius: 15px;
    position: relative;
    right: -200px;
    margin-right: 0;
    margin-top: 50px;
    font-size: 19px;
}


div[class^="lmtWIHO_gkbTeeyuvoJC"] {
    background-color: white !important;
}
header.subpage-header .logo {
    width: 235px;
}
header.contact-header .logo {
    width: 235px;
}
section.inner-page.contact-page {
    align-items: flex-start;
    padding-top: 40px;
}
header.subpage-header:after {
    content: "";
    display: block;
    clear: both;
}



.popup-message h2 {
    margin: 0px 0 30px !important;
}
.popup-message {
    background: #fff;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 800px;
    text-align: center;
    font-family: 'Gilroy', Arial, sans-serif;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    z-index: 9999;
    transform: translate(-50%, -50%);
    width: 800px;
    /* border: 5px solid red; */
    flex-wrap: wrap;
}
div#error-message .popup-message {
    border: 1px solid #86003C;
    box-shadow: 0px 7px 10px 0px #86003C;
}
.popup-message button {
    margin-top: 25px;
    background: #29F3C6;
    color: #000;
    border: none;
    padding: 14px 50px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Gilroy', Arial, sans-serif;
    font-size: 16px;
}

#success-message .popup-message{
    border: 1px solid #29F3C6;
    box-shadow: 0px 7px 10px 0px #29F3C6
}
div#error-message, #success-message {
    position: fixed;
    background: #000000c4;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
}
#success-message .popup-message h2 {
   color: #29F3C6;
}
.success-popup h2 {
  color: #361F82;
}

.error-popup h2 {
  color: #FF0000;
}

.success-popup p {
  color: #005664;
}

.error-popup p {
  color: #FF0000;
}

button {
  margin-top: 25px;
  background: #29F3C6;
  color: #361F82;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Gilroy', Arial, sans-serif;
}

button:hover {
  background: #24d0b0;
}



@media (max-width: 1200px) {
main.form-container button.btn {
    padding: 9px 70px 9px 40px;
    min-width: auto;
    outline: none;
    border: 0px;
    float: right;
    border-radius: 15px;
    position: relative;
    right: 0;
    margin-right: 0;
    margin-top: 0;
    font-size: 19px;
}

}



@media (max-width: 768px) {
  .iframe-container {
    width: 100%;
    margin-top: 0;
    padding: 0 25px;
}
  .form-container {
    max-width: 800px;
    margin: 0;
    padding: 20px 30px;
    text-align: center;
}
  header {
    position: absolute;
    top: 20px;
    width: 100%;
    left: 0px;
    text-align: center;
    padding: 0px 3%;
    z-index: 1;
}
header .log-image {
    display: inline-block;
}
  .logo {
    width: 170px !important;
    margin-bottom: 40px;
  }
  .go-back  strong {
    color: #361f82;
    font-weight: 400;
    font-size: 17px;
}
a.logo-image {
    float: left;
}
 .btn {
    font-size: 1.2rem;
    padding: 15px 25px;
    min-width: 270px;
}
  .col-md-6 {
    width: 100%;
    padding: 0 15px;
    float: left;
}
body {
    height: auto;
    overflow: auto;
}
section.inner-page {
    padding-top: 0;
    min-height: 100vh;
}
main.form-container h2 {
    color: #361f82;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 50px;
}
a.goback-link i {
    width: 28px;
    display: inline-block;
}
a.goback-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
}

.landing-page {
    height: 100vh;
}




header.subpage-header {
    text-align: left;
}
.subpage-header a.logo-image .logo {
    width: 150px;
}
main.form-container button.btn {
    padding: 7px 70px 7px 40px;
    min-width: auto;
    outline: none;
    border: 0px;
    float: none;
    border-radius: 15px;
    position: relative;
    right: 0;
    margin-right: 0;
    margin-top: 20px;
}
.form-control .btn:after {
    content: "";
    background: url(../assets/images/arrow-icon.svg);
    position: absolute;
    right: 10px;
    width: 50px;
    height: 36px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
}
}


@media (min-height: 1100px) {
.inner-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
}
@media (max-height: 785px) {
 .iframe-container {
    width: 1000px;
    margin-top: -70px;
    margin-right: -40px;
}
    main.form-container h2 {
    color: #361f82;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 30px;
}
   header.subpage-header {
    position: static;
    padding: 30px 5% 0;
} 
    section.inner-page.contact-page {
    align-items: flex-start;
    padding-top: 0px;
}
    .form-control textarea {
    width: 100%;
    background: linear-gradient(180deg, #fff 0%, #e2e7ff 100%);
    border-radius: 15px;
    padding: 20px 25px;
    height: 100px;
    box-shadow: 0px 11px 10px -10px #00000030;
}
   main.form-container button.btn {
    padding: 9px 70px 9px 40px;
    min-width: auto;
    outline: none;
    border: 0px;
    float: right;
    border-radius: 15px;
    position: relative;
    right: -200px;
    margin-right: 0;
    margin-top: 0;
    font-size: 19px;
} 
 .form-control.text-area:after {
    height: 100px;
    border-radius: 15px;
}   
    
    
}