@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --primary: #284389;
  --secondary: #7295ee;
  --white: #ffffff;
  --grey: #f2f2f2;
  --black: #000000;
  --text-white: #ffffff;
  --text-black: #000000;
  --text-grey: #5c5c5c;
  --btn-not-found: #62acf3;
  --font-16: 16px;
}

body {
  background: var(--white);
}
body .modal-msg.show {
  display: flex;
}
body .modal-msg.show .modal-msg-wrapper {
  transform: scale(1);
}
body .modal-msg {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.329);
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  body .modal-msg {
    padding: 0 30px;
  }
}
body .modal-msg .modal-msg-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
  background: var(--white);
  border-radius: 10px;
  transition: 0.3s;
  transform: scale(0);
}
body .modal-msg .modal-msg-wrapper .modal-msg-content {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-content img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(221, 221, 221, 0.431372549);
  margin-bottom: 20px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-content p {
  line-height: 1.7em;
  color: var(--text-grey);
  font-size: 16px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer {
  text-align: center;
  padding: 0 0 30px 0;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer button {
  padding: 10px 30px;
  border: 0;
  border-radius: 30px;
  background: var(--primary);
  color: var(--text-white);
  cursor: pointer;
  transition: 0.3s;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer button:hover {
  background: var(--secondary);
}
body .floating-social {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  left: 1.5rem;
  top: 10rem;
  z-index: 3;
}
body .floating-social i {
  font-size: 35px;
  color: var(--black);
  transition: 0.3s;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
body .floating-social i:hover {
  background: var(--secondary);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  body .floating-social {
    display: none;
  }
}
body #error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
body #error .not-found {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
}
body #error .not-found svg {
  width: 60%;
  margin: 20px 0;
}
body #error .not-found svg #alien1 {
  animation: upDown 4s infinite ease-in-out;
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
body #error .not-found a {
  display: block;
  width: 100%;
  max-width: 250px;
  text-align: center;
  background: var(--primary);
  color: var(--text-white);
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: var(--font-16);
}
body .g-recaptcha div {
  margin-left: auto;
  margin-right: auto;
}
body .container {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
}
@media screen and (max-width: 998px) {
  body .container {
    max-width: 95%;
  }
}
body .container-md {
  width: 100%;
  max-width: 775px;
  margin: 0 auto;
}
@media screen and (max-width: 998px) {
  body .container-md {
    max-width: 95%;
  }
}
body header {
  background: var(--white);
  position: sticky;
  z-index: 15;
  top: 0;
}
body header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body header nav .social {
  display: none;
}
@media screen and (max-width: 1024px) {
  body header nav .social {
    display: flex;
    column-gap: 25px;
  }
  body header nav .social i {
    color: var(--black);
    font-size: 20px;
  }
  body header nav #burger_menu {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: relative;
    z-index: 3;
  }
  body header nav #burger_menu span {
    height: 3px;
    width: 50px;
    background: var(--primary);
    transition: 0.3s;
  }
  body header nav #burger_menu span.slide-right {
    animation: slideAndHide 0.1s forwards;
  }
  @keyframes slideAndHide {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(160%);
      display: none;
    }
  }
  body header nav #burger_menu.show {
    row-gap: 0;
  }
  body header nav #burger_menu.show span.line:nth-child(1) {
    transform: rotate(50deg);
    margin-bottom: -3px;
  }
  body header nav #burger_menu.show span.line:nth-child(3) {
    transform: rotate(-50deg);
  }
}
body header nav .logo {
  width: 125px;
}
body header nav ul.show {
  transform: translateX(0%);
  opacity: 1;
}
body header nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-between;
  max-width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  body header nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    row-gap: 50px;
    transform: translateX(100%);
    transition: 0.3s;
    opacity: 0;
  }
}
body header nav ul li a {
  color: var(--secondary);
  font-weight: 500;
}
body header nav ul li.active-menu a {
  color: var(--text-black);
}
body .section-1 {
  width: 100%;
  height: 100%;
  max-height: 550px;
  overflow: hidden;
  border-bottom: 10px solid var(--secondary);
}
body .section-1 img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
}
body .section-2 {
  position: relative;
  padding-bottom: 100px;
}
body .section-2 .card-wrapper {
  position: relative;
  width: 100%;
  max-width: 685px;
  margin-left: auto;
  margin-top: -150px;
}
@media screen and (max-width: 1024px) {
  body .section-2 .card-wrapper {
    margin: -150px auto 0;
  }
}
@media screen and (max-width: 768px) {
  body .section-2 .card-wrapper {
    margin-top: -40px;
  }
}
body .section-2 .card-wrapper .card {
  background: var(--grey);
  padding: 60px 52px;
}
body .section-2 .card-wrapper .card h2 {
  font-size: 66px;
  color: var(--primary);
  font-weight: 500;
  line-height: 67px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  body .section-2 .card-wrapper .card h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 45px;
  }
}
body .section-2 .card-wrapper .card .line-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body .section-2 .card-wrapper .card .line-content {
    flex-direction: column;
    row-gap: 20px;
  }
}
body .section-2 .card-wrapper .card .line-content span.line {
  margin-top: 10px;
  width: 112px;
  background: var(--primary);
  height: 3px;
}
body .section-2 .card-wrapper .card .line-content p {
  width: 100%;
  max-width: 425px;
  line-height: 1.7em;
  font-size: var(--font-16);
}
body .section-2 .card-wrapper .button-group {
  display: flex;
  float: right;
}
body .section-2 .card-wrapper .button-group i {
  background: var(--secondary);
  padding: 15px;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}
body .section-2 .card-wrapper .button-group i:hover {
  background: var(--grey);
  color: var(--black);
}
body .section-2 .card-wrapper .button-group a {
  background: var(--primary);
  padding: 15px;
  color: var(--white);
  transition: 0.3s;
}
body .section-2 .card-wrapper .button-group a:hover {
  background: var(--black);
  color: var(--white);
}
body .section-3 {
  background: var(--primary);
  padding: 60px 0 200px 0;
}
body .section-3 h2 {
  font-size: 55px;
  color: var(--text-white);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
body .section-3 p {
  font-size: var(--font-16);
  color: var(--text-white);
  line-height: 1.7em;
}
body .section-3-list {
  position: relative;
}
body .section-3-list .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 6%;
  margin-top: -150px;
}
body .section-3-list .list .item {
  position: relative;
  background: var(--grey);
  width: 100%;
  max-width: 29.33%;
  padding: 35px 33px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  body .section-3-list .list .item {
    max-width: 100%;
  }
}
body .section-3-list .list .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  bottom: -15px;
  left: 8px;
  border: 3px solid var(--grey);
  z-index: 1;
}
body .section-3-list .list .item h2 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: var(--primary);
  line-height: normal;
  font-weight: 500;
  margin-bottom: 30px;
}
body .section-3-list .list .item p {
  position: relative;
  z-index: 1;
  font-size: var(--font-16);
  line-height: 1.7em;
  margin-bottom: 20px;
}
body .section-3-list .list .item a {
  position: relative;
  z-index: 1;
  font-size: var(--font-16);
  color: var(--primary);
  font-weight: 500;
  transition: 0.3s;
}
body .section-3-list .list .item a i {
  font-size: 12px;
}
body .section-3-list .list .item a:hover {
  color: var(--secondary);
}
body .section-4 {
  position: relative;
  background-color: var(--primary);
  padding: 50px 0;
}
body .section-4 .container-fluid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
body .section-4 .container-fluid h2 {
  font-size: 55px;
  font-weight: 500;
  color: var(--text-white);
  text-align: center;
}
body .section-4 .container-fluid .testimonial {
  position: relative;
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .section-4 .container-fluid .testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
body .section-4 .container-fluid .testimonial .slide p {
  text-align: center;
  font-size: 18px;
  padding: 0 40px;
  font-weight: 200;
  line-height: 1.7em;
  color: var(--text-white);
}
body .section-4 .container-fluid .testimonial .slide .fa-quote-left {
  font-size: 30px;
  color: var(--secondary);
}
body .section-4 .container-fluid .testimonial .slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .section-4 .container-fluid .testimonial .slide .details .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}
body .section-4 .container-fluid .testimonial .slide .details .job {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-white);
}
body .section-4 .container-fluid .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
body .section-4 .container-fluid .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
body .section-4 .container-fluid .nav-btn::after,
body .section-4 .container-fluid .nav-btn::before {
  font-size: 20px;
  color: #fff;
}
body .section-4 .container-fluid .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
  height: 15px;
  width: 15px;
}
body .section-4 .container-fluid .swiper-pagination-bullet-active {
  background-color: var(--secondary);
}
@media screen and (max-width: 768px) {
  body .section-4 .container-fluid .slide p {
    padding: 0 20px;
  }
  body .section-4 .container-fluid .nav-btn {
    display: none;
  }
}
body .section-5 {
  position: relative;
  margin-top: 60px;
  padding-bottom: 100px;
}
body .section-5 .card-wrapper {
  position: relative;
  width: 100%;
  margin-left: auto;
}
body .section-5 .card-wrapper .card {
  background: var(--grey);
  padding: 60px 52px;
}
body .section-5 .card-wrapper .card h2 {
  font-size: 66px;
  color: var(--primary);
  font-weight: 500;
  line-height: 67px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  body .section-5 .card-wrapper .card h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 45px;
  }
}
body .section-5 .card-wrapper .card .line-content {
  display: flex;
  column-gap: 40px;
}
@media screen and (max-width: 768px) {
  body .section-5 .card-wrapper .card .line-content {
    flex-direction: column;
    row-gap: 20px;
  }
}
body .section-5 .card-wrapper .card .line-content span.line {
  margin-top: 10px;
  width: 112px;
  background: var(--primary);
  height: 3px;
}
body .section-5 .card-wrapper .card .line-content p {
  width: 100%;
  line-height: 1.7em;
  font-size: var(--font-16);
}
body .section-5 .card-wrapper .button-group {
  display: flex;
  float: right;
}
body .section-5 .card-wrapper .button-group i {
  background: var(--secondary);
  padding: 15px;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}
body .section-5 .card-wrapper .button-group i:hover {
  background: var(--grey);
  color: var(--black);
}
body .section-5 .card-wrapper .button-group a {
  background: var(--primary);
  padding: 15px;
  color: var(--white);
  transition: 0.3s;
}
body .section-5 .card-wrapper .button-group a:hover {
  background: var(--black);
  color: var(--white);
}
body footer {
  background: var(--primary);
  padding-top: 40px;
  padding-bottom: 10px;
}
body footer h2 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--text-white);
  text-align: center;
}
body footer form {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
body footer form .form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
body footer form .form-wrapper ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(199, 199, 199, 0.6784313725);
}
body footer form .form-wrapper :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(199, 199, 199, 0.6784313725);
  opacity: 1;
}
body footer form .form-wrapper ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(199, 199, 199, 0.6784313725);
  opacity: 1;
}
body footer form .form-wrapper :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(199, 199, 199, 0.6784313725);
}
body footer form .form-wrapper ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(199, 199, 199, 0.6784313725);
}
body footer form .form-wrapper ::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(199, 199, 199, 0.6784313725);
}
body footer form .form-wrapper .input-group.w-full {
  width: 100%;
}
body footer form .form-wrapper .input-group {
  width: 49%;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  body footer form .form-wrapper .input-group {
    width: 100%;
  }
}
body footer form .form-wrapper .input-group label {
  color: var(--text-white);
  font-size: 16px;
}
body footer form .form-wrapper .input-group input {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  margin-top: 10px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6156862745);
  color: var(--text-white);
}
@media screen and (max-width: 768px) {
  body footer form .form-wrapper .input-group input {
    margin-bottom: 20px;
  }
}
body footer form .form-wrapper .input-group input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--white);
}
body footer form .form-wrapper .msg-group {
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body footer form .form-wrapper .msg-group {
    margin-top: 10px;
  }
}
body footer form .form-wrapper .msg-group label {
  color: var(--text-white);
  font-size: 16px;
}
body footer form .form-wrapper .msg-group textarea {
  width: 100%;
  margin-top: 10px;
  background: transparent;
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.6156862745);
  color: var(--text-white);
}
body footer form .form-wrapper .msg-group textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--white);
}
body footer form input.submit-btn {
  background: none !important;
  border: none !important;
  color: var(--text-white) !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  padding: 10px 40px !important;
  margin-top: 20px !important;
  font-size: 16px !important;
}
body footer .info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  body footer .info {
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
  }
}
body footer .info p {
  color: var(--text-white);
  font-size: 16px;
}
body footer .info .info-cta span {
  color: var(--text-white);
  font-size: 16px;
}
body footer .info .info-cta a {
  color: var(--text-white);
  font-size: 16px;
}
body footer .copyright {
  position: relative;
  padding: 20px 0;
  text-align: center;
}
body footer .copyright p {
  color: var(--text-white);
  font-size: 12px;
}
body .scroll-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .scroll-top i {
  color: var(--text-white);
  font-size: 24px;
}
body .scroll-top:hover {
  background: var(--secondary);
}
body .banner {
  width: 100%;
  height: 100%;
  max-height: 550px;
  overflow: hidden;
  border-bottom: 10px solid var(--secondary);
}
body .banner img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
}
body .content {
  position: relative;
  padding-bottom: 100px;
}
body .content .card-wrapper {
  position: relative;
  width: 100%;
  max-width: 685px;
  margin-left: auto;
  margin-top: -150px;
}
@media screen and (max-width: 768px) {
  body .content .card-wrapper {
    margin-top: -40px;
  }
}
body .content .card-wrapper .card {
  background: var(--grey);
  padding: 60px 52px;
}
body .content .card-wrapper .card h2 {
  font-size: 66px;
  color: var(--primary);
  font-weight: 500;
  line-height: 67px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  body .content .card-wrapper .card h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 45px;
  }
}
body .content .card-wrapper .card .line-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body .content .card-wrapper .card .line-content {
    flex-direction: column;
    row-gap: 20px;
  }
}
body .content .card-wrapper .card .line-content span.line {
  margin-top: 10px;
  width: 112px;
  background: var(--primary);
  height: 3px;
}
body .content .card-wrapper .card .line-content p {
  width: 100%;
  max-width: 425px;
  line-height: 1.7em;
  font-size: var(--font-16);
}
body .content .card-wrapper .button-group {
  display: flex;
  float: right;
}
body .content .card-wrapper .button-group i {
  background: var(--secondary);
  padding: 15px;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}
body .content .card-wrapper .button-group i:hover {
  background: var(--grey);
  color: var(--black);
}
body .content .card-wrapper .button-group a {
  background: var(--primary);
  padding: 15px;
  color: var(--white);
  transition: 0.3s;
}
body .content .card-wrapper .button-group a:hover {
  background: var(--black);
  color: var(--white);
}
body .get-to-know {
  background: var(--primary);
  padding: 60px 0 200px 0;
}
body .get-to-know h2 {
  font-size: 55px;
  color: var(--text-white);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
body .get-to-know p {
  font-size: var(--font-16);
  color: var(--text-white);
  line-height: 1.7em;
}
body .get-to-know-list {
  position: relative;
}
body .get-to-know-list .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 4%;
  margin-top: -150px;
}
body .get-to-know-list .list .item {
  position: relative;
  background: var(--grey);
  width: 100%;
  max-width: 30.33%;
  margin-bottom: 6%;
  height: 450px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  body .get-to-know-list .list .item {
    height: 500px;
  }
}
body .get-to-know-list .list .item:hover .item-info {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  body .get-to-know-list .list .item {
    max-width: 48%;
  }
}
@media screen and (max-width: 540px) {
  body .get-to-know-list .list .item {
    max-width: 100%;
  }
}
body .get-to-know-list .list .item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media screen and (max-width: 540px) {
  body .get-to-know-list .list .item img {
    height: 500px;
  }
}
body .get-to-know-list .list .item .item-info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  left: 0;
  top: 0;
  z-index: 2;
  transform: translateY(100%);
  transition: 0.3s;
}
body .get-to-know-list .list .item .item-info h2 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: var(--primary);
  line-height: normal;
  font-weight: 500;
}
body .get-to-know-list .list .item .item-info p {
  position: relative;
  z-index: 1;
  font-size: var(--font-16);
  line-height: 1.7em;
  margin-bottom: 50px;
}
body .get-to-know-list .list .item .item-info .social {
  position: absolute;
  bottom: 1rem;
  display: flex;
  column-gap: 10px;
}
body .get-to-know-list .list .item .item-info .social a {
  height: 40px;
  width: 40px;
  border-radius: 4px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
body .get-to-know-list .list .item .item-info .social a i {
  color: var(--text-white);
}
body .get-to-know-list .list .item .item-info .social a:hover {
  background: var(--secondary);
  color: var(--text-white);
}
body .choose-list {
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  body .choose-list {
    padding-top: 0;
  }
}
body .choose-list .item {
  padding: 10px 0;
  margin-bottom: 30px;
}
body .choose-list .item h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 15px;
}
body .choose-list .item P {
  font-size: 16px;
  line-height: 1.7em;
}
body .choose-list .item P strong {
  font-size: 18px;
  font-weight: 600;
}
body .aoe-description {
  position: relative;
  padding-bottom: 90px;
}
body .aoe-description p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.7em;
  margin-bottom: 40px;
}
body .aoe-description .eoe-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
body .aoe-description .eoe-list h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
}
body .aoe-description .eoe-list a {
  text-decoration: underline;
}
body .img-group {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
body .img-group img {
  width: 100%;
  max-width: 20%;
}
@media screen and (max-width: 768px) {
  body .img-group img {
    max-width: 100%;
  }
}
body .opportunity {
  position: relative;
  padding-bottom: 40px;
}
body .opportunity a {
  width: 200px;
  height: 30px;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
}
body .opportunity .opportunity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body .opportunity .opportunity-list {
    flex-direction: column;
  }
}
body .opportunity .opportunity-list .item {
  width: 100%;
  max-width: 31.33%;
  border: 1px solid rgb(233, 231, 231);
  margin-bottom: 2%;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .opportunity .opportunity-list .item {
    max-width: 100%;
  }
}
body .opportunity .opportunity-list .item i {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
}
body .opportunity .opportunity-list .item p {
  font-size: 14px;
  margin-bottom: 20px;
}
body .opportunity .opportunity-list .item a {
  font-size: 12px;
  background: var(--secondary);
  color: var(--text-white);
  padding: 5px 20px;
  border-radius: 30px;
  transition: 0.3s;
}
body .opportunity .opportunity-list .item a:hover {
  background: var(--primary);
}
body .service-post-banner {
  position: relative;
  background: var(--primary);
  height: 200px;
}
body .service-post-content {
  background: var(--grey);
}
body .service-post-content .service-post-title {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--white);
  padding: 50px 40px;
  margin-top: -90px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  body .service-post-content .service-post-title {
    margin-bottom: 30px;
  }
}
body .service-post-content .service-post-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  bottom: -15px;
  left: 8px;
  border: 3px solid var(--white);
  z-index: 1;
}
body .service-post-content .service-post-title h1 {
  font-size: 66px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1em;
  position: relative;
  z-index: 2;
}
body .service-post-content .service-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  body .service-post-content .service-row {
    flex-direction: column;
  }
}
body .service-post-content .service-row span.line {
  width: 100%;
  max-width: 14%;
  background: var(--primary);
  height: 3px;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  body .service-post-content .service-row span.line {
    margin: 30px 0;
  }
}
body .service-post-content .service-row .service-description {
  width: 100%;
  max-width: 84%;
}
@media screen and (max-width: 768px) {
  body .service-post-content .service-row .service-description {
    max-width: 100%;
  }
}
body .service-post-content .service-row .service-description p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
}
body .service-post-content .service-row .service-description .s-paragraph {
  margin: 30px 0;
}
body .service-post-content .service-row .service-description .s-paragraph h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
  color: var(--primary);
}
body .service-post-content .service-row .service-description a {
  font-size: 16px;
}
body .service-post-content .service-row .service-description a i {
  font-size: 13px;
}

/*# sourceMappingURL=style.css.map */
