@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
body {
  font-family: 'Lato', sans-serif;
  color: #040000;
}
/*
  **********************************************************************************************
    reset box-sizing,allowing for inheritence.  (not required for sticky footer, but I do this regardless)
 **********************************************************************************************
*/
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/*
 **********************************************************************************************
    sticky footer
 **********************************************************************************************
*/
html,
body {
  height: 100%; /* Set to 100% of the container */
}

body > footer {
  top: 100vh; /* pushes the footer outside the visible area */
  position: sticky; /* pulls it back up and sticks it to the bottom edge */
}

.wrapper-body {
  min-height: 100px; /* need to set a value to override the theme.css's calc value */
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-family: 'Merriweather Sans', sans-serif;
}

.heading_container p {
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: 'Merriweather Sans', sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/*header section*/
.hero_area {
  position: relative;
  background-color: #d1e3ff;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .header_top {
  padding: 15px 0;
  background-color: #000000;
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
}

.header_section .header_top .contact_nav a i {
  color: #ff8a1d;
}

.header_section .header_bottom {
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
}

.navbar-brand span {
  color: #0355cc;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 25px;
  color: #000000;
  text-align: center;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #0355cc;
}

.custom_nav-container .form-inline .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .form-inline .nav_search-btn:hover {
  color: #0355cc;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #ffffff;
  margin-right: 25px;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #ff8a1d;
}
/*header section*/
.hero_area {
    position: relative;
    background-color: #d1e3ff;
    background-size: cover;
    background-position: bottom;
    background-image: url("/HeaderBG.png");
  }
  
  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  
  .header_section .header_top {
    padding: 15px 0;
    background-color: #000000;
  }
  
  .header_section .header_top .contact_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .header_section .header_top .contact_nav a {
    color: #ffffff;
  }
  
  .header_section .header_top .contact_nav a i {
    color: #ff8a1d;
  }
  
  .header_section .header_bottom {
    padding: 30px 0;
  }
  
  .navbar-brand {
    padding: 0;
    margin: 0;
    color: #000000;
    font-weight: bold;
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar-brand span {
    color: #0355cc;
    text-transform: uppercase;
  }
  
  .custom_nav-container {
    padding: 0;
  }
  
  .custom_nav-container .navbar-nav {
    margin-left: auto;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 25px;
    color: #000000;
    text-align: center;
  }
  
  .custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: #0355cc;
  }
  
  .custom_nav-container .form-inline .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    color: #000000;
  }
  
  .custom_nav-container .form-inline .nav_search-btn:hover {
    color: #0355cc;
  }
  
  .custom_nav-container .navbar-toggler {
    outline: none;
  }
  
  .custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #000000;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    top: -10px;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .custom_nav-container .navbar-toggler span::after {
    top: 10px;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 0;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: 0;
    margin-bottom: -4px;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
    display: none;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin: 0;
    margin-top: -4px;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
  .custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
  .custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
    -webkit-transform: none;
            transform: none;
  }
  
  .quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .quote_btn-container a {
    color: #ffffff;
    margin-right: 25px;
    text-transform: uppercase;
  }
  
  .quote_btn-container a span {
    margin-left: 5px;
  }
  
  .quote_btn-container a:hover {
    color: #ff8a1d;
  }
  
  /*end header section*/
  /* slider section */
  .slider_section {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-size: cover;
    background-position: bottom;
  }
  .slider_section .container {
    text-align: center !important;
    margin: auto;
    width: 50%;
  }

  .slider_section .row {
    text-align: center !important;
    margin: auto;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section #customCarousel1 {
    width: 100%;
    position: unset;
  }
  
  .slider_section .detail-box {
    /* text-align: center; */
    /* padding-top: 80px; */
    padding-bottom: 90px;
    /* margin-bottom: 55px; */
  }
  
  .slider_section .detail-box h1 {
    font-weight: bold;
    /* margin-bottom: 25px; */
    color: #f8f8f8;
  }
  .slider_section .detail-box h2 {
    color: #f8f8f8;
  }
  
  .slider_section .detail-box p {
    color: #fff !important;
    font-size: 28px;
  }
  
  .slider_section .detail-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #ff8a1d;
    border: 1px solid #ff8a1d;
    border-radius: 5px;
    color: #ffffff;
    margin-top: 15px;
  }
  
  .slider_section .detail-box a:hover {
    background-color: transparent;
    color: #ff8a1d;
  }
  
  .slider_section .img-box img {
    width: 100%;
  }
  
  
.feature_section {
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
}

.feature_section .feature_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature_section .feature_container .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  text-align: center;
  margin: 0 -10px;
  padding: 20px 15px;
  background-color: #ffffff;
  border-radius: 5px;
  color: #083F5E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}
.feature_section .feature_container .box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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; */
  /* text-align: center; */
  margin: 0 3px;
  padding: 25px 25px;
  background-color: #ffffff;
  border-radius: 5px;
  color: #083F5E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}
.feature_section .feature_container .box .img-box {
  width: 80px;
  height: 50px;
}
.feature_section .feature_container .box-content .img-box {
  width: 80px;
  height: 50px;
}
.feature_section .feature_container .box .img-box svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  fill: #083F5E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.feature_section .feature_container .box-content .img-box svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  fill: #083F5E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.feature_section .feature_container .box .img-box svg path {
  fill: #083F5E;
}
.feature_section .feature_container .box-content .img-box svg path {
  fill: #083F5E;
}
.feature_section .feature_container .box .name {
  margin-top: 20px;
  /* text-transform: uppercase; */
  font-family: 'Merriweather Sans', sans-serif;
  margin-bottom: 0;
}
.feature_section .feature_container .box-content .name {
  margin-top: 20px;
  /* text-transform: uppercase; */
  font-family: 'Merriweather Sans', sans-serif;
  margin-bottom: 0;
}
.feature_section .feature_container .box:hover, .feature_section .feature_container .box.active {
  background-color: #104264;
  color: #ffffff;
}
/* .feature_section .feature_container .box-content:hover, .feature_section .feature_container .box-content.active {
  background-color: #104264;
  color: #ffffff;
} */
.feature_section .feature_container .box:hover .img-box svg, .feature_section .feature_container .box.active .img-box svg {
  fill: #ffffff;
}
.feature_section .feature_container .box-content:hover .img-box svg, .feature_section .feature_container .box-content.active .img-box svg {
  fill: #ffffff;
}
.feature_section .feature_container .box:hover .img-box svg path, .feature_section .feature_container .box.active .img-box svg path {
  fill: #ffffff;
}
.feature_section .feature_container .box-content:hover .img-box svg path, .feature_section .feature_container .box-content.active .img-box svg path {
  fill: #ffffff;
}


/* Responsive button */
@media (max-width: 1300px) {}

@media (max-width: 1120px) {}

@media (max-width: 992px) {
    .hero_area {
        height: auto;
    }

    .header_section .main_nav {
        flex: 1;
    }

    #navbarSupportedContent {
        margin-top: 15px;
    }

    .slider_section {
        padding-top: 45px;
    }

    .feature_section .feature_container .box {
        padding: 30px 15px;
    }

    .feature_section .feature_container .box .img-box {
        width: 75px;
    }
    .feature_section .feature_container .box-content {
      padding: 30px 15px;
  }

  .feature_section .feature_container .box-content .img-box {
      width: 75px;
  }

    .feature_section {
        transform: none;
        padding: 90px 0;
    }


}

@media (max-width: 767px) {
    .layout_padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .layout_padding-top {
        padding-top: 90px;
    }

    .layout_padding-bottom {
        padding-bottom: 90px;
    }

    .slider_section .detail-box {
        padding-bottom: 45px;
    }

    .feature_section .feature_container {
        flex-direction: column;
    }

    .feature_section .feature_container .box {
        padding: 30px 15px;
    }

    .feature_section .feature_container .box:not(:nth-last-child(1)) {
        margin-bottom: 15px;
    }
    .feature_section .feature_container .box-content {
        padding: 30px 15px;
    }

    .feature_section .feature_container .box-content:not(:nth-last-child(1)) {
        margin-bottom: 15px;
    }
    .about_section .detail-box {
        margin-bottom: 45px;
    }


    .professional_section .img-box {
        display: none;
    }

    .contact_section form {
        margin-bottom: 45px;
    }

    .info_section .info_items::before {
        width: 1px;
        height: 90%;
        top: 25px;
    }

}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 400px) {}

@media (max-width: 360px) {}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }

}


.navbar li a{
  color: white !important;
  }

/* .text-mec-art {
  color: #104265;
}

.text-mec-art-desc {
  color: #104265;
} */

/* Footer */

.site-footer {
  padding-top: 10.4rem;
  padding-bottom: 7.8rem
}

.site-footer.bg-cover {
  position: relative
}

.site-footer.bg-cover .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.site-footer.bg-cover .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.site-footer.bg-cover>*:not(.bg-image) {
  position: relative
}

.site-footer .flex-col {
  row-gap: 36px
}

@media only screen and (max-width: 1023px) {
  .site-footer .flex-col {
      row-gap:56px
  }
}

.site-footer h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 2.6rem
}

.site-footer h3~h3 {
  margin-top: 4rem;
  margin-bottom: 1.6rem
}

.site-footer p,.site-footer address {
  line-height: 1.2
}

.site-footer address {
  margin-bottom: 1.8rem
}

.site-footer p {
  margin-bottom: 1.4rem
}

.site-footer p a {
  color: inherit
}

.site-footer .awards__images {
  display: flex;
  flex-wrap: wrap;
  gap: 28px
}

.site-footer .awards__images .img-holder {
  display: flex;
  align-items: center;
  width: auto
}

.site-footer .awards__images .img-holder:nth-child(1) img,.site-footer .awards__images .img-holder:nth-child(2) img,.site-footer .awards__images .img-holder:nth-child(5) img {
  height: 67px;
  width: auto
}

.site-footer .awards__images .img-holder:nth-child(3) img {
  width: 79px;
  height: auto
}

.site-footer .awards__images .img-holder:nth-child(4) img {
  height: 83px;
  width: auto
}

.footer-top .awards {
  flex: 0 0 calc(33.33% - 38.6666666667px);
  max-width: calc(33.33% - 38.6666666667px)
}

@media only screen and (max-width: 1023px) {
  .footer-top .awards {
      flex:0 0 100%;
      max-width: 100%
  }
}

.footer-top .footer-nav {
  flex: 0 0 calc(25% - 38.6666666667px);
  max-width: calc(25% - 38.6666666667px)
}

@media only screen and (max-width: 1023px) {
  .footer-top .footer-nav {
      flex:0 0 calc(40% - 29px);
      max-width: calc(40% - 29px)
  }
}

@media only screen and (max-width: 639px) {
  .footer-top .footer-nav {
      flex:0 0 100%;
      max-width: 100%
  }
}

.footer-top .footer-contact-info {
  flex: 0 0 calc(41.67% - 38.6666666667px);
  max-width: calc(41.67% - 38.6666666667px)
}

@media only screen and (max-width: 1023px) {
  .footer-top .footer-contact-info {
      flex:0 0 calc(60% - 29px);
      max-width: calc(60% - 29px)
  }
}

@media only screen and (max-width: 639px) {
  .footer-top .footer-contact-info {
      flex:0 0 100%;
      max-width: 100%
  }
}

.footer-bottom .col {
  align-items: flex-end
}

.footer-bottom .footer-logo {
  max-width: 253px;
  flex: 0 0 253px
}

@media only screen and (max-width: 1023px) {
  .footer-bottom .footer-logo {
      flex:0 0 100%;
      max-width: 100%;
      text-align: center
  }
}

.footer-bottom .footer-logo img {
  max-width: 100%;
  width: 100%;
  height: auto
}

@media only screen and (max-width: 1023px) {
  .footer-bottom .footer-logo img {
      max-width:253px
  }
}

.footer-bottom .copyright-text {
  flex: 0 0 calc(58.33% - 58px - 268px);
  max-width: calc(58.33% - 58px - 268px);
  display: flex;
  justify-content: center
}

@media only screen and (max-width: 1023px) {
  .footer-bottom .copyright-text {
      flex:0 0 100%;
      max-width: 100%
  }
}

.footer-bottom .copyright-text p {
  margin: 0;
  font-size: 1.6rem
}

.footer-bottom .footer-links {
  flex: 0 0 calc(41.67% - 58px);
  max-width: calc(41.67% - 58px);
  display: flex
}

@media only screen and (max-width: 1023px) {
  .footer-bottom .footer-links {
      flex:0 0 100%;
      max-width: 100%;
      justify-content: center
  }
}

.footer-bottom .footer-links ul.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem
}

.row {
  gap: 58px;
  flex-wrap: wrap
}

@media only screen and (max-width: 1023px) {
  .footer-bottom .row {
      gap:30px
  }
}

.footer-nav ul li {
  margin-bottom: 1.6rem
}

.footer-nav ul li a {
  font-size: 1.6rem;
  line-height: 1.2
}

footer {
  display: block
}
footer {
  padding: 8rem 1rem
}

@media only screen and (min-width: 768px) {
  footer {
      padding:8rem 4vw
  }

  .header-pad {
      padding: 2rem 4vw
  }
}
@media only screen and (min-width: 1248px) {
  .header-pad {
      padding:1rem 6vw;
      padding-top: 60px
  }

  footer {
      padding: 8rem 6vw
  }
}
@media only screen and (max-width: 479px) {
  .site-footer {
      padding-left:30px;
      padding-right: 30px
  }
}

@media only screen and (min-width: 480px) {
  .site-footer .footer__nav-container {
      display:flex;
      justify-content: center;
      align-items: center
  }
}

@media only screen and (min-width: 480px)and (max-width:1023px) {
  .site-footer .footer__nav-container {
      padding-top:4rem
  }
}

@media only screen and (max-width: 479px) {
  .site-footer .footer__nav .menu-primary-menu-container ul li {
      margin-bottom:2rem
  }
}

@media only screen and (min-width: 480px) {
  .site-footer .footer__nav .menu-primary-menu-container ul {
      display:flex;
      gap: 1em
  }
}
.wrap {
  max-width: 1250px;
  margin: 0 auto;
  position: relative
}
.flex-col {
  display: flex;
  flex-direction: column
}
.footer-top .footer-nav {
  flex: 0 0 calc(25% - 38.6666666667px);
  max-width: calc(25% - 38.6666666667px)
}

.footer-top .footer-contact-info {
  flex: 0 0 calc(41.67% - 38.6666666667px);
  max-width: calc(41.67% - 38.6666666667px)
}

.wrapper {
  max-width: 600px;
  border: 1px solid #333;
  display: grid;
  grid-template-columns: repeat(5, 100px);
  grid-template-rows: 200px 100px;
  gap: 8px;
}
.big-div {
  background-color: #778;
  grid-column-start: span 2;
}
.small-div {
  background-color: #787;
}