@import url('https://fonts.googleapis.com/css2?family=Anta&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Anta', sans-serif;
  --navy: hsl(242, 43%, 14%);
  --navy-75: hsla(242, 43%, 14%, 0.75);
  --navy-50: hsla(242, 43%, 14%, 0.5);
  --pacific: hsl(207, 54%, 57%);
  --baby-blue: hsl(207, 69%, 94%);
  --clear-gray: hsl(0, 0%, 93%);
  --clear-gray-50: hsla(0, 0%, 93%, 0.5);
  --full-white: hsl(0, 0%, 100%);
  --full-white-75: hsla(0, 0%, 100%, 0.75);
  --full-white-50: hsla(0, 0%, 100%, 0.5);
  --full-white-25: hsla(0, 0%, 100%, 0.25);
  --full-black: hsl(0, 0%, 0%);
}

::selection {
  color: var(--full-white);
  background-color: var(--navy);
}

/* Globals */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0px;
  word-spacing: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.5rem;
}

a {
  color: var(--pacific);
  transition: all 0.2s linear;
}

/* Utilities */
.padding-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-2-5 {
  margin-bottom: 2.5rem;
}

/*-- Overrides --*/
.content-wrap p {
  line-height: 1.4;
}

h1 > span:not(.nocolor):not(.badge),
.h1 > span:not(.nocolor):not(.badge),
h2 > span:not(.nocolor):not(.badge),
.h2 > span:not(.nocolor):not(.badge),
h3 > span:not(.nocolor):not(.badge),
.h3 > span:not(.nocolor):not(.badge),
h4 > span:not(.nocolor):not(.badge),
.h4 > span:not(.nocolor):not(.badge),
h5 > span:not(.nocolor):not(.badge),
.h5 > span:not(.nocolor):not(.badge),
h6 > span:not(.nocolor):not(.badge),
.h6 > span:not(.nocolor):not(.badge) {
  color: var(--navy);
}

.section {
  background-color: var(--full-white);
}

/* Preloader / Loading Spinner */
.page-transition-wrap > .css3-spinner {
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--navy);
}
@keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
.infinite.animated.pulse {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/*-- Buttons --*/
.dark-button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--full-white);
  background-color: var(--navy);
  text-align: center;
  padding: 0.6rem 1.25rem;
}

.dark-button:hover {
  color: var(--full-white);
  background-color: var(--pacific);
}

.light-button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--full-white);
  background-color: transparent;
  text-align: center;
  border: 1px solid var(--full-white);
  padding: 0.6rem 1.25rem;
}

.light-button:hover {
  color: var(--full-white);
  background-color: var(--pacific);
  border: 1px solid var(--pacific);
}

/*-- Inner Container --*/
.inner-container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

/* WhatsApp button */
#whatsappButton {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 12px;
  background-color: #25d366;
  color: var(--full-white);
  border-radius: 50px;
  text-align: center;
  font-size: 1.875rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
  transition: all 0.2s ease-in-out;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whatsappButton:hover {
  background-color: #21c15d;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

#whatsappButton i {
  font-size: 1.875rem;
}

/* Go to top */
#gotoTop.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.stretched #gotoTop {
  bottom: 40px;
  right: 12px;
}

#gotoTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  opacity: 0;
  background-color: var(--navy);
  color: var(--full-white);
  font-size: 2rem;
  pointer-events: auto;
  border-radius: 0.25rem;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#gotoTop:hover {
  background-color: var(--pacific);
}

/* reCAPTCHA badge */
.grecaptcha-badge {
  position: fixed;
  bottom: 100px !important;
  opacity: 0.5;
}

/* Header */
#header #logo img {
  padding: 1rem 0;
}

#header ul li.menu-item .menu-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

#header ul li.menu-item.current > .menu-link {
  color: var(--pacific);
}

#header ul li.menu-item .menu-link:hover {
  color: var(--pacific);
}

#header ul.sub-menu-container li.menu-item .menu-link {
  color: var(--navy);
}

#header ul.sub-menu-container li.menu-item .menu-link:hover {
  color: var(--pacific);
}

#header .cnvs-hamburger-box {
  width: 2rem;
  height: 2rem;
}

#header .cnvs-hamburger-inner,
#header .cnvs-hamburger-inner:before,
#header .cnvs-hamburger-inner:after {
  width: 1.5rem;
  background-color: var(--navy);
}

#header
  .primary-menu-trigger:not(.primary-menu-trigger-active)
  .cnvs-hamburger-inner:before {
  top: 0.5rem;
}

#header
  .primary-menu-trigger:not(.primary-menu-trigger-active)
  .cnvs-hamburger-inner:after {
  bottom: 0.5rem;
}

.device-down-lg
  #header
  .header-misc
  + .primary-menu-trigger
  + .primary-menu
  .menu-container {
  overflow-y: auto;
}

.device-down-lg ul.menu-container .menu-item:not(:first-child) {
  border-top: 2px solid var(--clear-gray);
}

/* Slider */
.rev_slider_wrapper {
  z-index: 1;
}

.revo-slider-emphasis-text {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: 'Poppins', sans-serif;
  padding: 15px 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.revo-slider-desc-text {
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  width: 650px;
  text-align: center;
  line-height: 1.5;
}

.revo-slider-caps-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
}
.tp-video-play-button {
  display: none !important;
}

.tp-caption {
  white-space: nowrap;
}

#slider .hero-content h1 {
  font-size: 1.25rem !important;
  line-height: 1.2 !important;
  color: var(--full-white);
  margin-bottom: 1rem !important;
}

#slider .hero-content p {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  color: var(--full-white);
  margin-bottom: 2.5rem !important;
}

#slider .hero-content .hero-button {
  font-size: 1rem !important;
  padding: 0.8rem 1.5rem !important;
  text-align: center !important;
  display: inline-block;
  transition: all 0.2s ease-in-out !important;
}

/* Philosophy */
#philosophy .section {
  background: linear-gradient(
    180deg,
    #fff 4rem,
    hsl(207, 69%, 94%) 4rem,
    hsl(207, 69%, 94%) 100%
  );
}

/* Our purpose */
#our-purpose .ins-categories .nav-link.active {
  background-color: var(--pacific);
  color: var(--full-white);
}

#our-purpose .ins-categories .nav-link {
  font-size: 1.25rem;
  background-color: var(--clear-gray);
  color: var(--navy);
  padding: 1.25rem;
}

#our-purpose .ins-categories .nav-link i {
  margin-right: 1rem;
}

#our-purpose .ins-categories .nav-link .tab-desc {
  font-size: 1rem;
  color: var(--full-white);
  padding-left: 2rem;
}

#our-purpose .nav-pills .nav-link {
  color: var(--navy);
}

#our-purpose .nav-pills .nav-link.active {
  color: var(--full-white);
  background-color: var(--pacific);
}

#our-purpose .boot-tabs {
  margin-bottom: 1.875rem !important;
}

/* Services */
#services.section {
  background-color: var(--baby-blue);
}

#services .services-grid .feature-box {
  background-color: var(--full-white);
  border: 1px solid var(--clear-gray);
}

#services .feature-box:hover .fbox-content * {
  color: var(--full-white);
}

#services .fbox-content p {
  color: var(--navy);
}

#services .fbox-content .hover-button {
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}

#services .fbox-content .hover-button:hover {
  text-decoration: underline !important;
}

#services .feature-box .fbox-icon {
  width: calc(3rem + var(--cnvs-featured-box-padding-x) * 2);
  height: 3rem;
}

#services .feature-box .fbox-icon i {
  color: var(--pacific);
  background-color: var(--clear-gray-50);
  font-size: 1.5rem;
  line-height: 3rem;
}

#services .feature-box:hover .fbox-icon i {
  background-color: var(--full-white);
}

#services .portfolio-item .bg-overlay-content {
  padding: 2.5rem;
}

#services .portfolio-item .bg-overlay-bg {
  background-image: linear-gradient(
    hsla(242, 43%, 14%, 0.4) 0%,
    hsla(242, 43%, 14%, 1) 100%
  );
  background-color: transparent;
}

#services .owl-nav button {
  opacity: 1;
  height: 40px;
  line-height: 35px;
  font-size: 25px;
  margin-top: -20px;
  background-color: var(--full-white);
  color: var(--pacific);
  border: 1px solid var(--full-white);
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
}

#services .owl-nav button:hover {
  background-color: var(--pacific) !important;
  color: var(--full-white) !important;
  border: 1px solid var(--pacific);
}

#services .owl-nav button.owl-prev {
  left: -4%;
  border-radius: var(--cnvs-owl-full-nav-border-radius) 0 0
    var(--cnvs-owl-full-nav-border-radius);
}

#services .owl-nav button.owl-next {
  right: -4%;
  border-radius: 0 var(--cnvs-owl-full-nav-border-radius)
    var(--cnvs-owl-full-nav-border-radius) 0;
}

/* Get in touch */
.contact-information a {
  color: var(--navy);
}

.contact-information a:hover {
  color: var(--navy-75);
}

#get-in-touch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 570px;
  background:
    linear-gradient(rgba(22, 21, 53, 0.6), rgba(22, 21, 53, 0.6)),
    url('../img/block-5/bqs-back-form.jpg') center/cover no-repeat;
  z-index: 0;
}

.contact-information .social-icon {
  border: 1px solid var(--navy);
}

.contact-information .social-icon i {
  color: var(--navy);
}

.contact-information .social-icon:hover i {
  color: var(--full-white);
  background-color: var(--navy);
}

#get-in-touch label {
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

#get-in-touch input.form-control,
#get-in-touch select.form-select {
  color: var(--navy);
  height: 3.125rem;
}

#get-in-touch .form-control,
#get-in-touch .form-select {
  border: solid 1px hsl(15, 2%, 68%);
}

#get-in-touch .form-control.error,
#get-in-touch .form-select.error {
  border: solid 1px hsl(0, 100%, 60%);
}

#get-in-touch .form-control:focus,
#get-in-touch .form-select:focus {
  box-shadow: none;
  border: solid 1px var(--navy);
}

#get-in-touch .form-control::placeholder {
  color: var(--navy-50);
}

.invalid-feedback {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  color: hsl(0, 100%, 60%);
  text-align: left;
  margin-top: 0.5rem;
}

.form-process::before {
  border-radius: 0.25rem;
}

.form-process .css3-spinner > div {
  background-color: var(--navy);
}

/* Footer */
#footer {
  background-color: var(--navy);
  border-top: 0;
}

#footer * {
  font-size: 1rem;
  color: var(--full-white-50);
}

#copyrights {
  background-color: var(--navy) !important;
}

#footer a:hover {
  color: var(--full-white);
}

#footer .logo-footer {
  width: 150px;
}

.footer-divider {
  width: 85%;
  height: 1px;
  background: var(--full-white-25);
  margin: 2rem auto;
}

/* Modals */
.modal {
  padding-right: 0 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(30px);
}

.modal-dialog {
  max-width: 1100px;
  display: flex;
  align-items: center;
}

.modal-content {
  background-color: var(--full-white);
  height: auto;
  padding: 3em;
}

.modal-header {
  border-bottom: 1px solid var(--navy);
}

.modal-header.container.ps-0,
.modal-header.container.\!ps-0 {
  padding-left: 0 !important;
}

.close-modal {
  right: 16px;
  top: 16px;
  position: fixed;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
  pointer-events: auto;
  z-index: 9999;
  border: none;
  background-color: var(--full-white);
  padding: 0.5rem;
  border-radius: 50%;
  height: 37px;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--pacific);
  border: 1px solid var(--pacific);
}

.modal-footer {
  border-top: 1px solid var(--navy);
}

.modal-title h3 {
  margin-bottom: 0;
}

/* Media query */
@media (min-width: 576px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 540px;
  }

  /*-- Slider --*/
  #slider .hero-content h1 {
    font-size: 1.5rem !important;
  }

  /*-- Footer --*/
  .footer-divider {
    width: 100%;
  }
}

@media (min-width: 768px) {
  /*-- Globals --*/
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 3rem;
  }

  /*-- Utilities --*/
  .inner-container {
    max-width: 720px;
  }

  .padding-block {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  /*-- Header --*/
  #header #logo img {
    padding: 1.6rem 0;
  }

  /*-- Slider --*/
  #slider .hero-content h1 {
    font-size: 2rem !important;
  }

  #slider .hero-content p {
    font-size: 1.25rem !important;
  }
}

@media (min-width: 992px) {
  /*-- Utilities --*/
  .rounded-1-until-lg {
    border-radius: 0.25rem;
  }

  .inner-container {
    max-width: 960px;
  }

  /*-- Header --*/
  #header #header-wrap > .container {
    background-color: var(--full-white);
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  }

  #header #header-wrap {
    background-color: transparent;
  }

  #header #logo img {
    padding: 1rem 0;
  }

  /* Services */
  #services .services-grid .feature-box {
    padding: 2.5rem 1.5rem;
  }

  /* Get in touch */
  .contact-information a {
    color: var(--full-white);
  }

  .contact-information a:hover {
    color: var(--full-white-75);
  }

  .invalid-feedback {
    text-align: right;
  }

  /*-- Modals --*/
  .close-modal {
    right: 32px;
  }
}

@media (min-width: 1024px) {
  /*-- Slider --*/
  #slider .hero-content h1 {
    font-size: 3rem !important;
  }
}

@media (min-width: 1200px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 1320px;
  }
}

@media (max-width: 1199.9px) {
  /*-- Header --*/
  .header-misc .button {
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 991.9px) {
  /*-- Header --*/
  #header #header-wrap {
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  }

  #header-wrap + .header-wrap-clone {
    height: auto;
  }

  /*-- Services --*/
  #services .feature-box .fbox-content * {
    color: var(--full-white);
  }

  #services .fbox-content p {
    color: var(--full-white);
  }

  #services .feature-box .fbox-icon i {
    background-color: var(--full-white);
  }
}

@media (max-width: 767.9px) {
  /*-- Utilities --*/
  .h2-mobile {
    font-size: 2rem;
  }

  /*-- Header --*/
  #header #logo img {
    height: 75px;
  }

  /* Philosophy */
  #philosophy .section {
    margin-top: 3rem;
  }
}
