/*
 * The Typekit service used to deliver this font or fonts for use on websites
 * is provided by Adobe and is subject to these Terms of Use
 * http://www.adobe.com/products/eulas/tou_typekit. For font license
 * information, see the list below.
 *
 * elza:
 *   - http://typekit.com/eulas/00000000000000007735f907
 *   - http://typekit.com/eulas/00000000000000007735f910
 *   - http://typekit.com/eulas/00000000000000007735f90b
 *
 * © 2009-2023 Adobe Systems Incorporated. All Rights Reserved.
 */
/*{"last_published":"2023-05-27 07:08:42 UTC"}*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --main-blue: #093a5a;
  --main-light-blue: #2098d5;
  --main-very-light-blue: #84c2ea;
  --border-gray: #707070;
}

html, body {
  height: 100%;
}

body {
  font-family: "Inter",sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5rem!important;
letter-spacing: -.04em;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}


/* header */
.navbar.sticky-top {
  padding: 0px 0px 1.5rem 0px!important;
}
.navbar.sticky-top .container-fluid {
  position: relative;
  padding: 0px!important;
  display: flex;
  align-items: flex-end;
}
.navbar-brand {
  padding: 0px!important;
}
.navbar-brand img {
  height: 6rem;
}
.navbar-brand img.mobile {
  display: none;
}
.search-container {
  position: relative;
}
.search-wrapper {
  position: absolute;
  right: calc(100% + 2rem);
  min-width: 26rem;
  opacity: 0;
  transition: opacity 3s;
}
.search-wrapper.shown {
  opacity: 1;
}
.search-wrapper input,
.search-wrapper label {
  border-radius: 0;
  border: 1px solid var(--border-gray);
}
.search-wrapper label {
  margin-left: 0.5rem!important;
  background-color: transparent;
  color: var(--main-blue);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.search-wrapper label:hover {
  border: 1px solid var(--main-light-blue);
  color: var(--main-light-blue);
}
#search-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url('../images/search-icon.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1rem;
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
#search-icon:hover {
  background-image: url('../images/search-icon-hover.svg');
}
#search-icon.opened,
#search-icon.opened:hover {
  background-image: url('../images/menu-icon-opened.svg');
}

.header-actions {
  display: flex;
  align-items: flex-start;
}
.header-actions .languages {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}
.languages .language {
  text-transform: uppercase;
  color: var(--main-blue);
  font-size: 1rem;
  padding-right: 0.7rem;
}
.languages .language:first-of-type {
  border-bottom: 1px solid var(--main-blue);
}
.languages .language:hover {
  color: var(--main-light-blue);
  cursor: pointer;
}
.languages .language.active {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.header-actions .menu {
  display: flex;
  flex-direction: column;
}
.header-actions .menu .title {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--main-blue);
  height: fit-content;
}
#hamburger-menu {
  background-image: url("../images/menu-icon-closed.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
}
#hamburger-menu:hover {
  cursor: pointer;
}
#hamburger-menu.opened {
  background-image: url("../images/menu-icon-opened.svg");
}
#header-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
#header-menu.visible {
  visibility: visible;
  opacity: 1;
  background-color: #fff;
  border-top:  5px solid var(--main-blue);
  padding: 1.5rem 0px;
  transition: display 220ms ease, opacity 220ms ease, visibility 220ms ease;
  -moz-transition: display 220ms ease, opacity 220ms ease, visibility 220ms ease;
  -webkit-transition: display 220ms ease, opacity 220ms ease, visibility 220ms ease;
  -o-transition: display 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

#header-menu.visible .dropdown-main-menu {
  display: flex!important;
  flex-direction: column;
  list-style: none;
  padding-left: 0px;
  width:  24%;
  border-right: 1px solid var(--border-gray);
  min-height: 18rem;
}
.dropdown-main-menu li a,
.dropdown-submenu li a {
  color: var(--main-blue);
  padding: 0px 2rem;
  text-wrap: wrap;
  font-size:  0.9rem;
  line-height: 2rem;
  min-height: 2rem;
}
.dropdown-main-menu li a:hover,
.dropdown-submenu li a:hover {
  background-color: var(--main-light-blue);
  color: #fff;
}
.dropdown-main-menu {
  position: relative;
}
.dropdown-menu li {
  position: initial;
}
.dropdown-menu .dropdown-submenu,
.dropdown-main-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: calc(100% + 1px);
  min-height: 100%;
  top: 0;
  padding-top: 0px;
  width: calc(159%);
  border: none;
  border-radius: unset;
  border-right: 1px solid var(--border-gray);
  padding-left: 0px;
}
.dropdown-menu .dropdown-submenu.last-level {
  border-right: none;
  width: 100%;
}
.dropdown-main-menu > li:hover > .dropdown-submenu,
.dropdown-menu > li:hover > .dropdown-submenu {
  display: flex;
  flex-direction: column;
}

.dropdown-main-menu {
  > li {
    &:hover {
      > a {
        background-color: var(--main-light-blue);
        color: #fff;
      }
    }
    .dropdown-submenu > li {
      &:hover > a {
        background-color: var(--main-light-blue);
        color: #fff;
      }
    }
  }
}


#header-menu-mobile {
  position: absolute;
  left: calc(-100% - 0.75rem);
  overflow: hidden;
  transition: left 0.3s;
  width: calc(100% + 1.5rem);
  top:  calc(100% + 1px);
  background-color: #fff;
  min-height: calc(100vh - 100%);
  border-top: 5px solid var(--main-blue);
}
#header-menu-mobile.visible {
  left: -0.75rem;
  transition: left 0.3s;
}
#header-menu-mobile .menu {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.35s;
}

#header-menu-mobile .main-menu ul {
  list-style: none;
  padding: 0.5rem 1rem;
  margin-bottom: 0px;
}
#header-menu-mobile .main-menu ul.main-pages li:last-of-type a {
  border-top: 1px solid rgba(112, 112, 112, 0.3);
}
#header-menu-mobile .menu {
  width: 100%;
}
#header-menu-mobile .menu ul {
  padding: 0.5rem 0px;
}
#header-menu-mobile .menu ul li:last-of-type a {
  border-top: none!important;
}
      
#header-menu-mobile ul li a,
#header-menu-mobile ul li label {
  display: block;
  line-height: 40px;
  text-decoration: none;
  color: var(--main-blue);
}
#header-menu-mobile ul li label.go-back {
  font-weight: 800;
  text-transform: capitalize;
  color: var(--main-light-blue);
  margin-top: 1rem;
}
#header-menu-mobile ul li a:hover,
#header-menu-mobile ul li label:hover {
  color: #666;
}

/* hide inputs */          
#header-menu-mobile .menu-checkbox {
  display: none;
}

/* hide navigation icon for sublabels */    
#header-menu-mobile .menu .menu label.menu-toggle {
  background: none;
}
    
/* fade in checked menu */    
#header-menu-mobile .menu-checkbox:checked + .menu {
  transform: translate3d(0, 0, 0);
}
/* header end */



/* footer */
.footer-image {
  margin-top: 2rem;
}
.footer-image img {
  width: 100%;
  height: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.copyright span {
  font-size: 0.8rem;
}
.copyright span.bold {
  font-weight: bold;
}
.footer-links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0px;
}
.footer-links ul li {
  padding: 0 0.5rem;
}
.footer-links a {
  color: var(--main-blue);
  text-decoration: none;
  font-size: 0.8rem;
}
.footer-links a:hover {
  color: var(--main-light-blue);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social-links a {
  text-decoration:  none;
  margin: 5px;
  display: inline-block;
}
.social-links a img.hover {
  display: none;
}
.social-links a:hover img.default {
  display: none;
}
.social-links a:hover img.hover {
  display: inline-block;
}
/* footer end */


/* homepage */
.video-wrapper {
  position: relative;
  max-width: 1296px;
  height: 75%;
  margin-left: auto;
  margin-right: auto;
}
.video-preview {
  width: 100%;
  height: 100%;
}
.video-preview.hide {
  display: none;
}
.video-play-wrapper {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
}
.preview-play-box {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
}
.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  background-color: #fff;
  padding: 1rem;
}
.video-play:hover {
  cursor: pointer;
  background-color: var(--main-light-blue);
}
.video-play:hover .title {
  color: #fff;
}
.video-play:hover .video-play-icon {
  border-left: 40px solid #fff;
}
.video-play .title {
  color: var(--main-blue);
  text-transform: uppercase;
  padding-right: 1rem;
  font-size: 0.9rem;
  line-height: 1.1rem;
  text-align: right;
}
.video-play-icon {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 40px solid var(--main-blue);
  border-bottom: 25px solid transparent;
}
.video-title {
  background-color: #fff;
  padding: 1rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--main-blue);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-tiles {
  display: flex;
  margin: 2rem 0px;
}
.services-tiles .service-box {
  width: calc(20% - 2rem);
  aspect-ratio:  4 / 4;
  margin: 0px 1rem;
  padding: 1rem;
  text-decoration: none;
  outline: 0;
  color: #fff;
  display: flex;
  align-items: center;
}
.services-tiles .service-box:first-of-type {
  margin-left: 0px;
}
.services-tiles .service-box:last-of-type {
  margin-right: 0px;
}
.services-tiles .service-box .before,
.services-tiles .service-box .after {
  color: #84c2ea;
}
.services-tiles .service-box:first-of-type:hover,
.services-tiles .service-box:nth-of-type(2):hover,
.services-tiles .service-box:nth-of-type(3):hover,
.services-tiles .service-box:nth-of-type(4):hover,
.services-tiles .service-box:nth-of-type(5):hover {
  background-color: var(--main-very-light-blue);
  color: #081c2a;
}
.services-tiles .service-box:hover .before,
.services-tiles .service-box:hover .after {
  color: #fff;
}
.services-tiles .service-box:first-of-type {
  background-color: #081c2a;
}
.services-tiles .service-box:nth-of-type(2) {
  background-color: var(--main-blue);
}
.services-tiles .service-box:nth-of-type(3) {
  background-color: #005387;
}
.services-tiles .service-box:nth-of-type(4) {
  background-color: #0068a6;
}
.services-tiles .service-box:nth-of-type(5) {
  background-color: #2098d5;
}
.services-tiles .service-box .text {
  position: relative;
}
.services-tiles .service-box .before,
.services-tiles .service-box .after {
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  font-weight: 800;
}
.services-tiles .service-box .before {
  top: -1.2rem;
}
.services-tiles .service-box .after {
  bottom: -1.2rem;
}
.services-tiles .service-box .title .line {
  line-height: 1.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.facts .row {
  margin: 0px!important;
}
.facts .fact-text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}
.facts .fact-text-image:nth-of-type(2n+1) {
  padding-right: 3rem;
}
.facts .fact-text-image:nth-of-type(2n) {
  padding-left: 3rem;
  flex-direction: row-reverse;
}
.facts .fact-text-image .info {
  flex: 0.5;
}
.facts .fact-text-image img {
  flex: 0.35;
  height: 10rem;
  object-fit: contain;
}
.facts .fact-text-image .title {
  color: var(--main-blue);
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.facts .fact-text-image .description {
  font-size: 18px;
  line-height: 22px;
  color: var(--main-blue);
}
.home-news {
  padding: 1rem 0 2rem 0;
}
.section-title-bordered {
  border-top:  1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  text-transform: uppercase;
  color: var(--main-blue);
  font-size: 40px;
  line-height: 58px;
  font-weight: 800;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.articles .article-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  color: var(--main-blue);
  font-size: 1rem;
}
.articles .article-box .article-title {
  margin-bottom: 2rem;
  font-weight: 800;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.articles .article-box .details {
  margin-bottom: 2rem;
  padding-right: 3rem;
}
.articles .article-box .details img {
  width: 100%;
  height: auto;
}
.articles .article-box .bottom-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: var(--main-light-blue);
  border-bottom: 1px solid var(--border-gray);
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
}
.articles .article-box .bottom-info a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--main-light-blue)!important;
}

.articles .article-box .bottom-info a:hover {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
/* homepage end */

/* seismic data aquisition */
.page-carousel {
  width: 100%;
  height: 62vh;
}
.page-carousel .carousel-inner {
  width: 100%;
  height: 100%;
}
.page-carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.page-carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-control-next, .carousel-control-prev {
  opacity: 1!important;
}
.carousel-control-next-icon {
  background-image: url('../images/arrow-right-default.svg')!important;
}
.carousel-control-prev-icon {
  background-image: url('../images/arrow-left-default.svg')!important;
}
.carousel-control-next:hover .carousel-control-next-icon {
  background-image: url('../images/arrow-right-hover.svg')!important;
}
.carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url('../images/arrow-left-hover.svg')!important;
}
.breadcrumbs {
  padding: 1rem 0px;
  border-bottom: 1px solid #093a5a;
}
.breadcrumbs ol {
  margin-bottom: 0px;
}
.breadcrumbs ol li a {
  color: var(--main-blue);
  text-decoration: none;
}
.breadcrumbs ol li a:hover {
  color: var(--main-light-blue);
}
.page-section {
  padding: 1rem 0px;
  color: var(--main-blue);
}
.page-section h2 {
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.page-section h2.no-margin {
  margin-bottom: 0;
}
.page-section h2.m-bottom-1 {
  margin-bottom: 1rem;
}
.page-section h2.border-bottom {
  border-bottom: 1px solid var(--border-gray)!important;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.page-section .subtitle {
  font-weight: bold;
}
.page-section .description {
  font-size: 1rem;
}
.page-section .description.bold {
  font-weight: bold;
}
.page-section .description.m-top {
  margin-top: 2.6rem;
}
.page-section .gallery-with-links {
  align-items: flex-end;
}
.page-section .gallery-with-links .box {
  margin-bottom: 2rem;
}
.page-section .gallery-with-links .title{
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.page-section .gallery-with-links .image {
  width: 100%;
  display: block;
  text-decoration: none;
  outline: none;
  position: relative;
  aspect-radtio:  4 /3;
}
.page-section .gallery-with-links .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-section .gallery-with-links a.image:hover:after {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/service-hover.svg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.m-top-1 {
  margin-top: 1rem;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.inline-list .item {
  padding-right: 7rem;
  margin-bottom: 2rem;
}
.inline-list .item .title {
  font-weight: bold;
}

.bold-description {
  font-weight: bold;
}
.list-title-bold {
  font-weight: bold;
  margin-top: 1rem;
}

.custom-list {
  padding: 1rem 0;
}
.custom-list li {
  line-height: 1.5rem;
}
.custom-list li::marker {
  display: none;
  font-size: 0px;
}
.custom-list li::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-image: url('../images/custom-list-icon.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.custom-list li .bold {
  font-weight: bold;
}
.custom-list li.m-bottom {
  margin-bottom: 1rem;
}

.m-bottom-1 {
  margin-bottom: 1rem;
}
.m-bottom-05 {
  margin-bottom: 0.5rem;
}
.m-bottom-2 {
  margin-bottom: 2rem;
}

.default-circle-list {
  padding: 1rem 0;
}
.default-circle-list li::marker {
  font-size: 0;
}
.default-circle-list li::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  background-color: var(--main-blue);
  border-radius: 50%;
}

.custom-link {
  color: var(--main-light-blue);
  text-decoration: none;
}
.custom-link:hover {
  text-decoration: underline;
}
.full-width-image {
  width: 100%;
  height: auto;
}

.title-text-list .element .title {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}
.title-text-list .element .description {
  margin-bottom: 2rem;
}

.team-section .row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--main-blue);
  margin: 0;
}
.team-section .row .col-md-6:first-of-type {
  padding-left: 0;
}
.team-section .name {
  font-size: 1.5rem;
  font-weight: bold;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.team-section .position {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}
.files-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.file-list {
  margin-bottom: 20px;
}
.file-list.bordered {
  border-top: 1px solid var(--main-blue);
  border-bottom: 1px solid var(--main-blue);
}
.file-list .list-item {
  display: flex;
  border-bottom: 1px solid var(--main-blue);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}
.file-list .list-item:last-of-type {
  border-bottom: none;
}
.file-list .list-item img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  margin-right: 0.5rem;
}
.file-list .list-item a {
  text-decoration: none;
  color: var(--main-light-blue);
}

.file-list-gallery {
  border-top: 1px solid var(--main-blue);
  padding: 1rem 0;
}
.file-list-gallery .title {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.file-list-gallery .items {
  margin: 0;
}
.file-list-gallery .items .col-md-6 {
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.file-list-gallery .items .col-md-6:nth-of-type(2n+1) {
  padding-right: 2rem;
  padding-left: 0;
}
.file-list-gallery .items .col-md-6:nth-of-type(2n) {
  padding-left: 2rem;
  padding-right: 0;
}

.tab-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -0.4rem;
  margin-right: -0.4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.tab-list .tab-item {
  display: flex;
  width: 19%;
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
  background-color: var(--main-light-blue);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 1%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.tab-list .tab-item.active {
  background-color: var(--main-blue);
}

.tab-list .tab-item:hover {
  background-color: var(--main-blue);
}

.bordered-title-section {
  margin-bottom: 2rem;
}

.bordered-title-section .title {
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--main-blue);
  margin-bottom: 0.5rem;
}
.bordered-title-section .numbered-list {
  padding-left: 1rem;
}
.bordered-title-section .numbered-list li::marker {
  font-weight: bold;
}


.collapse-list .accordion-item {
  border-bottom: none!important;
  margin-bottom: 0.5rem;
}
.collapse-list .accordion-item:first-of-type .accordion-button,
.collapse-list .accordion-item:last-of-type .accordion-button {
  border-radius: 0!important;
}
.collapse-list .accordion-button {
  padding: 0.5rem!important;
  padding-top: 0.8rem !important;
  background-color: var(--main-blue)!important;
  color: #fff!important;
  font-weight: 800;
  text-transform: uppercase;
  border: none!important;
  outline: none!important;
  box-shadow: none!important;
}
.collapse-list .accordion-button.no-uppercase {
  text-transform: none;
}
.collapse-list .accordion-button.collapsed {
  background-color: var(--main-light-blue)!important;
}
.collapse-list .accordion-button::after {
  content: "-";
  font-size: 2rem;
  margin-right: 0.3rem;
  background-image: none!important;
}
.collapse-list .accordion-button.collapsed::after {
  content: "+";
}
.collapse-list .accordion-body {
  padding: 1rem 0!important;
}
p.bold {
  font-weight: bold;
}

.multiple-collapse-with-title h4 {
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.go-back-container {
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.go-back-container .right {
  color: var(--main-light-blue);
  font-weight: bold;
  text-transform: uppercase;
}
.go-back-container a {
  text-decoration: none;
  font-weight: bold;
  color: var(--main-light-blue);
  text-transform: uppercase;
}
.go-back-container a:hover {
  text-decoration: underline;
  color: var(--main-light-blue);
}
.numeric-list {
  margin-bottom: 1.5rem;
}
.numeric-list .title {
  font-size: 2rem;
  border-bottom: 1px solid var(--main-blue);
  line-height: 2rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
}


.inline-grid-container {
  display: grid;
  grid-auto-flow: dense;
  align-items: start;
  grid-template-rows: max-content;
}
.inline-grid {
  display: grid;
  grid-template-rows: repeat(4, auto);
  gap: 0 2%;
  grid-auto-flow: column;
  grid-auto-columns: 49% 49%;
  align-items: start;
}
.inline-grid .box-container {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 1rem;
}
.box-container .title {
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: bold;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.box-container .info {
  padding: 0.5rem 0;
}
.box-container .file {
  display: flex;
}
.box-container .file a {
  display: flex;
  align-items: flex-start;
  line-height: 1.3rem;
  word-break: break-all;
  font-size: 0.9rem;
}
.box-container .file a:hover {
  text-decoration: underline;
  color: var(--main-blue);
}
.box-container .file.pdf a:before {
  content: "";
  background-image: url('../images/icon_PDF.svg');
  display: inline-block;
  position: relative;
  margin-right: 0.3rem;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.form-floating label {
  font-size:  1.1rem;
  color: var(--main-very-light-blue);
}
.form-floating input,
.form-floating textarea {
  border: 1px solid var(--border-gray);
  border-radius: 0;
}
.custom-form #inputFile {
  color: var(--main-very-light-blue);
  border: 1px solid var(--border-gray);
  border-radius: 0;
} 
.custom-form .submit-button {
  outline:  none;
  box-shadow: none;
  border: none;
  background-color: var(--main-light-blue);
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.3rem 0;
  font-weight: 800;
}
.add-file {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.contact-section {
  margin-bottom: 2rem;
}
.contact-section .title {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.contact-section .info-row {
  display: flex;
}
.contact-section .info-row .label {
  min-width: 5rem;
}
.delimiter {
  width: 100%;
  height: 1px;
  background-color: var(--border-gray);
  margin: 1rem 0;
}
/* seismic data aquisition end */

/* shallow drilling */
.page-header-image {
  width: 100%;
  height: 65vh;
}
.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* shallow drilling end*/





@media(max-width:  767px) {
  .navbar.sticky-top {
    padding: 0px 0px 0.5rem 0px!important;
  }
  #header-menu.visible .dropdown-main-menu {
    width: 100%;
  }
  .search-container {
    position: unset;
  }
  .search-wrapper {
    width: 100%;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #fff;
    padding: 1rem;
    border-top:  5px solid var(--main-blue);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }
  .search-wrapper .mb-4 {
    margin-bottom: 0px!important;
  }
  .menu-desktop {
    display: none!important;
  }
  .video-wrapper {
    height: 23rem;
  }
  .services-tiles {
    flex-direction: column;
    margin: 2rem 0px;
  }
  .services-tiles .service-box {
    width: 100%;
    margin: 0px;
    aspect-ratio: unset;
  }
  .services-tiles .service-box .before,
  .services-tiles .service-box .after {
    top: auto;
    bottom: auto;
    position: relative;
  }
  .home-description {
    flex-direction: column-reverse;
  }
  .articles .article-box .details {
    padding-right: 0px;
  }

  .facts .row {
    margin: 0px!important;
  }
  .facts .fact-text-image {
    flex-direction: column-reverse;
    align-items: center;
    padding: 1rem 0;
  }
  .facts .fact-text-image:nth-of-type(2n+1) {
    padding-right: 0;
  }
  .facts .fact-text-image:nth-of-type(2n) {
    padding-left: 0;
    flex-direction: column-reverse;
  }
  .facts .fact-text-image .title {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 800;
  font-family: 'Inter', sans-serif;
  }
  .facts .fact-text-image .info {
    flex: 1;
    text-align: center;
  }
  .facts .fact-text-image img {
    flex: 1;
    height: 10rem;
    margin-bottom: 1rem;
  }

  .team-section .row img {
    margin-bottom: 1rem;
  }
  .team-section .row .col-md-6 {
    padding: 0;
  }
  .inline-list .item {
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
  .file-list-gallery .items .col-md-6:nth-of-type(2n+1) {
    padding: 0;
  }
  .file-list-gallery .items .col-md-6:nth-of-type(2n) {
    padding: 0;
  }

  .tab-list {
    margin-left: -0.2rem;
    margin-right: -0.2rem;
  }

  .tab-list .tab-item {
    width: 48%;
    margin-bottom: 2%;
    margin-left: 1%;
    margin-right: 1%;
  }
  .inline-grid {
    grid-auto-columns: 100%;
    gap: 0;
    grid-auto-flow: dense;
  }
  .footer-links {
    margin-left: 0px;
  }
}
@media(min-width:  768px) and (max-width:  1024px) {
  .search-wrapper {
    min-width: 20rem;
  }
  .languages .language {
    font-size: 0.9rem;
  }
  .services-tiles {
    margin:  2rem -0.25rem;
  }
  .services-tiles .service-box {
    width:  calc(20% - 1rem);
    margin: 0px 0.5rem;
    aspect-ratio: unset;
    min-height: 8rem;
    padding: 0.5rem;
  }
  .services-tiles .service-box .before,
  .services-tiles .service-box .after {
    font-size: 1rem;
  }
  .services-tiles .service-box .title .line {
    line-height: 1.2rem;
    font-size: 1.1rem;
  }

  .facts .fact-text-image img {
    height: 7rem;
  }

  .inline-list .item {
    padding-right: 3rem;
    margin-bottom: 1rem;
  }

  .file-list-gallery .items .col-md-6:nth-of-type(2n+1) {
    padding-right: 0.75rem;
  }
  .file-list-gallery .items .col-md-6:nth-of-type(2n) {
    padding-left: 0.75rem;
  }

  .footer-links {
    margin-left: 0px;
  }

}
@media(max-width: 1024px) {
  .navbar-brand img.desktop {
    display: none;
  }
  .navbar-brand img.mobile {
    display: flex;
    height: 3rem;
    margin: 0.5rem 0px;
  }
  .header-actions .menu .title {
    display: none;
  }

  .tab-list .tab-item {
    font-size: 1.5rem;
  }
  
  /* footer */
  .footer-image img {
    height: 5rem;
    object-fit: cover;
  }
  .footer-content {
    flex-direction: column-reverse;
  }

  .footer-content .footer-links ul {
    padding: 0.5rem 0px;
  }
  .social-links {
    justify-content: center;
  }

  .footer-links {
    margin-left: 0px;
  }
  .footer-links {
    margin-left: 0px;
  }

  
  /* footer end */
}

@media(min-width:  1024px) and (max-width:  1100px) {
  .footer-links {
    margin-left: 40px;
  }
}

@media(min-width: 1100px) and (max-width: 1296px) {
  .navbar-brand img {
    margin-left: -3.3rem;
  }
  .footer-links {
    margin-left: 40px;
  }
}

@media(min-width: 1296px) {
  .navbar-brand img {
    margin-left: -3.3rem;
  }
  .footer-links {
    margin-left: 40px;
  }

  .video-wrapper {
    width: 1296px;
  }
}


.title-gallery {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
