@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;
}

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 .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 {
  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 {
  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 {
  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%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#content .text {
  width: 30%;
  /* height: auto; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#content .contentText {
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#content .contentText .main {
  text-align: center;
}

.contentText .main h1 {
  font-size: 40px;
}

.contentText .main .line {
  height: 2px;
  width: 100%;
  background: var(--orangeColor);
}

.contentText .main span {
  font-size: 14px;
}

.contentText .main .ctaText {
  width: 80%;
  margin: 40px auto 0 auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

.contentText .arrowText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5%;
}

.arrowText .arrow {
  margin-bottom: 20px;
}

.arrowText .pressText {
  font-size: 14px;
  font-weight: 600;
}

/* ***************** FOOTER ***************** */
#footer {
  border-top: 5px solid #003049;
}
#footer .footerWrapper {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 30px;
  font-weight: 500;
}

#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;
}

#footer .footerWrapper .footerRights a {
  text-decoration: none;
}

@media (max-width: 1200px) {
  #content .text img {
    width: 20%;
  }
  .contentText .main .ctaText {
    font-size: 16px;
  }
}

@media (max-width: 955px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--orangeColor);
    height: inherit;
    max-width: 270px;
    width: 100%;
    line-height: 40px;
    transition: all 0.5s ease;
    z-index: 100;
  }
  nav .navbar .contact-lang {
    display: none;
  }

  nav .navbar .nav-links .links .contactBtn,
  nav .navbar .nav-links .links .lang {
    display: block;
  }

  nav .navbar .nav-links .sidebar-logo {
    text-align: center;
  }
  .navbar .bx-menu {
    color: var(--fontColor);
    font-size: 35px;
    font-weight: 800;
  }

  .nav-links .sidebar-logo .bx-x {
    text-align: center;
    color: var(--fontColor);
    font-size: 25px;
    font-weight: 800;
    margin-top: 10px;
  }

  .navbar .bx-menu,
  nav .navbar .nav-links .sidebar-logo,
  .nav-links .sidebar-logo .bx-x {
    display: block;
  }

  nav .navbar .nav-links .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .nav-links .links li {
    display: block;
    font-size: 14px;
  }
  nav .navbar .nav-links .links .subMenu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background: none;
  }
  nav .navbar .nav-links .links .subMenu li {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    line-height: 30px;
  }
  nav .navbar .nav-links .links .subMenu li a {
    white-space: wrap;
  }
  nav .navbar .nav-links .links li:hover .enterprisesSubmenu,
  nav .navbar .contact-lang .links li:hover .contactLangSubmenu {
    display: none;
  }
  nav .navbar .nav-links .links .arrow {
    line-height: 40px;
  }

  nav .navbar .nav-links .links li:hover .enterprisesArrow {
    transform: rotate(0deg);
  }
  nav .navbar .nav-links.show1 .links li .enterprisesArrow {
    transform: rotate(180deg);
  }

  nav .navbar .nav-links.show1 .links .subMenu.enterprisesSubmenu {
    display: block;
  }
  nav .navbar .nav-links .links .subMenu li:hover {
    background: none;
    border-radius: 0;
  }

  .contentText .main .ctaText {
    font-size: 14px;
    line-height: 25px;
  }
  .arrowText .arrow {
    display: none;
  }
  .arrowText .pressText p {
    font-size: 12px;
    text-align: center;
    color: rgba(0, 48, 73, 0.5);
  }
  .footerMain,
  .footerRights {
    font-size: 14px !important;
  }
}

@media (max-width: 700px) {
  #content {
    height: 60vh;
  }
  #content .text {
    display: none;
  }
  .contentText .main h1 {
    font-size: 35px;
  }
  .contentText .main .ctaText {
    font-size: 16px;
    text-align: justify;
  }
  .contentText .main .line {
    width: 70%;
    margin: auto;
  }
  #content .leftDecor,
  #content .rightDecor {
    display: none;
  }
  #footer .footerWrapper {
    width: 80%;
    margin: auto;
    gap: 50px;
    padding-top: 0;
  }
  #footer .footerWrapper .footerMain {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    line-height: 20px;
    text-align: center;
  }
  #footer .footerWrapper .footerMain .footerAdress {
    max-width: 100%;
  }
  #footer .footerWrapper .footerMain .footerContacts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 20%;
    white-space: nowrap;
  }
  #footer .footerWrapper .footerMain .footerMedia {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 20%;
  }
  #footer .footerWrapper .footerRights {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footerMain,
  .footerRights {
    font-size: 12px;
  }
  .contentText .main .ctaText {
    font-size: 12px;
    line-height: 20px;
  }
  .contentText .arrowText {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .contentText .main h1 {
    font-size: 30px;
  }
  .contentText .main span {
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  nav .navbar .logo{
    width: 50%;
  }
  nav .navbar .logo img{
    width: 100%;
  } 
  nav .navbar .nav-links {
    max-width: 100%;
  }
  nav .navbar .nav-links .links {
    text-align: center;
  }
  .contentText .main h1 {
    font-size: 25px;
  }
  .contentText .main span {
    font-size: 11px;
  }
  .contentText .main .line {
    width: 70%;
    margin: auto;
  }
  .contentText .main .ctaText {
    text-align: justify;
  }
  .arrowText .pressText {
    display: none;
  }
  .lineDots {
    margin: 2rem auto;
  }
  .footerMain .footerAdress,
  .footerMain .footerContacts a,
  .footerMain .footerMedia a,
  .footerWrapper .footerRights .year,
  .footerWrapper .footerRights .rights,
  .footerWrapper .footerRights .privacy a {
    font-size: 12px;
  }
}
