@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
  color: var(--fontColor);
}

:root {
  --fontColor: #003049;
  --orangeColor: #f5831f;
  --bgColor: #f5f5f5;
}

body {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--fontColor);
}

nav {
  width: 100%;
  height: 70px;
}

nav .navbar {
  height: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}
nav .navbar .nav-links,
nav .navbar .contact-lang {
  height: 100%;
  line-height: 70px;
}
nav .navbar .links {
  display: flex;
}

nav .navbar .links .arrow {
  height: 100%;
  width: 22px;
  text-align: center;
  line-height: 70px;
  transition: all 0.3s ease;
}

nav .navbar .nav-links .links li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

nav .navbar .nav-links .links .contactBtn,
nav .navbar .nav-links .links .lang {
  display: none;
}

nav .navbar .contact-lang .links li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

nav .navbar .contact-lang .links li a,
nav .navbar .nav-links .links li a {
  height: 100%;
  white-space: nowrap;
}
nav .navbar .contact-lang .links li.contactBtn a {
  font-weight: 700;
  color: var(--orangeColor);
}

nav .navbar .nav-links .links li:hover .arrow,
nav .navbar .contact-lang .links li:hover .arrow {
  transform: rotate(180deg);
  text-decoration: none;
}

nav .navbar .nav-links .links .subMenu {
  position: absolute;
  z-index: 100;
  top: 70px;
  left: 0;
  line-height: 40px;
  box-shadow: 0 0 5px var(--fontColor);
  border-radius: 10px;
  display: none;
  background: var(--bgColor);
}

nav .navbar .contact-lang .links .subMenu {
  position: absolute;
  top: 50px;
  left: 10px;
  line-height: 40px;
  box-shadow: 0 0 5px var(--fontColor);
  border-radius: 10px;
  display: none;
}

/* /////////////////////////////////////////// */
nav .navbar .nav-links .links .subMenu li:hover,
nav .navbar .contact-lang .links .contactLangSubmenu li:hover {
  background: #eae2b7;
  border-radius: 10px;
}
/* /////////////////////////////////////////// */

nav .navbar .nav-links .links .subMenu li {
  padding: 0 15px;
  line-height: 50px;
}

nav .navbar .nav-links .links .subMenu li a {
  color: var(--fontColor);
}

nav .navbar .nav-links .links li:hover .enterprisesSubmenu,
nav .navbar .contact-lang .links li:hover .contactLangSubmenu {
  display: block;
  z-index: 100;
}

.navbar .bx-menu,
nav .navbar .nav-links .sidebar-logo,
.nav-links .sidebar-logo .bx-x {
  display: none;
}

.lineDots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 80%;
  margin: 5rem auto;
}

.lineDot {
  position: relative;
  text-align: center;
}

.companyLogo {
  position: relative;
  transition: transform 0.3s ease;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(245, 131, 31, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.lineDot a {
  text-decoration: none;
}

.lineDot a img {
  width: 100%;
  margin-bottom: 20px;
}

/* Animation classes */
.lineDot .dot.enlarge {
  transform: scale(2) translateX(-50%);
  background-color: #f5831f;
}

.lineDot .companyLogo.move-up {
  transform: translateY(-20px);
}

#content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#content .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

#content .center h1 {
  font-size: 2.5rem;
  text-align: center;
}

.center .centerContent {
  width: 100%;
  display: flex;
  gap: 8vw;
  /* Never Write Gap */
  justify-content: space-between;
}

.centerContent .centerLeft {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.centerLeft .text{
  margin-bottom: 50px;
}

.centerLeft .text p {
  max-width: 445px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  line-height: 30px;

}

.centerLeft .text p span {
  font-weight: bold;
}

.centerLeft .ctaButton a {
  padding: 10px 20px;
  background: var(--orangeColor);
  color: var(--bgColor);
  border-radius: 6px;
  transition: all ease 0.5s;
}

.centerLeft .ctaButton a:hover {
  background-color: #fcbf49;
  color: var(--fontColor);
}

.centerLeft .plainDecor {
  width: 100%;
  text-align: right;
}

.centerLeft .plainDecor img {
  width: 100%; /* Ensures the image scales with the width of the container */
  height: auto; /* Maintains the aspect ratio */
  max-width: 100%; /* Prevents the image from exceeding its container size */
  object-fit: contain; /* Adjusts how the image fits within the space */
}

.centerContent .centerRight {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 5vw;
  align-content: center;
}

.centerRight .servElement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.servElement .image {
  width: 100%;
}

.servElement .image img {
  width: 100%;
}

.servElement .name {
  text-align: center;
  font-weight: 500;
  padding: 30px;
}
.servElement .image img {
  transition: transform ease 0.8s;
}

.servElement .icon {
  position: absolute;
  top: 50%;
}

.servElement:hover .image img {
  transform: scale(1.08);
}

#footer {
  width: 100%;
  padding: 20px;
  background: #f5f5f5;
  border-top: 5px solid #003049;
}

#footer .footerWrapper {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 30px;
  font-weight: 500;
  background: #f5f5f5;
}

#footer a:hover {
  color: #f5831f;
  transition: all 0.3s ease;
}

#footer .footerWrapper .footerMain {
  display: flex;
  justify-content: space-evenly;
  line-height: 30px;
}

#footer .footerWrapper .footerMain .footerAdress {
  max-width: 200px;
}

#footer .footerWrapper .footerMain .footerContacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#footer .footerWrapper .footerMain .footerMedia {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

#footer .footerWrapper .footerRights {
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
  padding-bottom: 30px;
}





