@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color: #999;
  --theme-dark-color: #666;
}

@keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  60% {
    -webkit-transform: translateY(-2.5px);
    -ms-transform: translateY(-2.5px);
    transform: translateY(-2.5px);
  }
}

body {
  font-family: "Jost", sans-serif !important;
}

.bg-light {
  background-color: #fff !important;
}

.header-container-left-logo img {
  width: 74%;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.header-wrapper {
  padding: 1rem;
  /* box-shadow: 0px 1px 5px rgb(16 16 25 / 8%); */
  height: 80px;
  background-color: transparent;
  transition: 0.2s ease-in-out;
  /* position: absolute; */
  width: 100%;
  z-index: 11;
}

.header-wrapper.sticked {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.header-container-left {
  display: flex;
  width: 212px;
}

.header-container-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 212px;
}

.header-container-center {
  display: flex;
  width: calc(100% - 424px);
  align-items: center;
  justify-content: center;
}

.header-container-center #cssmenu>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-container-center #cssmenu>ul>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.header-container-center #cssmenu>ul>li>button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: 0 !important;
  pointer-events: none;
}

.header-container-center #cssmenu>ul>li>a {
  display: flex;
  padding: 0.5rem;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.header-container-center #cssmenu>ul>li>a:hover {
  color: var(--theme-color);
}

.header-container-center #cssmenu>ul>li>ul {
  position: absolute;
  left: 0;
  top: 100%;
  list-style: none;
  margin: 0;
  padding: 1rem;
  background-color: #fff;
  width: 300px;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 42px 0px rgb(32 32 32 / 15%);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: 0.3s ease-in-out;
}

.header-container-center #cssmenu>ul>li>ul::before {
  background-color: #ffffff;
  content: "";
  width: 22px;
  height: 22px;
  left: 27px;
  top: -12px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-container-center #cssmenu>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.header-container-center #cssmenu>ul>li>ul>li>a {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  padding: 0.5rem 0;
  transition: 0.3s ease-in-out;
  color: #000;
  cursor: pointer;
}

.header-container-center #cssmenu>ul>li>ul>li:not(:last-child)>a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container-center #cssmenu>ul>li>ul>li>a:hover {
  color: var(--theme-color);
  padding-left: 0.7rem;
}

.social-media-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.social-media-wrapper>a>i {
  color: #000;
  font-size: 15px;
  transition: 0.2s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.social-media-wrapper>a {
  border: 1px solid #000;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3rem;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.social-media-wrapper>a.instagram:hover {
  border-color: #c13584;
}

.social-media-wrapper>a.twitter:hover {
  border-color: #00acee;
}

.social-media-wrapper>a.facebook:hover {
  border-color: #3b5998;
}

.social-media-wrapper>a.youtube:hover {
  border-color: #f00;
}

.social-media-wrapper>a.instagram:hover>i {
  color: #c13584;
  animation-name: bounce;
  -moz-animation-name: bounce;
  animation-iteration-count: 1;
}

.social-media-wrapper>a.twitter:hover>i {
  color: #00acee;
  animation-name: bounce;
  -moz-animation-name: bounce;
  animation-iteration-count: 1;
}

.social-media-wrapper>a.facebook:hover>i {
  color: #3b5998;
  animation-name: bounce;
  -moz-animation-name: bounce;
  animation-iteration-count: 1;
}

.social-media-wrapper>a.youtube:hover>i {
  color: #f00;
  animation-name: bounce;
  -moz-animation-name: bounce;
  animation-iteration-count: 1;
}

.slider-title {
  font-size: 35px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 2rem;
}

.item>img {
  width: 100%;
  position: relative;
  height: 550px;
  object-fit: cover;
}

.slick-next,
.slick-prev {
  display: none !important;
}

.slider-wrapper {
  /* position: absolute; */
}

.vertical-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100% !important;
  padding: 5rem;
  transform: translateY(-50%);
}

.item>span {
  display: flex;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
}

.slider-btn>a {
  letter-spacing: 2px;
  font-weight: bold;
  color: #8c7156;
  padding-left: 4rem;
  font-size: 16px;
  position: relative;
  transition: 0.5s ease-in-out;
}

.slider-btn>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: 1%;
  background-color: #8c7156;
  transition: 0.5s ease-in-out;
}

.slider-btn>a:hover {
  color: #fff;
}

.slider-btn>a:hover::before {
  left: 30%;
  width: 0;
  background-color: #fff;
}

.slider-wrapper .slick-dots {
  display: none !important;
}

.vertical-slider .slick-dots {
  display: block !important;
}

.vertical-slider .slick-dots>li>button {
  font-size: 0;
  border: none;
  height: 5px;
  width: 31px;
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.5);
  outline: 0 !important;
  transition: 0.3s ease-in-out;
}

.vertical-slider .slick-dots>li>button:hover {
  background-color: #fff;
}

.vertical-slider .slick-dots>li.slick-active>button {
  background-color: #fff;
}

.vertical-slider .slick-dots {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  list-style: none;
  margin: 0;
}

.vertical-slider .slick-dots>li {
  margin-bottom: 1.5rem;
}

.icon-column-image>img {
  filter: opacity(0.6);
  width: 100%;
  height: 100%;
}

.icon-column-image {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.icon-column-content {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: 250px;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
}

.icon-column-content::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: calc(2px / -1);
  left: calc(2px / -1);
  background: linear-gradient(to right, var(--theme-dark-color) 0%, var(--theme-dark-color) 100%),
    linear-gradient(to top, var(--theme-dark-color) 50%, transparent 50%),
    linear-gradient(to top, var(--theme-dark-color) 50%, transparent 50%),
    linear-gradient(to right, var(--theme-dark-color) 0%, var(--theme-dark-color) 100%),
    linear-gradient(to left, var(--theme-dark-color) 0%, var(--theme-dark-color) 100%);
  background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
  background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
  background-repeat: no-repeat, no-repeat;
  transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out,
    background-size 0.3s ease-in-out;
  transform: scaleX(0) rotate(0deg);
  transition-delay: 0.6s, 0.3s, 0s;
}

.icon-column-content:hover::before {
  background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
  background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
  transform: scaleX(1) rotate(0deg);
  transition-delay: 0s, 0.3s, 0.6s;
}

.icon-column-content:not(:last-child) {
  margin-right: 1rem;
}

.icon-column-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.icon-column-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 0;
  width: 100% !important;
}

.icon-column-text-title {
  color: var(--theme-dark-color);
  font-size: 17px;
  font-weight: bold;
}

.icon-column-text>span {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-color);
  width: 100%;
}

.home-text-container {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.home-text-container-left {
  width: 70%;
  padding: 1rem;
}

.home-text-container-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-text-container-right>img {
  width: 220px;
  height: 220px;
}

.home-text-container-left-title {
  display: flex;
  align-items: center;
}

.home-text-container-left-title>span {
  display: flex;
  font-size: 45px;
  font-weight: 300;
  color: var(--theme-color);
  margin-right: 1rem;
}

.home-text-container-left-title-typed>span {
  font-size: 45px;
  font-weight: 300;
  color: var(--theme-dark-color);
}

.home-text-container-left-text {
  font-size: 18px;
  font-weight: 400;
}

.home-text-wrapper {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--theme-color);
  padding-bottom: 4rem;
}

.sector-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

.sector-container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 16.6%;
  margin: 3.4rem 0;
}

.sector-container-content>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}



.sector-container-content-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translateY(-20px);
  transition: transform 0.3s ease-out 25ms;
}

.sector-container-content-ikon>img {
  width: 60px;
  height: 60px;
}

.sector-container-content-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-top: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.3s ease-out 25ms;
}

.sector-container-content-border {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  transform: translateY(10px);
  transition: transform 0.3s ease-out 25ms;
}

.sector-container-content-border::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #b2b2b2;
  width: 45%;
  top: 3px;
}

.sector-container-content-border::after {
  content: "";
  height: 1px;
  background-color: var(--theme-dark-color);
  width: 0;
  position: absolute;
  top: 3px;
  z-index: 9;
}

.sector-container-content:hover .sector-container-content-border::after {
  width: 45%;
  transition: 0.5s ease-out 25ms;
}

.sector-container-content:hover .sector-container-content-title,
.sector-container-content:hover .sector-container-content-ikon,
.sector-container-content:hover .sector-container-content-border {
  transform: translateY(0);
}

.home-about-container {
  padding: 0;
}

.home-about-container-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-about-container-top-title {
  font-size: 35px;
  font-weight: 500;
  color: var(--theme-dark-color);
  font-family: Roboto, sans-serif;
}

.home-about-container-top-text {
  font-weight: 500;
  font-size: 20px;
  color: var(--theme-color);
  margin-top: 0.5rem;
  font-family: Roboto, sans-serif;
}

.home-about-container-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3.5rem;
}

.home-about-container-bottom-right {
  display: flex;
  width: 30%;
  align-items: center;
}

.home-about-container-bottom-left {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.home-about-container-bottom-right>img {
  width: 100%;
}

.home-about-content {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.home-about-content-icon {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 100%;
}

.home-about-content-text {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
}

.home-about-content-icon>i {
  font-size: 55px;
  color: var(--theme-dark-color);
  transition: 0.2s ease-in-out;
}

.home-about-content:hover .home-about-content-icon>i {
  color: var(--theme-color);
}

.home-about-content-text>span {
  font-size: 20px;
  color: var(--theme-dark-color);
  font-weight: 600;
  font-family: Roboto, sans-serif;
}

.home-about-content-text>p {
  font-size: 17px;
  font-weight: 400;
  color: #666;
  margin-top: 1rem;
  line-height: 1.8;
  font-family: Roboto, sans-serif;
  width: 90%;
}

.home-about-wrapper {
  padding-top: 3rem;
  margin-top: 2rem;
}

.referances-slider-title,
.services-page-title {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* margin-top: 2rem; */
  position: relative;
  /* margin-top: 3rem; */
}

.referances-slider-title>span,
.services-page-title>span {
  font-size: 35px;
  font-weight: 300;
  color: var(--theme-dark-color);
  padding-bottom: 0.5rem;
  display: flex;
  position: relative !important;
  /* margin-top: 5rem; */
}

.referances-slider-title>span::before,
.services-page-title>span::before {
  content: "";
  position: absolute;
  width: 50%;
  bottom: 0;
  height: 1px;
  background-color: var(--theme-dark-color);
  left: 50%;
  transform: translateX(-50%);
}

.referances-slider-title>span::before {
  background-color: var(--theme-dark-color);
}

.references-image {
  padding: 0.5rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin: 0 0.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.references-image>img {
  width: 100%;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
  height: auto !important;
}

.references-image:hover>img {
  transform: scale(1.2);
}

.refences-slider .slick-track {
  padding: 2rem 0;
}

.references-prev,
.references-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 9;
  background-color: transparent;
  border: none;
  font-size: 30px;
  outline: 0 !important;
  padding: 0;
}

.references-slider-container {
  padding: 1rem;
  margin-top: 1rem;
}

.references-prev {
  left: -45px;
}

.references-next {
  right: -45px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-container-left {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding-right: 3rem;
}

.footer-container-right {
  display: flex;
  width: 70%;
  padding-left: 2rem;
}

.footer-container-left>a {
  display: flex;
  width: 221px;
}

.footer-container-left>a>img {
  width: 100%;
}

.footer-container-left .widget_text span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0.5rem 0;
}

.footer-container-left .textwidget {
  display: flex;
  flex-direction: column;
}

.footer-container-left .social-media-wrapper {
  justify-content: flex-start;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.footer-container-right>div {
  display: flex;
  width: 100%;
  justify-content: center;
}

.footer-container-right>div .footer-container-right-list {
  display: flex;
  flex-direction: column;
}

.footer-container-right>div .footer-container-right-list .footer-container-right-list-title {
  font-size: 15px;
  font-weight: 500;
}

.footer-container-right>div .footer-container-right-list>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.footer-container-right>div .footer-container-right-list>ul>li>a {
  font-size: 14px;
  font-weight: 400;
  color: #60626a;
  transition: 0.3s ease-in-out;
}

.footer-container-right>div .footer-container-right-list>ul>li>a:hover {
  color: var(--theme-color);
}

.footer-container-right>div .footer-container-right-list>ul>li {
  margin-bottom: 12px;
}

.footer-wrapper {
  /* margin-top: 4rem; */
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 11%) 0px 0px 50px -15px;
  padding: 3rem 0;
}

#to_top_scrollup {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.footer-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 9;
}

.footer-request-form {
  position: fixed;
  bottom: 110px;
  right: 15px;
  z-index: 9;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-dark-color);
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  cursor: pointer;
}

.footer-request-form>i {
  font-size: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-whatsapp>a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.footer-whatsapp>a>img {
  width: 90%;
}

.heading-title {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* margin-top: 3rem; */
  margin-bottom: 1.5rem;
}

.heading-title>span {
  font-size: 35px;
  font-weight: 300;
  color: var(--theme-dark-color);
  padding-bottom: 0.5rem;
  display: flex;
  position: relative;
  text-transform: uppercase;
}

.heading-title>span::before {
  content: "";
  position: absolute;
  width: 50%;
  bottom: 0;
  height: 1px;
  background-color: var(--theme-dark-color);
  left: 50%;
  transform: translateX(-50%);
}

.sector-page-container {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.sector-page-content {
  display: flex;
  margin: 0.5rem;
  width: calc(33.33% - 1rem);
  background-color: var(--theme-dark-color);
  cursor: pointer;
}

.sector-page-content>a {
  position: relative;
  display: flex;
  width: 100%;
}

.sector-page-content-image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sector-page-content-image>img {
  width: 100%;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
  height: auto !important;
}

.sector-page-content>a::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 30px;
  bottom: 50px;
  left: 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  z-index: 9;
}

.sector-page-content>a::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  z-index: 9;
}

.sector-page-content:hover .sector-page-content-image>img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sector-page-content:hover>a::before,
.sector-page-content:hover>a::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sector-page-content:hover .sector-page-content-image>img {
  transform: scale(1.2);
}

.sector-page-content-title {
  position: absolute;
  font-size: 25px;
  font-weight: 400;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.sector-page-content:hover .sector-page-content-title {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sector-post-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
}

.sector-post-wrapper-left {
  width: 50%;
  font-size: 15px;
  font-family: Roboto, sans-serif;
  color: var(--theme-dark-color) 666;
  font-weight: 400;
  line-height: 26px;
  padding-left: 3rem;
  /* padding-top: 3rem; */
}

.sector-post-wrapper-right {
  display: flex;
  width: 50%;
  height: 100vh;
}

.sector-post-wrapper-right>img {
  width: 100%;
  object-fit: contain;
}

.sector-post-wrapper-left h1 {
  color: #000;
  font-weight: 600;
}

.references-page-wrapper {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.references-page-content {
  margin: 0 0.5rem;
  width: calc(20% - 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, 
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
}

.references-page-content>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem 0;
}

.references-page-content>a>img {
  width: 100%;
  height: auto !important;
}

.references-page-content-name {
  position: absolute;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transform: scale(0.75);
  background-color: #fff;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -webkit-transform 0.3s 0.3s;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    transform 0.3s 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.references-page-content-name>span {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  position: relative;
  text-align: center;
}

.references-page-content-name>span::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 0.1rem;
  background-color: #000;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.references-page-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}

/* .references-page-content:hover::before {
  opacity: 1;
  visibility: visible;
} */

.references-page-content:hover .references-page-content-name {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.2s ease-out, visibility 0.2s ease-out,
    -webkit-transform 0.3s ease-out;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out,
    transform 0.3s ease-out;
}

.sector-gallery {
  margin-top: 3rem;
}

.services-container {
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.services-content {
  display: flex;
}

.services-content:nth-child(2n) {
  flex-direction: row-reverse;
}

.services-content-left {
  position: relative;
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 0 2rem;
  height: auto;
  justify-content: center;
  background-color: #f0f0f0;
}

.services-content-right {
  display: flex;
  width: 50%;
}

.services-content-right>img {
  width: 100%;
  height: auto !important;
}

.services-content-left-title {
  font-size: 25px;
  color: #000;
  font-weight: 400;
  margin-bottom: 1rem;
}

.services-content-left-content {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.services-read-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.services-read-btn>a {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0.5rem;
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-dark-color);
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.services-read-btn>a:hover {
  color: #000;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.sector-post-wrapper-left-title {
  font-size: 25px;
  color: #000;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-contain-info-colorful {
  background-color: #93bfcf;
}

.contact-contain {
  display: flex;
  justify-content: space-between;
  background-color: #f0f0f0;
}

.contact-contain-form {
  display: flex;
  flex-direction: column;
  width: 55%;
  padding-left: 4rem;
  padding-top: 3rem;
  padding-right: 3rem;
}

.contact-contain-info {
  display: flex;
  flex-direction: column;
  width: 45%;
  align-items: flex-end;
}

.contact-contain-info-outside {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
}

.info-outside-transparent {
  display: flex;
  width: 65%;
  height: 60px;
}

.info-outside-colorful {
  display: flex;
  width: 35%;
  background-color: #6096b4;
  height: 60px;
}

.contact-contain-info-center {
  height: 100%;
  background-color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  width: 100%;
}

.info-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.info-center-content>i {
  font-size: 30px;
  color: #fff;
}

.info-center-content>span,
.info-center-content>a {
  font-size: 15px;
  font-weight: 400;
  margin-top: 0.5rem;
  color: #fff;
  text-align: center;
}

.info-center-content>span {
  width: 50%;
}

.info-outside-colorful>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-outside-colorful>ul>li>a>i {
  font-size: 20px;
  color: #fff;
}

.info-outside-colorful>ul>li {
  margin: 0 1rem;
}

.contact-contain-form-text>span {
  font-size: 40px;
  font-weight: 500;
  color: #000;
}

.contact-contain-form-text>p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
}

.form-wrapper-group>span>input,
.form-wrapper-group>span>textarea {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 0;
  box-shadow: none !important;
  outline: 0;
  background-color: #f0f0f0 !important;
}

.form-wrapper-group {
  margin-bottom: 2rem;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.form-submit-btn>input {
  width: 150px !important;
  border-radius: 0;
  box-shadow: none !important;
  outline: 0;
  background-color: var(--theme-dark-color);
  transition: 0.2s ease-in-out;
  border: none !important;
}

.form-submit-btn>input:hover {
  background-color: var(--theme-color);
}

.request-overlay {
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: 0.15s linear;
}

.request-form-fixed {
  position: fixed;
  z-index: 9999;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s linear;
}

.request-form-fixed.fade {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.request-overlay.fade {
  opacity: 0.5;
  visibility: visible;
}

.request-form-remove {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.request-form-remove>i {
  width: 26px;
  height: 26px;
  background-color: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #252525;
}

.request-form-content-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 21px;
  font-weight: 500;
  padding-top: 3rem;
}

.request-form-content {
  position: relative;
  padding: 0 3rem;
  width: 500px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.request-form-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.request-form-group input,
.request-form-group select {
  height: 55px !important;
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 0.25rem !important;
  border: 1px solid #eef2f5 !important;
  color: #2b2e30;
  box-shadow: none;
  width: 100%;
  outline: 0 !important;
}

.request-form-group textarea {
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 0.25rem !important;
  border: 1px solid #eef2f5 !important;
  color: #2b2e30;
  box-shadow: none;
  width: 100%;
  outline: 0 !important;
}

.request-form>div {
  width: 100%;
}

.request-form-group>label {
  font-size: 12px;
  font-weight: 500;
  color: #696969;
}

.request-form-group {
  margin-bottom: 1rem;
}

.request-form-submit-btn>input {
  background-color: #f3330f !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: none;
  padding: 0.5rem;
  font-size: 20px;
}

.header-fixed-wrapper,
.header-fixed-modal {
  display: none;
}

.footer-request-form>span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
}

.ref-area>a>img {
  border: 5px solid #f0f0f0;
  margin-right: 2rem;
  margin-bottom: 2rem;
  border-radius: 0 2rem;
}

.ref-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .header-container-center #cssmenu>ul>li>ul>li>a {
    font-size: 12px;
  }

  .header-container-center #cssmenu>ul>li>a {
    font-size: 13px;
  }

  .header-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .icon-column-content {
    width: 280px;
    max-width: 280px;
    flex-shrink: 0;
  }

  .icon-column-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .icon-column-content:active {
    background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
    background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
    transform: scaleX(1) rotate(0deg);
    transition-delay: 0s, 0.3s, 0.6s;
  }

  .home-text-container {
    position: relative;
    flex-direction: column;
  }

  .home-text-container-left {
    width: 100%;
  }

  .home-text-container-right {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .home-text-container-right>img {
    opacity: 0.5;
  }

  .sector-container-content {
    width: 33.33%;
    margin: 2rem 0;
  }

  .home-about-container-bottom-left {
    width: 100%;
  }

  .home-about-container-bottom {
    position: relative;
    flex-direction: column;
  }

  .home-about-container-bottom-right {
    display: none;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-container-left {
    width: 100%;
    padding: 0;
  }

  .footer-container-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-top: 1rem;
  }

  .footer-container-right>div {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .sector-container-content-title {
    text-align: center;
    transform: unset;
    font-size: 15px;
  }

  .sector-container-content-ikon {
    transform: unset;
  }

  .sector-container-content-border {
    transform: unset;
  }

  .sector-wrapper {
    margin: 0;
  }

  .footer-container-right>div div {
    width: 100%;
  }

  .footer-container-right>div .footer-container-right-list>ul>li {
    margin-bottom: 0;
    padding-bottom: 12px;
    margin-bottom: 6px;
  }

  .footer-container-right>div .footer-container-right-list>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-container-center {
    display: none;
  }

  .header-container-right {
    display: none;
  }

  .header-container {
    justify-content: center;
  }

  .header-wrapper {
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer-whatsapp,
  .footer-request-form {
    display: none;
  }

  .header-fixed-contain {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .header-fixed-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
    padding-bottom: 0;
  }

  .header-fixed-content>a {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .header-fixed-content>span,
  .header-fixed-content>a>span {
    font-weight: 400;
    font-size: 11px;
    color: var(--theme-color);
  }

  .header-fixed-content>i,
  .header-fixed-content>a>i {
    font-size: 22px;
    color: var(--theme-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .header-fixed-wrapper {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 0 20px 10px rgb(0 0 0 / 5%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
  }

  .request-form-content {
    border: none;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 0 1rem;
  }

  .referances-slider-title {
    margin-top: 1rem;
  }

  .footer-wrapper {
    margin-top: 1rem;
  }

  .home-text-wrapper {
    padding-top: 0;
    border-top: none;
  }

  .header-fixed-modal {
    position: fixed;
    display: block;
    z-index: 9999;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    background-color: #fff;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s linear;
  }

  .header-fixed-modal-contain {
    border: none;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    padding: 0 1rem;
    background-color: #fff;
    height: 100%;
  }

  .header-fixed-modal.fade {
    opacity: 1;
    visibility: visible;
    top: 0;
  }

  .header-fixed-modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    padding-top: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
  }

  .header-fixed-modal-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  .header-fixed-modal-remove>i {
    width: 26px;
    height: 26px;
    background-color: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #252525;
  }

  .header-fixed-modal-content>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  }

  .header-fixed-modal-content>ul>li {
    display: flex;
    margin: 1.5rem 0.5rem;
    width: calc(50% - 1rem);
    align-items: center;
    justify-content: center;
  }

  .header-fixed-modal-content>ul>li>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-fixed-modal-content>ul>li>a>img {
    width: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
  }

  .header-fixed-modal-content>ul>li>a>span {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
    margin-top: 0.5rem;
  }

  .request-form-content-title {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
  }

  .header-fixed-modal-content>ul>li>a {
    transition: 0.5s ease-in-out;
  }

  .header-fixed-modal-content>ul>li>a.sm-icon {
    transform: translateY(-20px);
    opacity: 0.3;
    visibility: hidden;
    transition-delay: 0;
  }

  .header-fixed-modal.social.fade .header-fixed-modal-content>ul>li>a.sm-icon {
    transform: unset;
    opacity: 1;
    visibility: visible;
  }

  .header-fixed-modal.social.fade .header-fixed-modal-content>ul>li:nth-child(1)>a.sm-icon {
    transition-delay: 400ms;
  }

  .header-fixed-modal.social.fade .header-fixed-modal-content>ul>li:nth-child(2)>a.sm-icon {
    transition-delay: 600ms;
  }

  .header-fixed-modal.social.fade .header-fixed-modal-content>ul>li:nth-child(3)>a.sm-icon {
    transition-delay: 800ms;
  }

  .header-fixed-modal.social.fade .header-fixed-modal-content>ul>li:nth-child(4)>a.sm-icon {
    transition-delay: 1s;
  }

  .footer-container-right>div .footer-container-right-list .footer-container-right-list-title {
    font-size: 20px;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    transition: padding 0.3s ease-in-out;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>ul {
    position: absolute;
    left: 0;
    top: 35px;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>button {
    background-color: transparent;
    border: none;
    outline: 0;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    padding-top: 0;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>a {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li:not(:last-child)>a,
  .header-fixed-modal-content .mega-menu #cssmenu>ul>li:not(:last-child)>button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>button>i {
    font-size: 20px;
    display: flex;
    color: #000 !important;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>ul>li>a {
    font-weight: 400;
    font-size: 13px;
    color: var(--theme-color);
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>ul>li {
    padding-bottom: 1rem;
  }

  .header-fixed-modal-content .mega-menu {
    margin-top: 1rem;
  }

  .references-page-content {
    margin: 0 0.5rem;
    width: calc(33.33% - 1rem);
    margin-bottom: 1rem;
  }

  .services-content-left-content {
    margin-bottom: 2rem;
    font-size: 14px;
    line-height: 1.7;
  }

  .services-content-left {
    padding: 2rem;
  }

  .services-read-btn {
    bottom: 10px;
    right: 10px;
  }

  .sector-post-wrapper {
    flex-direction: column;
    position: relative;
  }

  .sector-post-wrapper-left {
    width: 100%;
    padding: 1rem;
  }

  .sector-post-wrapper-right {
    width: 100%;
  }

  .sector-page-content>a::before,
  .sector-page-content>a::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .sector-page-content .sector-page-content-title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .sector-page-content {
    width: calc(50% - 1rem);
  }

  .sector-page-content .sector-page-content-image>img {
    transform: scale(1.2);
  }

  .sector-page-content .sector-page-content-image>img {
    opacity: 0.7;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .contact-contain {
    flex-direction: column;
  }

  .contact-contain-form-text {
    margin-bottom: 1rem;
  }

  .contact-contain-form {
    width: 100%;
    padding: 1rem;
  }

  .contact-contain-info {
    width: 100%;
    margin-top: 2rem;
  }

  .contact-contain-info .contact-contain-info-outside:nth-child(1) .info-outside-colorful {
    width: 100%;
  }

  .contact-contain-info .contact-contain-info-outside:nth-child(3) .info-outside-colorful {
    width: 100%;
  }

  .contact-contain-info-center {
    padding: 1.5rem 0;
  }

  .vertical-slider .slick-dots>li>button:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .vertical-slider .slick-dots>li.slick-active>button:hover {
    background: #fff;
  }

  .header-fixed-modal-title>img {
    width: 212px;
  }

  .slider-title {
    font-size: 20px;
  }

  .item>span {
    font-size: 17px;
  }

  .vertical-slider {
    padding: 0;
  }

  .slick-vertical .slick-slide {
    height: 300px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
  }

  .vertical-slider .slick-dots {
    bottom: 0;
    top: unset;
    transform: unset;
    left: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .vertical-slider .slick-dots>li>button {
    transform: unset;
  }

  .vertical-slider .slick-dots>li {
    margin-bottom: 0;
  }

  .vertical-slider .slick-dots>li:not(:last-child) {
    margin-right: 1rem;
  }

  .social-media-wrapper>a.instagram,
  .social-media-wrapper>a.instagram>i {
    border-color: #c13584;
    color: #c13584;
  }

  .social-media-wrapper>a.twitter,
  .social-media-wrapper>a.twitter>i {
    border-color: #00acee;
    color: #00acee;
  }

  .social-media-wrapper>a.facebook,
  .social-media-wrapper>a.facebook>i {
    border-color: #3b5998;
    color: #3b5998;
  }

  .social-media-wrapper>a.youtube,
  .social-media-wrapper>a.youtube>i {
    border-color: #f00;
    color: #f00;
  }

  .sector-post-wrapper-left-title {
    text-align: center;
  }

  .header-fixed-modal-content .mega-menu #cssmenu>ul>li>button.active>i::before {
    content: "\f106";
  }
}

@media screen and (max-width: 553px) {
  .sector-container-content {
    width: 50%;
    margin: 2rem 0;
  }

  .home-about-container-top-text {
    font-size: 14px;
    padding: 0 1rem;
  }

  .home-about-content {
    flex-direction: column;
  }

  .home-about-content-text {
    width: 100%;
    padding: 0;
    text-align: center;
    padding: 0 1rem;
  }

  .home-about-content-text>span {
    width: 100%;
    text-align: center;
  }

  .home-about-content-text>p {
    width: 100%;
  }

  .home-about-content-icon {
    padding-right: 0;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
    border-right: 0;
  }

  .home-about-wrapper {
    padding-top: 0;
  }

  .home-text-container-left-title>span {
    font-size: 30px;
  }

  .home-text-container-left-title-typed>span {
    font-size: 30px;
  }

  .home-text-container-left-text {
    text-align: center;
  }

  .home-text-container-left-title {
    justify-content: center;
  }

  .references-page-content {
    margin: 0 0.5rem;
    width: calc(50% - 1rem);
    margin-bottom: 1rem;
  }

  .services-content {
    flex-direction: column-reverse !important;
  }

  .services-content-left {
    width: 100%;
  }

  .services-content-right {
    width: 100%;
  }

  .services-content-left-title {
    font-size: 24px;
  }

  .rbs-img-container {
    margin-left: 25px !important;
  }

  .sector-page-content {
    width: calc(100% - 1rem);
  }
}