:root {
  --color-primary: #0663AD;
  --color-secondary: #142C58;
  --color-grey: #E5E5E5;
  --gradient-primary: linear-gradient(180deg, var(--color-primary) 10%, var(--color-secondary) 100%);
  --border-radius: 10px;
  --box-shadow: 0px 4px 25px 0px rgba(19, 25, 34, 0.10);
  --backgroud-color-blue-dark: var(--color-secondary);
}

/* stylelint-disable scss/no-global-function-names */

/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */

.main-services {
  margin: 50px 0 30px 0;
}

.main-services *, .main-services *::before, .main-services *::after {
  box-sizing: border-box;
}

.main-services h2 {
  text-align: center;
}

.main-services .container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-list__item {
  width: calc(33.3333333333% - 20px);
}

@media print, screen and (max-width: 63.99875em) {
  .services-list__item {
    width: calc(50% - 20px);
  }
}

@media print, screen and (max-width: 39.99875em) {
  .services-list__item {
    width: 100%;
  }
}

.service-item {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.service-item__heading {
  text-decoration: none;
  color: white;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  font-size: 26px;
  font-weight: bold;
  line-height: 28px;
}

.service-item:hover .service-item__heading {
  display: none;
}

.service-item__description {
  display: none;
}

.service-item:hover .service-item__description {
  display: block;
}

.service-item__picture-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  z-index: -1;
}

.service-item:hover .service-item__picture-container {
  background: none;
}

.service-item__picture-container:after {
  content: "";
  background: var(--gradient-primary);
  opacity: 0.6;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.service-item__picture-container:before {
  background: rgb(0, 0, 0);
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.service-item:hover .service-item__picture-container:before {
  opacity: 0.2;
}

.service-item__picture {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.beltechsoft {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beltechsoft > span, .beltechsoft a {
  margin: 0 0 0 7px;
}

.beltechsoft a {
  text-decoration: underline;
}

.beltechsoft__icon {
  margin: 0 7px 0 0;
}

@media screen and (min-width: 50.3125em) {
  .nav-dropdown .flex_m_list ul {
    flex-direction: column;
  }
  .nav-dropdown {
    width: initial;
    left: initial;
  }
  .nav-dropdown .flex_m_list ul li {
    width: 100%;
  }
  li .nav-dropdown .flex_m_list {
    padding-top: 30px;
    padding-bottom: 15px;
  }
}