/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans", sans-serif;
  --heading-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FDB304; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1F71B4; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #0062A4; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --shading-color: 67,70,87;
  --invert-color: #ffffff;
  --invert-color-light: rgba( 255, 255, 255, 0.15);
  --grey-surface-color: rgba(67, 70, 86, .08);
  --body-text-color: rgba(0, 0, 0, 0.75);
  --image-layer-color: rgba(31, 113, 180, 0.4);
  --separator-color: rgba(0, 0, 0, .1);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-background-color: #F2F5FC;
  --nav-color: #1F71B4;  /* The default color of the main navmenu links */
  --nav-hover-color: #0062A4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1F71B4; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FDB304; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
 
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
ul {
  list-style-type: none;
  
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.mt-2 {
  margin-top: 2rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.img-fluid {
  max-width: 100%;
}
.container {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
  max-width: 132rem;
}

.with-shadow {
  box-shadow: 15px 20px 35px rgba(0,0,0,.20);
  -webkit-box-shadow: 15px 20px 35px rgba(0,0,0,.20);
  -moz-box-shadow: 15px 20px 35px rgba(0,0,0,.20);
}


@media (min-width: 992px) {
  .container-var {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 132rem;
  }
}
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main {
  font-size: 1.4em;
  line-height: 2.4rem;
  font-weight: 500;
  color: var(--body-text-color);
  flex: 1;
}

.justify-text {
  text-align: justify;
}
.read-more:link, .read-more:visited {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 500;
}
.read-more i {
  font-size: 1rem;
  margin-left: 0.4rem;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.section-title {
  position: relative;
  border-top: 4px solid var(--grey-surface-color);
  position: relative;
  margin-bottom: 3.4rem;
}
.section-title:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  height: 3px;
  width: 7rem;
  background-color: var(--accent-color);
}
.section-title h2 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 1.6rem;
}
.section-title .read-more {
  position: absolute;
  right: 0;
  top: 2rem;
}
.page-header {
  background-repeat: no-repeat;
  height: 15rem;
  background-size: cover;
  text-align: center;
  color: var(--invert-color);
  background-position: center center;
  box-shadow: inset 0 0 0 1000px rgba(0,98,164,.6);
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5); */
  
}
.breadcrumbs {
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 3.8rem;
}
.breadcrumbs a:link, .breadcrumbs a:visited {
  color: var(--accent-color);
}
.post-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 1rem;
  color: var(--invert-color);
  text-transform: uppercase;
}
.def-button:link, .def-button:visited {
  color: var(--default-color);
  background-color: var(--accent-color);
  padding: 1rem 3rem;
  text-transform: uppercase;
  font-family: var(--default-font);
  font-weight: 600;
  border-radius: 5px;
  font-size: 1.4rem;
  display: inline-block;
  border: 1px solid var(--accent-color);
}
.def-button:hover, .def-button:active {
  background-color: var(--invert-color);
  color: var(--accent-color);
  border: 1px solid rgba(253,179, 4, .3);
}
.sm-btn {
  padding: .5rem 1.5rem;
  font-size: 1.2rem;
}
@media (min-width: 567px) {
  .post-title {
    font-size: 2.6rem;
  }
}  
@media (min-width: 992px) {
  .container-var {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 132rem;
  }
  .text-l-right {
    text-align: right;
  }
  
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--invert-color);
  background-color: var(--surface-color);
}

.top-wrapper {
  background-color: var(--contrast-color);
  font-size: 1.2rem;
  height: 3rem;
  display: flex;
  align-items: center;
  
}
.top a:link, .top a:visited {
  color: var(--invert-color);
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-links {
  display: flex;
  gap: 2rem;
}
.social-links a {
  color: var(--invert-color);
}
.logo-wrapper {
  background-color: var(--surface-color);
}
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo a {
  color: var(--invert-color);
  font-size: 1.4rem;
  
}
.custom-logo-link {
  line-height: 0;
}
.custom-logo-link img {
  max-width: 100%;
}
.top .contact-links a i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}
.top .contact-links {
  margin-left: 1rem;
  display: flex;
  gap: 2rem;
  letter-spacing: .1rem;
}
.top .contact-links .phone span, .top .contact-links .email span {
  display: none;
}
.logo-img {
  padding: 0;
  margin: 0;
  height: auto;
  width: 50rem;
  max-width: 100%;
}
.mobile-tools {
  height: 4rem;
}
@media (min-width: 576px) {
  .logo-img {
    /* width: 50rem; */
  }
  .mobile-tools {
    height: 6.5rem;
  }
}
@media (min-width: 350px) {
  .top .contact-links .phone span, .top .contact-links .email span {
    display: inline;
  }
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
.menu-wrapper {
  background-color: var(--nav-background-color);
  position: relative;
  z-index: 8;
  
}
.mainmenu {
  display: block;
}
.navmenu a:link, .navmenu a:visited, .navmenu i {
  color: var(--nav-color);
}
.navmenu ul {
  margin-bottom: 0;
}
.navmenu li {
  
  margin-left: 1rem;
  margin-right: 1rem;
}
.navmenu li a {
  font-size: 1.4rem;
  font-family: var(--heading-font);
  font-weight: 400;
  position: relative;
  
  padding: 0; 
  line-height: 3rem;
  color: var(--invert-color) !important;
}
.navmenu a:hover, .navmenu i:hover {
  color: var(--accent-color) !important;

}
.mobile-nav-toggle {
  color: var(--nav-color);
  display: block;
  font-size: 2rem;
  cursor: pointer;
}
.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}
.search-icon:link, .search-icon:visited {
  color: var(--nav-color);
  font-size: 2.2rem;
  display: flex;
  align-items:start;
  margin-left: auto;
}
.navmenu {
  display: block;
  
}
.navmenu >ul {
  padding-left: 0;
  display: none;
  background-color: var(--nav-dropdown-background-color);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
}

.mobile-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mobile-nav-active {
  /* overflow: hidden; */
}

.navmenu .sub-menu {
  display: none;
  padding-left: 1rem;
}
.navmenu ul li.active > .sub-menu {
  display: block;
}
.mobile-nav-active .navmenu>ul {
  display: block;
}
@media (min-width: 992px) {
  .menu-wrapper {
    height: 6.5rem;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .mobile-tools {
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }
  .mainmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 1;
  }

  .navmenu {
    align-items: center;
    text-align: center;
  }
  .navmenu ul {
    margin-top: 0;
    margin-bottom: 0;
    background-color: var(--nav-background-color);
  }
  .navmenu >ul {
    padding-left: 0;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  } 
  .navmenu li a {
    border-right: 1px solid var(--nav-color);
    line-height: 6.5rem;
    padding: 0 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--nav-color) !important;
 
  }
  .navmenu li:first-child a {
    border-left: 1px solid var(--nav-color);
  }
  .navmenu a:hover, .navmenu i:hover {
    color: var(--contrast-color) !important;
  }
  .navmenu ul {
    display: flex !important;
    text-align: center;
    
  }
  .navmenu .menu-item-has-children:hover  > .sub-menu {
    opacity: 1;
    /* top: 100%; */
    visibility: visible;
  }
  .navmenu .sub-menu {
    display: flex;
    visibility: hidden;
    background-color: var(--nav-dropdown-background-color);
    flex-direction: column;
    gap: 1.6rem;
    opacity: 0;
    position: absolute;
    padding: 2rem 0;
    top: 6.5rem;
    z-index: 99;


  }
  .navmenu .sub-menu li a {
    color: var(--invert-color) !important;
    font-weight: 400;
    border: 0;
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
  .navmenu .sub-menu li a:hover {
    color: var(--accent-color) !important;
  }

  
  .mobile-nav-toggle {
    display: none;
  }
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/


.home-projects {
  height: 35rem;
  margin-bottom: 4rem;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--invert-color) !important;
}

.layer {
  max-width: 60rem;
  padding: 1rem 2rem;
  padding-bottom: 4rem;
  background-color: rgba( var(--shading-color), 0.75);
  color: var(--invert-color);
  text-align: center;
  
}
.layer h3 {
  font-weight: 700;  
  color: var(--invert-color);
  font-size: 2rem;
}
.layer p {
  padding-bottom: .8rem;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.6rem;
  display: none;
}
.layer .view-more {
  color: var(--default-color);
  background-color: var(--accent-color);
  padding: 1rem 3rem;
  text-transform: uppercase;
  font-family: var(--default-font);
  font-weight: 400;
  border-radius: 5px;
  font-size: 1.4rem;
}
.layer .view-more:hover, .layer .view-more:active {
  background-color: var(--invert-color);
  color: var(--accent-color);
}

@media (min-width: 576px) {
  .home-projects {
    height: 60rem;
  }
  .layer p {
    display: block;
  }
  .layer h3 {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
# Front Page
--------------------------------------------------------------*/
.about img {
  max-width: 100%;
}
.about .columns-2 {
  display: flex;
  gap: 2rem;
  flex: 0 0 auto;
  flex-direction: column;
}
/* .columns-2 .col-1  {
  width: 50%;
}
.columns-2 .col-2 {
  width: 50%;
} */

@media (min-width: 992px) {
  .about .columns-2 .col-1 {
    order: 2;
  }
  .about .columns-2 .col-2 {
    order: 1;
  }
  .about .columns-2 {
    flex-direction: row;
    gap: 4rem;
  }
  .about img {
    max-width: 50rem;
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page .page-header {
  background-image: url(../img/about_head.png);
}
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page .page-header {
  background-image: url(../img/contact_head.png);
}

.contact-page .row {
  display: flex;
  flex-wrap: wrap;
  
}


.contact-page .info a:link, .contact-page .info a:visited {
  color: var(--body-text-color);
}
.contact-page .info {
  margin-left: 0rem;
}
.contact-page .info i {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  margin-top: .4rem;
  font-size: 2rem;
  color: var(--accent-color);
}
.contact-page .info .title {
  margin-top: 0;
  margin-bottom: .6rem;
  font-weight: 700;
  font-size: 1.6rem;
}
.contact-page .info  p {
  margin-left: 4rem;
}
.contact-page .col-address, .contact-page .col-form {
  width: 100%;
}
.contact-page .col-form {
  border-top: 4px solid var(--accent-color);
  padding-top: 2rem;
}

@media (min-width: 567px) {
  .contact-page .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
  .contact-page .col-address {
    flex: 0 0 auto;
    width: 50%;
    
  }
  .contact-page .col-form {
    flex: 0 0 auto;
    width: 50%;
    border-top: 0;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .contact-page .col-address {
    width: 41.66666667%;
   
  }
  .contact-page .col-form {
    width: 58.33333333%;
    
  }
}
/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/
.services .page-header {
  background-image: url(../img/services_head.png);
}
.services .entry-title {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 1.6rem;
  font-weight: 700;
}
.services .entry-title a:link, .services .entry-title a:visited  {
  color: var(--default-color);
}
.empty-img {
  height: 30rem;
  width: 18.2rem;
  max-height: auto;
  background-color: rgba(67, 70, 86, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.empty-img i {
  color: rgba(67, 70, 86, .30);;
  font-size: 5rem;
}

.services .service {
  
  text-align: center;
  
}
.service-pop {
  padding: 3rem;
  line-height: 2rem;
  font-size: 1.4rem;
  text-align: center;
}
.pop-title {
  font-size: 1.8rem;
}
.pop-close {
  text-align: center;
  margin-top: 2rem;
}
.services .filters {
  padding-left: 0; 
  margin-left: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 3rem;
}
.services .filters li {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  opacity: .5;
  padding-bottom: 0.5rem;
  cursor: pointer;
  letter-spacing: -.8px;
}
.services .filter-active   {
  opacity: 1 !important;
  border-bottom: 3px solid var(--accent-color);
}


.list {
  display: flex;
  flex-wrap: wrap;
  
}

.list > * {
  --bs-gutter-x: 2.5rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
.list article {
  margin-bottom: 3rem;
  flex: 0 0 auto;
  width: 46%;
  overflow: hidden;
  
}

@media (min-width: 567px) {
  .list article {
    width: 33.333333%;
  }
  .services .filters li {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .list article {
    width: 25%;
    
  }
}
/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/
.projects .page-header {
  background-image: url(../img/projects_head.png);
}
.projects .entry-title {
  margin-top: -4px;
  margin-bottom: 0;
  padding: 1rem;
  background-color: var(--grey-surface-color);

  color: var(--default-color);
  font-size: 1.4rem;
  font-weight: 700;
}
.projects .entry-title a:link, .projects .entry-title a:visited  {
  color: var(--default-color);
}

.projects .filters {
  padding-left: 0; 
  margin-left: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 2rem;
}
.projects .filters li {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  cursor: pointer;
  display: inline-block;
  padding: 12px 18px 14px 18px;
  line-height: 1;
  
  transition: all ease-in-out 0.3s;
  background: var(--invert-color);
  border-radius: 4px;
}

.projects .filter-active, .projects .filters li:hover  {
  color: var(--invert-color);
  background-color: var(--contrast-color) !important;
}


.projects ul {
  margin: 0;
  padding-left: 0;
}
.projects .list .entry-content {
  padding: 1rem;
  padding-bottom: 2rem;
  margin-top: .2rem;
  background-color: var(--grey-surface-color);
}
.projects .fld-list li span {
  font-weight: 600;
}
.project-details {
  width: 100%;
}
.project-details .details {
  background-color: var(--grey-surface-color);
  padding: 3rem;
}
.project-details .detail-flds {
  font-size: 1.4rem;
  
}
.detail-flds li {
  border-top: 1px solid var(--separator-color);
  padding: 1rem 0;
}
.detail-flds label {
  width: 12rem;
  display: block;
}
.detail-flds li:first-child {
  border-top: 0;
}
.detail-flds li span {
  font-weight: 700;
}
.project-content {
  margin: 2rem 0;
}
.project-details .photo {
  text-align: center;
}

.project-scope ul li {
  padding: .5rem 0; 
  padding-left: 0.5rem;
}
.project-scope ul li:before {
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
  color: var(--accent-color);
  display: inline-block;
  margin-right: 1rem;
  font-size: 2rem;
}
.project-paging {
  margin-top: 4rem;
  border-top: 4px solid var(--grey-surface-color);
  padding-top: 1rem;

}
.nav-title {
  color: var(--body-text-color);
  font-weight: 600;
  font-size: 1.6rem;
}

@media (min-width: 360px) {
  .detail-flds label {
    display: inline-block;
  }
}
@media (min-width: 567px) {
  
  .project-scope ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
  .project-paging .nav-links {
    display: flex;
  }
}
@media (min-width: 992px) {
  
  .project-details {
    display: flex;
    gap: 2rem;
    width: 100%;
  }
  .project-details .photo {
    order: 2;
  }
  .project-details .details {
    order: 1;
  }
  .project-details .details {
    width: 50%;
  }
}
/*--------------------------------------------------------------
# Equipment
--------------------------------------------------------------*/
.grid-table {
  
}
.equipments .page-header {
  background-image: url(../img/equipment_head.png);
}
.equipments .cat-header {

  padding: 1rem 0;
  color: var(--invert-color);
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--surface-color);
  margin-bottom: 0.2rem;
}
.equipments .cat-header .ref {
  padding-left: 2rem;
}
.equipments .cat-header .desc {
  display: none;
}
.equipments .cat-header .quantity {
  display: none;
}
.equipment {
  
  padding: .8rem 0;
  border-bottom: 1px solid var(--separator-color);
  color: var(--default-color);
}
.equipment .ref {
  color: var(--accent-color);
  padding-left: 2rem;
}
.equipment .desc, .equipment .quantity {
  padding-left: 2rem;
}
.equipment .qty {
  color: var(--body-text-color);
}
.equipments .cat-item {
  padding: 0.8em 0;
  background-color: var(--separator-color);
  font-weight: 800;

}
.equipments .cat-item .ref,  .equipments .cat-item .desc  {
  padding-left: 2rem;
}

@media (min-width: 567px) {
  .equipment .qty {
    display: none;
  }
  .grid-table {
    display: grid;
    grid-template-columns: 20% 60% 20% ;
  }
  .equipments .cat-header .desc {
    display: block;
  }
  .equipments .cat-header .quantity {
    display: block;
  }
  .equipments .cat-item .desc {
    padding-left: 0;
  }
  .equipment .desc, .equipment .quantity {
    padding-left: 0;
  }
}
/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.search .page-header, .error-404 .page-header {
  background: none;
  box-shadow: none;
  margin-top: 4rem;
  height: auto;
}
.search .page-content, .error-404 .page-content {
  text-align: center;
  margin-bottom: 4rem;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.search article {
  border-bottom: 1px solid var(--separator-color);
}
.search .entry-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0;
}
.search .entry-header h2 a:link, .search .entry-header h2 a:visited {
  color: var(--body-text-color);
}
.search .entry-summary {
  margin-top: 0;
}

.search-form .search-field {
  font-size: 1.4rem;
  border: 1px solid #ededed;
  outline: none;
  padding: 1rem;
  border-radius: 0;
  max-width: 100%;
}
.search-form .search-submit i {
  font-size: 2rem;
  opacity: .7;
}
.search-form .search-submit {
  border: 0;
  background: none;
  cursor: pointer;
}
.search .pagination {
  margin-top: 1rem;
}
.search .nav-links {
  text-align: center;
}
.search .nav-links a:link, .search .nav-links a:visited {
  color: var(--accent-color);
}
.search .nav-links .page-numbers {
  border-right: 1px solid var(--separator-color);
  padding-right: 0.5rem;
}
.search .nav-links .page-numbers:last-child {
  border-right: 0;
}
.search-pop .search-form .search-field {
  width: calc(100% - 50px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  background-color: var(--surface-color);
  
  margin-top: 2rem;
  color: var(--invert-color);
  font-weight: 200;
  line-height: 1.6;
  font-size: 1.3rem;
}
.site-footer h3 {
  color: var(--invert-color);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
  margin-bottom: .8rem;
}
.site-footer ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.site-footer ul li {
  font-family: var(--default-font);
 
}
.site-footer p {
  margin-top: 0;
  margin-bottom: 0;
}
.site-footer li a:link, .site-footer li a:visited {
  color: var(--invert-color) !important;
}
.site-footer li a i {
  margin-right: 0.5rem;
}

.footer-wrap {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.footer-about {
  margin-bottom: 1rem;
  
}
.footer-logo {
  text-align: center;
}
.footer-navigation {
  margin-bottom: 1rem;
  
}
.footer-contact {
  
}
.footer-contact .contact-links {
  
}
.footer-contact .address {
  display: flex;
  gap: .5rem;
  
  
} 

.footer-contact .address i {
  margin-top: 0.2rem;
}

.footer-contact .address p {
  margin-top: 0;
}
.footer-bottom {
  background-color: var(--contrast-color);
  font-size: 1.2rem;
  border-top: 1px solid var(--invert-color-light);
  
}
.footer-bottom p {
  padding: .5rem 0;
}
.footer-bottom .social-links {
  justify-content: center;
}
.has-bg {
  padding-left: 1rem;
  background-color: #4086BF;
  
}
@media (min-width: 576px) {
  .footer-logo {
    text-align: left;
  }
 
  .footer-bottom .social-links {
    justify-content: start;
  }
  .footer-contact .contact-cols {
    display: flex;
    
    align-items: start;
    gap: 2rem;
  }
  .footer-bottom div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .footer-wrap>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .has-bg {
    padding-left: 0;
    background-color: transparent;
  }
  .footer-about {
    max-width: 40rem;
    display: flex;
    gap: 0.5rem;

  }
  .footer-navigation ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
  
  .footer-about, .footer-navigation {
    margin-bottom: 0rem;
  }
  
 
}