@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;
}

.aboutServices h4, .mission h4, .aboutServices p, .mission p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.aboutServices__details, .mission__details {
  font-size: 16px;
  line-height: 24px !important;
  padding-top: 24px;
  padding-bottom: 72px;
  text-align: center;
  width: 1020px;
}
@media screen and (max-width: 520px) {
  .aboutServices__details, .mission__details {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .mission h4 {
    text-align: center;
  }
}

.story {
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  background-color: #CE9615;
}
@media screen and (max-width: 375px) {
  .story {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 700px;
  }
}
.story .storyImage {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 375px) {
  .story .storyImage {
    margin: 0 auto;
  }
}
.story .storyImage .asset {
  width: 430px;
  padding: 10px 20px;
  margin-top: -6rem;
  margin-left: 4rem;
}
@media screen and (max-width: 375px) {
  .story .storyImage .asset {
    width: 275px;
    margin-top: -6rem;
    margin: -6rem auto;
    margin-bottom: 0px;
    padding: 0px;
  }
}
@media screen and (max-width: 375px) {
  .story .storyText {
    margin-top: auto;
  }
}
.story p {
  color: #fff;
  width: 420px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .story p {
    width: 100%;
    text-align: center;
  }
}
.story h4 {
  color: #fff;
  margin-top: -4rem;
}
@media screen and (max-width: 375px) {
  .story h4 {
    margin-top: -2rem;
    text-align: center;
  }
}

.values {
  margin: 32px 0;
  margin-bottom: 96px;
}
.values__bigCircle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .values__bigCircle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.values__bigCircle img {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .values__bigCircle img {
    height: 300px;
  }
}
.values__smallCircle {
  position: absolute;
  top: -30%;
  left: -40%;
  padding: 52px;
  border-radius: 100%;
  background-color: var(--circleBg);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .values__smallCircle {
    position: relative;
    top: -80%;
    left: 0%;
    margin: 0 auto;
  }
}
.values__smallCircle .icon img {
  height: 34px;
}
.values__smallCircle .text {
  text-align: center;
  width: 200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.values__smallCircle .text h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.values .accountability {
  top: -30%;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .values .accountability {
    top: -80%;
    left: 0%;
    margin: 0 auto;
  }
}
.values .discipline {
  top: 55% !important;
}
@media screen and (max-width: 768px) {
  .values .discipline {
    top: -80%;
    left: 0%;
    margin: 0 auto;
  }
}
.values .integrity {
  top: 55% !important;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .values .integrity {
    top: -80%;
    left: 0%;
    margin: 0 auto;
  }
}