@charset "UTF-8";
@keyframes static-text {
  0% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes typing-animation {
  50% {
    left: 100%;
  }
  80% {
    left: 100%;
  }
}
html {
  scroll-behavior: smooth;
}
html body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
html body section {
  position: relative;
  scroll-margin-top: 84px;
}
html body section:first-of-type {
  height: 100vh;
}
html body section:not(:first-of-type) {
  padding: 48px 0;
}
html body section:nth-child(odd) {
  background: #D6E8F4;
  color: #0D2840;
}
html body section:nth-child(even) {
  background: #fff;
  color: #0D2840;
}
html body section:last-of-type {
  background: #0D2840;
  color: #fff;
}
html body section .section-heading {
  font-size: 32px;
  text-align: center;
  margin-bottom: 48px;
}
html body section .section-heading::before, html body section .section-heading::after {
  display: inline-block;
  content: "";
  border-top: 4.8px solid #0D2840;
  width: 32px;
  margin: 0 1rem;
  transform: translateY(-8px);
}
html body section .reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}
html body section .reveal.active {
  transform: translateY(0);
  opacity: 1;
}
html body ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
html body #main-menu {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 2;
  background: #0D2840;
  padding: 16px 0;
  width: 100%;
  box-shadow: 0 1.6px;
}
html body #main-menu #logo-container {
  align-self: center;
  padding-left: 64px;
}
html body #main-menu #menu-links {
  list-style-type: none;
  text-align: right;
  padding-right: 64px;
}
html body #main-menu #menu-links li {
  display: inline-block;
  padding: 16px;
}
html body #main-menu #menu-links li:nth-child(2n) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
html body #main-menu #menu-links li a {
  text-decoration: none;
  color: #fff;
  -webkit-text-decoration: underline 0.15em rgba(255, 255, 255, 0);
          text-decoration: underline 0.15em rgba(255, 255, 255, 0);
  text-underline-offset: 5px;
  transition: text-decoration-color 300ms;
}
html body #main-menu #menu-links li a:hover {
  text-decoration-color: #fff;
}
html body #banner {
  background-image: url("../img/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
html body #banner #home-heading {
  text-align: center;
  height: 100%;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
}
html body #banner #home-heading #text-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html body #banner #home-heading #text-button h1 {
  font-size: 24px;
  background: #fff;
  padding: 11.2px;
  border: 2px solid #0D2840;
  border-radius: 8px;
  display: inline-flex;
  margin-bottom: 16px;
}
html body #banner #home-heading #text-button h1 #dynamic-text-wrap {
  position: relative;
  overflow: hidden;
  line-height: 30px;
  height: 30px;
  margin-left: 4.8px;
  margin-right: 16px;
}
html body #banner #home-heading #text-button h1 #dynamic-text-wrap:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-left: 2px solid #0D2840;
  background: #fff;
  left: 0;
  animation: static-text 2s, typing-animation 2.5s steps(16) infinite;
}
html body #banner #home-heading #text-button h1 a {
  align-self: center;
}
html body #banner #home-heading #text-button #heading-button {
  display: block;
  margin: 0 auto;
  width: 64px;
  background: #fff;
  padding: 11.2px;
  border: 2px solid #0D2840;
  border-radius: 8px;
  color: #0D2840;
  text-decoration: none;
  font-size: 19.2px;
  transition: all 300ms;
}
html body #banner #home-heading #text-button #heading-button:hover {
  background-color: #0D2840;
  color: #fff;
  border: 2px solid #fff;
}
html body #about .flex, html body #portfolio, html body #contact #contact-info {
  padding: 0 48px;
}
html body #about .flex {
  display: flex;
  justify-content: center;
  gap: 80px;
}
html body #about .flex .left-side {
  width: 311px;
  align-self: center;
}
html body #about .flex .left-side img {
  border: 3.2px solid #0D2840;
  border-radius: 10%;
}
html body #about .flex .right-side {
  width: 68%;
  align-self: center;
  background: #fff;
  color: #0D2840;
  padding: 16px;
  border: 3.2px solid #0D2840;
  border-radius: 20px;
}
html body #about .flex .right-side .about-list-icons, html body #about .flex .right-side .about-list-cms {
  display: flex;
  margin-left: 20px;
  flex-wrap: wrap;
}
html body #about .flex .right-side .about-list-icons {
  gap: 20px;
}
html body #about .flex .right-side .about-list-icons li img {
  display: block;
  margin: 10px auto;
}
html body #about .flex .right-side .about-list-icons li span {
  display: block;
  text-align: center;
}
html body #about .flex .right-side .about-list-cms {
  list-style-type: none;
  gap: 10px;
  justify-content: space-between;
}
html body #about .flex .right-side .about-list-cms li::before {
  content: "✓";
  margin-right: 5px;
}
html body #portfolio {
  padding-bottom: 48px;
}
html body #portfolio #portfolio-description {
  text-align: center;
}
html body #portfolio #portfolio-gallery {
  width: 90%;
  position: relative;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
}
html body #portfolio #portfolio-gallery #portfolio-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
  background: #0D2840;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .heading-link-portfolio a {
  cursor: pointer;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper {
  box-shadow: none;
  border: none;
  background: none;
  margin-bottom: 0;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport ul, html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport a {
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport ul:hover, html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport a:hover {
  opacity: 0.7;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport ul img, html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .bx-wrapper .bx-viewport a img {
  margin: 0 auto;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description {
  text-align: center;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description h3 a {
  color: #fff;
  text-decoration: none;
  -webkit-text-decoration: underline 0.1em rgba(255, 255, 255, 0);
          text-decoration: underline 0.1em rgba(255, 255, 255, 0);
  text-underline-offset: 5px;
  transition: text-decoration-color 300ms;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description h3 a:hover {
  text-decoration-color: #fff;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description .heading-link-portfolio {
  margin: 0;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description p {
  font-size: 16px;
  margin: 8px 0;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description .effects li {
  padding: 4.8px 0;
}
html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item .portfolio-item-description .effects li ul li {
  padding-bottom: 0;
}
html body #portfolio #prev, html body #portfolio #next {
  position: absolute;
  top: 70%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
  border: none;
  cursor: pointer;
  transform: translateY(-70%);
}
html body #portfolio #prev {
  left: 0;
  background: url("../inc/bxslider-4-master/dist/images/controls.png") no-repeat 0 -32px;
}
html body #portfolio #next {
  right: 0;
  background: url("../inc/bxslider-4-master/dist/images/controls.png") no-repeat -43px -32px;
}
html body #contact .section-heading::before, html body #contact .section-heading::after {
  border-top: 4.8px solid #fff;
}
html body #contact #contact-info {
  display: flex;
  justify-content: center;
}
html body #contact #contact-info > div {
  width: 40%;
  align-self: center;
}
html body #contact #contact-info #contact-links li {
  padding: 8px 0;
}
html body #contact #contact-info #contact-links li a {
  font-size: 19.2px;
  text-decoration: none;
  color: #fff;
  -webkit-text-decoration: underline 0.15em rgba(255, 255, 255, 0);
          text-decoration: underline 0.15em rgba(255, 255, 255, 0);
  text-underline-offset: 5px;
  transition: text-decoration-color 300ms;
}
html body #contact #contact-info #contact-links li a:hover {
  text-decoration-color: #fff;
}
html body #contact #contact-info #contact-links li a img {
  margin-bottom: 32px;
}
html body #contact #contact-info #contact-links li img {
  display: inline-block;
  margin-right: 9.6px;
  color: #fff;
}
html body #contact #contact-info #contact-form-wrapper {
  margin-top: 32px;
}
html body #contact #contact-info #contact-form-wrapper #contact-form input, html body #contact #contact-info #contact-form-wrapper #contact-form textarea, html body #contact #contact-info #contact-form-wrapper #contact-form #submit-button {
  padding: 16px;
  border: 2px solid #0D2840;
  border-radius: 8px;
  box-sizing: border-box;
}
html body #contact #contact-info #contact-form-wrapper #contact-form .form-item input, html body #contact #contact-info #contact-form-wrapper #contact-form .form-item textarea {
  width: 100%;
  margin: 4.8px 0;
  box-shadow: 6.4px 6.4px;
}
html body #contact #contact-info #contact-form-wrapper #contact-form .form-item input::-moz-placeholder, html body #contact #contact-info #contact-form-wrapper #contact-form .form-item textarea::-moz-placeholder {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
html body #contact #contact-info #contact-form-wrapper #contact-form .form-item input::placeholder, html body #contact #contact-info #contact-form-wrapper #contact-form .form-item textarea::placeholder {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper {
  display: flex;
  flex-wrap: wrap;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #captcha-refresh {
  align-self: center;
  margin-right: 8px;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #previewCaptcha {
  flex: 1;
  margin-right: 8px;
  padding: 16px;
  border: 2px solid #fff;
  border-radius: 8px;
  letter-spacing: 8px;
  text-align: center;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #captcha-form {
  flex: 1;
  box-shadow: 6.4px 6.4px;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #captcha-form::-moz-placeholder {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #captcha-form::placeholder {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #submit-button {
  background: #fff;
  display: block;
  margin: 16px auto 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 1.6px 1.6px;
  transition: all 300ms;
}
html body #contact #contact-info #contact-form-wrapper #contact-form #submit-button:hover {
  background-color: #0D2840;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 1.6px 1.6px #fff;
}
html body #contact #contact-info #contact-form-wrapper #contact-form .successClass, html body #contact #contact-info #contact-form-wrapper #contact-form .successClass:hover {
  background-color: #D6E8F4 !important;
  color: #0D2840 !important;
  border: 2px solid #fff !important;
  box-shadow: 1.6px 1.6px #fff !important;
}
html body #contact #contact-info #contact-form-wrapper #contact-form .errorClass, html body #contact #contact-info #contact-form-wrapper #contact-form .errorClass:hover {
  background-color: #3F5570 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  box-shadow: 1.6px 1.6px #3F5570 !important;
}
html body #lightboxOverlay {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
}
html body #lightbox {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%);
}
html body #lightbox .lb-dataContainer {
  background: #0D2840;
}
html body #lightbox .lb-dataContainer .lb-data {
  padding: 19.2px;
}
html body #lightbox .lb-dataContainer .lb-data .lb-caption {
  font-size: 16px;
  font-weight: 500;
}
html body #lightbox .lb-dataContainer .lb-data .lb-caption .graph-disclaimer {
  font-style: italic;
  font-size: 12.8px;
}
html body #lightbox .lb-dataContainer .lb-data .lb-number {
  margin-top: 8px;
}
@media screen and (max-width: 992px) {
  html body #banner #home-heading #text-button {
    width: 61%;
  }
  html body #banner #home-heading #text-button h1 {
    justify-content: space-between;
  }
  html body #about .flex {
    flex-direction: column;
  }
  html body #about .flex .left-side, html body #about .flex .right-side {
    width: 100%;
  }
  html body #about .flex .left-side img {
    display: block;
    margin: 0 auto;
  }
  html body #about .flex .right-side .about-list {
    flex-direction: column;
    justify-content: center;
  }
  html body #about .flex .right-side .about-list li {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 767px) {
  html body section .section-heading {
    font-size: 24px;
  }
  html body #about .flex, html body #portfolio, html body #contact #contact-info {
    padding-left: 16px;
    padding-right: 16px;
  }
  html body #about .about-list-icons {
    justify-content: space-evenly;
  }
  html body #about .about-list-icons li {
    flex: 0 0 20.5%;
  }
  html body #about .about-list-cms li {
    flex: 0 0 47.5%;
  }
  html body #banner #home-heading #text-button h1 {
    font-size: 17.6px;
    line-height: 17.6px;
  }
  html body #banner #home-heading #text-button #heading-button {
    font-size: 14.4px;
  }
  html body #main-menu {
    flex-direction: column;
  }
  html body #main-menu #logo-container, html body #main-menu #menu-links {
    padding: 0;
    text-align: center;
  }
  html body #main-menu #logo-container li a, html body #main-menu #menu-links li a {
    font-size: 14.4px;
  }
  html body #portfolio {
    scroll-margin-top: 134px;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider {
    margin-left: 16px;
    overflow-x: scroll;
    touch-action: pan-x;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider::-webkit-scrollbar {
    height: 8px;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider::-webkit-scrollbar-track {
    background: #D6E8F4;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider::-webkit-scrollbar-thumb {
    background-color: #3F5570;
  }
  html body #portfolio #next, html body #portfolio #prev {
    display: none;
  }
  html body #contact {
    scroll-margin-top: 134px;
  }
  html body #contact #contact-info {
    flex-direction: column;
    text-align: center;
  }
  html body #contact #contact-info #contact-links, html body #contact #contact-info #contact-form-wrapper {
    width: 100%;
  }
  html body #contact #contact-info #contact-links li a {
    font-size: 14.4px;
  }
  html body #contact #contact-info #contact-form-wrapper #contact-form .form-item input::-moz-placeholder, html body #contact #contact-info #contact-form-wrapper #contact-form .form-item textarea::-moz-placeholder {
    font-size: 14.4px;
  }
  html body #contact #contact-info #contact-form-wrapper #contact-form .form-item input::placeholder, html body #contact #contact-info #contact-form-wrapper #contact-form .form-item textarea::placeholder {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 576px) {
  html body #banner #home-heading #text-button {
    width: 85%;
  }
  html body #banner #home-heading #text-button h1 {
    font-size: 15.2px;
  }
  html body #banner #home-heading #text-button #heading-button {
    font-size: 12.8px;
  }
}
@media screen and (max-width: 412px) {
  html body section .section-heading {
    font-size: 20px;
  }
  html body section .section-heading::before, html body section .section-heading::after {
    display: none;
  }
  html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #previewCaptcha {
    margin-right: 0;
  }
}
@media screen and (max-width: 375px) {
  html body #banner #home-heading #text-button h1, html body #banner #home-heading #text-button #heading-button {
    font-size: 11.68px;
  }
  html body #about .flex .left-side img {
    max-width: 100%;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  html body #contact-links .logo {
    width: 100%;
  }
}
@media screen and (min-width: 300px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 81%;
  }
}
@media screen and (min-width: 325px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 82%;
  }
}
@media screen and (min-width: 350px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 83.6%;
  }
}
@media screen and (min-width: 375px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 84.8%;
  }
}
@media screen and (min-width: 400px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 85.9%;
  }
}
@media screen and (min-width: 425px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 86.9%;
  }
}
@media screen and (min-width: 450px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 87.5%;
  }
}
@media screen and (min-width: 475px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 88.1%;
  }
}
@media screen and (min-width: 500px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 89%;
  }
}
@media screen and (min-width: 525px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 89.7%;
  }
}
@media screen and (min-width: 550px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 90.5%;
  }
}
@media screen and (min-width: 575px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 91%;
  }
}
@media screen and (min-width: 600px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 91.5%;
  }
}
@media screen and (min-width: 625px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 92%;
  }
}
@media screen and (min-width: 650px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 92.5%;
  }
}
@media screen and (min-width: 675px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 92.85%;
  }
}
@media screen and (min-width: 700px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 93.75%;
  }
}
@media screen and (min-width: 768px) {
  html body #about .about-list-cms li {
    flex: 0 0 19.5%;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 43.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html body #about .about-list-icons li {
    flex: 0 0 13.5%;
  }
  html body #contact #contact-info #contact-form-wrapper #contact-form #captcha-form-wrapper #previewCaptcha {
    margin-right: 0;
  }
}
@media screen and (min-width: 900px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 27.5%;
  }
}
@media screen and (min-width: 1000px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 28%;
  }
}
@media screen and (min-width: 1100px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 28.5%;
  }
}
@media screen and (min-width: 1200px) {
  html body #about .about-list-icons li {
    flex: 0 0 13.5%;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 28.9%;
  }
}
@media screen and (min-width: 1300px) {
  html body #about .about-list-icons li {
    flex: 0 0 5.5%;
  }
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 29.4%;
  }
}
@media screen and (min-width: 1400px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 29.55%;
  }
}
@media screen and (min-width: 1500px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 30%;
  }
}
@media screen and (min-width: 1700px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 30.35%;
  }
}
@media screen and (min-width: 1800px) {
  html body #portfolio #portfolio-gallery #portfolio-slider .portfolio-item {
    flex: 1 0 30.65%;
  }
}/*# sourceMappingURL=main.css.map */