@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
:root {
  --white: #FFFFFF;
  --mainBlue: #0D1982;
  --ctaBlue: #B2D2F3;
  --lightBlue: #F9FAFF;
  --mainBrown: #CE9615;
  --lightBrown: #F5EAD0;
  --footerBrown: #FFFBF0;
  --borderBrown: #EDB83E;
  --lighterBrown: #FFFBF0;
  --darkerGrey: #202020;
  --darkGrey: #47474A;
  --lightGrey: #FBFBFF;
  --lighterGrey: #F9FAFF;
  --circleBg: #F9FFFA;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

nav, section, header, footer {
  padding: 0px 128px;
}
@media screen and (max-width: 768px) {
  nav, section, header, footer {
    padding: 0px 48px;
  }
}
@media screen and (max-width: 520px) {
  nav, section, header, footer {
    padding: 0px 24px;
  }
}
@media screen and (max-width: 376px) {
  nav, section, header, footer {
    padding: 24px;
  }
}

section, footer {
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  section, footer {
    padding-top: 40px;
  }
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--mainBlue);
}

p {
  font-weight: 400;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: var(--darkGrey);
  font-size: 16px;
  font-weight: 400;
}

.custom-alert-danger {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
  width: 222px;
}

.custom-alert-success {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
  width: 222px;
}

:root {
  --white: #FFFFFF;
  --mainBlue: #0D1982;
  --ctaBlue: #B2D2F3;
  --lightBlue: #F9FAFF;
  --mainBrown: #CE9615;
  --lightBrown: #F5EAD0;
  --footerBrown: #FFFBF0;
  --borderBrown: #EDB83E;
  --lighterBrown: #FFFBF0;
  --darkerGrey: #202020;
  --darkGrey: #47474A;
  --lightGrey: #FBFBFF;
  --lighterGrey: #F9FAFF;
  --circleBg: #F9FFFA;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

nav, section, header, footer {
  padding: 0px 128px;
}
@media screen and (max-width: 768px) {
  nav, section, header, footer {
    padding: 0px 48px;
  }
}
@media screen and (max-width: 520px) {
  nav, section, header, footer {
    padding: 0px 24px;
  }
}
@media screen and (max-width: 376px) {
  nav, section, header, footer {
    padding: 24px;
  }
}

section, footer {
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  section, footer {
    padding-top: 40px;
  }
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--mainBlue);
}

p {
  font-weight: 400;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: var(--darkGrey);
  font-size: 16px;
  font-weight: 400;
}

.custom-alert-danger {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
  width: 222px;
}

.custom-alert-success {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
  width: 222px;
}

.header {
  position: relative;
  background-color: var(--footerBrown);
  margin-bottom: 380px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media screen and (max-width: 768px) {
  .header {
    margin-bottom: 0px;
  }
}
.header__details--heading p {
  color: var(--mainBrown);
}
.header .form {
  position: absolute;
  bottom: -62%;
  background-color: var(--white);
  border: 1px solid var(--mainBrown);
  padding: 32px 56px;
  border-radius: 36px;
  width: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .header .form {
    position: relative;
    margin-top: 24px;
  }
}
.header .form__fName, .header .form__email, .header .form__pNumber, .header .form__university, .header .form__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.header .form__fName label, .header .form__email label, .header .form__pNumber label, .header .form__university label, .header .form__message label {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .header .form__fName label, .header .form__email label, .header .form__pNumber label, .header .form__university label, .header .form__message label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header .form__fName input, .header .form__email input, .header .form__pNumber input, .header .form__university input, .header .form__message input {
  outline: none;
  padding: 8px 8px;
  border: 0.3px solid var(--borderBrown);
  border-radius: 10px;
}
.header .form__message textarea {
  outline: none;
  padding: 8px 8px;
  border: 0.3px solid var(--borderBrown);
  border-radius: 10px;
  resize: none;
}
.header .form button {
  margin-top: 16px;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  border-radius: 36px;
  background-color: var(--white);
  color: var(--mainBrown);
  border: 1px solid var(--mainBrown);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .form button svg path {
  fill: var(--mainBrown);
  opacity: 0;
}
.header .form button:hover {
  gap: 8px;
  background-color: var(--mainBrown);
  color: var(--white);
}
.header .form button:hover svg path {
  fill: var(--white);
  opacity: 1;
}
.header .inquiryForm {
  bottom: -75%;
}

.inquiryHeader {
  margin-bottom: 470px;
}

.header {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: var(--footerBrown);
  }
}
@media screen and (max-width: 768px) {
  .header__details {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .header__details--heading {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__details--heading p {
    margin-bottom: 16px;
  }
}
.header .imageSection img {
  height: 450px;
  border-radius: 48px;
  border: 1px solid var(--mainBrown);
}
@media screen and (max-width: 520px) {
  .header .imageSection img {
    width: 100%;
    height: auto;
  }
}

.info p {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 520px) {
  .info p {
    text-align: center;
  }
}

.header {
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .header {
    background-color: var(--footerBrown);
  }
}