/* - Fonts - */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* --------- */

/* - Basic - */
:root
{
  --black: #000000;
  --white: #ffffff;
  --light-blue: #707bb9;
  --middle-light-blue: #4b5487;
  --middle-blue: #2c3257;
  --middle-dark-blue: #1a1d38;
  --dark-blue: #040926;
}

html
{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after 
{
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

*
{
  font-family: "Open Sans", sans-serif;
}

a, li
{
  text-decoration: none;
  list-style: none;
}

.svg-down
{
  transform: rotate(180deg);    
}

.span-color
{
  color: var(--light-blue);
}

.span-price
{
  font-size: 15px;
}
/* --------- */

/* - Mobile Navbar - */
.navbar
{
  display: none !important;
}

.navbar-2
{
  display: none !important;
}

.container 
{
  width: 100%;
  margin: auto;
  background-color: var(--dark-blue);
}

.mobile-navbar 
{
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 3;
}

.nav-container 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}

.mobile-navbar .menu-items 
{
  width: 100%;
  height: 100vh;
  background-color: var(--light-blue);
  transform: translateX(-150%);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  position: absolute;
  z-index: 3;
}

.languages img
{
  width: 25px;
  height: 25px;
  margin: 0px 2.5px;
  border-radius: 25%;
}

.mobile-navbar .menu-items.visible 
{
  transform: translateX(0);
}

.mobile-navbar .nav-container li 
{
  list-style: none;
}

.mobile-navbar .nav-container a 
{
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1.2rem;
}

.mobile-navbar .nav-container a:hover
{
  font-weight: bolder;
}

.nav-container 
{
  display: block;
  position: relative;
}

.nav-container .checkbox 
{
  position: absolute;
  display: block;
  width: 32px;
  height: 26px;
  top: 15px;
  left: 15px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines 
{
  display: block;
  width: 32px;
  height: 26px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line 
{
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background-color: var(--white);
}

.nav-container .hamburger-lines .line1 
{
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 
{
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 
{
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.mobile-navbar .menu-items li 
{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.mobile-navbar .menu-items li:last-of-type
{
  margin-bottom: 10px;
}

.logo 
{
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  right: 5px;
  z-index: 3;
}

.container .logo img
{
  width: auto;
  height: 55px;
  margin-bottom: 0px;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items 
{
  transform: translateX(0);
  position: fixed;
}

.nav-container input[type="checkbox"]:checked ~ .checkbox
{
  position: fixed;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines
{
  position: fixed;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 
{
  background-color: var(--white);
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 
{
  background-color: var(--white);
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3
{
  background-color: var(--white);
  transform: rotate(-45deg);
}
/* --------- */

.page-background
{
  display: none;
}

/* - Home - */
.home
{
  width: 100%;
  height: 90vh;
  padding: 20px;
  background-color: var(--dark-blue);
  background-image: -webkit-linear-gradient(30deg, #040926 60%, #707bb9 40%);
}

.home-text
{
  width: 100%;
  max-width: 350px;
}

.home-text h1
{
  font-size: 35px;
  color: var(--white);
}

.home-text h1:last-of-type
{
  margin-bottom: 30px;
}

.home-text hr
{
  width: 125px;
  height: 4px;
  margin-bottom: 30px;
  background-color: var(--light-blue);
  border: none;
  text-align: start;
}

.home-text p
{
  max-width: 350px;
  margin-bottom: 30px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  color: var(--white);
  line-height: 1.6;
}

.home-text a
{
  padding: 7px 20px;
  color: var(--white);
  background-color: var(--light-blue);
  border-radius: 10px;
  transition: background-color 0.5s ease;
  font-weight: 700;
}

.home-text a:hover
{
  color: var(--white);
  background-color: var(--middle-blue);
}

.home-image
{
  width: 100%;
}

.home-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

.welcome
{
  width: 100%;
  padding: 20px;
}

.welcome .content
{
  width: 100%;
  max-width: 350px;
}

.welcome h1
{
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-size: 35px;
}

.welcome p
{
  line-height: 1.6;
}

.ideas-title
{
  width: 100%;
  padding: 20px 20px 0px 20px;
}

.ideas-title .content
{
  width: 100%;
  max-width: 350px;
}

.ideas-title h1
{
  font-size: 35px;
}

.ideas
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
}

.idea
{
  width: 100%;
  height: 280px;
  max-width: 350px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f3f4f8;
  border-radius: 15px;
  transition: background-color 0.5s ease;
}

.idea:hover
{
  background-color: #cacfe1;
  cursor: context-menu;
}

.idea:last-of-type
{
  margin-bottom: 0px;
}

.idea-title
{
  margin-bottom: 10px;
}

.idea-title .fa-handshake, .idea-title .fa-users, .idea-title .fa-shield-halved,.idea-title .fa-user-tie
{
  margin-right: 10px;
  font-size: 25px;
}

.idea-text
{
  line-height: 1.6;
}

.promote-contact
{
  width: 100%;
  padding: 20px;
  color: var(--white);
  background-color: var(--light-blue);
}

.promote-contact h1
{
  max-width: 350px;
  margin-bottom: 20px;
  font-size: 35px;
  text-align: center;
}

.promote-contact a
{
  max-width: 350px;
  padding: 7px 20px;
  color: var(--white);
  background-color: var(--middle-light-blue);
  border-radius: 10px;
  font-size: 15px;
  transition: background-color 0.5s ease;
  font-weight: 700;
}

.promote-contact a:hover
{
  color: var(--white);
  background-color: var(--middle-dark-blue);
}
/* --------- */

/* - About - */
.about
{
  flex-wrap: wrap;
  width: 100%;
  height: 90vh;
  position: relative;
}

.about-text
{
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.about-text h1
{
  margin-bottom: 10px;
  font-size: 35px;
}

.about-image
{
  width: 100%;
  max-width: 350px;
}

.about-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

.colleagues
{
  width: 100%;
}

.colleagues .content
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
}

.colleague 
{
  width: 100%;
  height: 260px;
  max-width: 350px;
  padding: 60px 20px 20px 20px;
  margin-bottom: 60px;
  background-color: #f3f4f8;
  border-radius: 15px;
  text-align: center;
  transition: background-color 0.5s ease;
  position: relative;
}

.colleague:hover 
{
  background-color: #cacfe1;
  cursor: context-menu;
}

.colleague:last-of-type 
{
  margin-bottom: 0px;
}

.colleague-image 
{
  top: -12.5%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.colleague-image img 
{
  width: 75px; /* Adjusted size */
  padding: 0px;
}

.colleague h1 
{
  margin-bottom: 5px;
  font-size: 25px;
}

.colleague h2 
{
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--light-blue);
}

.colleague p 
{
  width: 100%;
  line-height: 1.6;
  text-align: center;
}

.colleague p:last-of-type 
{
  margin-bottom: 15px;
}

.colleague-languages p 
{
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 0px;
  color: var(--white);
  background-color: var(--dark-blue);
  border-radius: 5px;
  font-size: 12px;
}

.colleague-languages p:last-of-type 
{
  margin-bottom: 0px;
}

.code-title
{
  width: 100%;
  max-width: 350px;
  padding: 20px 20px 0px 20px;
}

.code-title h1
{
  margin-bottom: 10px;
  font-size: 35px;
}

.code-title p
{
  font-size: 15px;
}

.code-languages {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.fa-brands, .fa-database {
  flex: 0 0 20%; 
  margin-bottom: 20px;
  font-size: 100px;
  color: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center; 
}

.fa-database{
  margin-bottom: 0px;
}

@media only screen and (max-width: 500px) {
  .code-languages {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fa-brands, .fa-database {
    flex: 0 0 25%; /* Adjust the width as needed */
    margin-bottom: 20px;
    font-size: 70px; /* Adjust font size for smaller screens */
  }
}


/* --------- */

/* - Services - */
.services
{
  flex-wrap: wrap;
  width: 100%;
  height: 90vh;
  position: relative;
}

.services-text
{
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.services-text h1
{
  margin-bottom: 10px;
  font-size: 35px;
}

.services-image
{
  width: 100%;
  max-width: 350px;
}

.services-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

.steps
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
}

.steps h1
{
  font-size: 35px;
  margin-bottom: 20px;
}

.steps .content
{
  width: 100%;
}

.step
{
  width: 100%;
  height: 305px;
  max-width: 350px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f3f4f8;
  border-radius: 15px;
  transition: background-color 0.5s ease;
}

.step:last-of-type
{
  margin-bottom: 0px
}

.step:hover
{
  background-color: #cacfe1;
  cursor: context-menu;
}

.step h1
{
  font-size: 17px;
  margin-bottom: 10px;
}

.step p
{
  font-size: 15px;
  line-height: 1.6;
}

.consultation
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  position: relative;
}

.consultation-text
{
  width: 100%;
  max-width: 350px;
}

.consultation-text .span-color
{
  text-transform: uppercase;
}

.consultation-text h1
{
  margin-bottom: 20px;
  font-size: 25px;
}

.consultation-text p
{
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 1.6;
}

.consultation-text a
{
  padding: 7px 25px;
  color: var(--white);
  background-color: var(--light-blue);
  border-radius: 10px;
  transition: background-color 0.5s ease;
  text-transform: uppercase;
  font-weight: bold;
}

.consultation-text a:hover
{
  background-color: var(--middle-blue);
}

.consultation-image
{
  width: 100%;
}

.consultation-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

.benefits
{
  width: 100%;
}

.price-table
{
  width: 100%;
  padding: 20px;
}

.price-table-2
{
  display: none;
}

.price-info
{
  width: 100%;
  max-width: 350px;
}

.price-info h1
{
  margin-bottom: 10px;
  font-size: 35px;
  color: var(--dark-blue);
}

.price-info p
{
  margin-bottom: 20px;
}

.service
{
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
  color: var(--white);
}

.service-info
{
  width: 100%;
  height: 200px;
  padding: 40px 20px;
  background-color: var(--light-blue);
}

.service-info h1
{
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--white);
  text-align: center;
}

.service-info p
{
  margin-bottom: 0px;
  font-size: 20px;
  text-align: center;
}

.feature-name
{
  padding: 20px;
  color: var(--white);
  background-color: var(--middle-light-blue);
}

.feature-name p
{
  margin-bottom: 0px;
  text-align: center;
}

.feature-check
{
  padding: 20px;
  color: var(--white);
  background-color: var(--light-blue);
}

.service-2
{
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
  color: var(--white);
}

.service-info-2
{
  width: 100%;
  height: 200px;
  padding: 40px 20px;
  background-color: var(--middle-light-blue);
}

.service-info-2 h1
{
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--white);
  text-align: center;
}

.service-info-2 p
{
  margin-bottom: 0px;
  font-size: 20px;
  text-align: center;
}

.feature-name-2
{
  padding: 20px;
  color: var(--white);
  background-color: #2c3257;
}

.feature-name-2 p
{
  margin-bottom: 0px;
  text-align: center;
}

.feature-check-2
{
  padding: 20px;
  color: var(--white);
  background-color: var(--middle-light-blue);
}

.service-3
{
  width: 100%;
  max-width: 350px;
  color: var(--white);
}

.service-info-3
{
  width: 100%;
  height: 200px;
  padding: 40px 20px;
  background-color: var(--middle-blue);
}

.service-info-3 h1
{
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--white);
  text-align: center;
}

.service-info-3 p
{
  margin-bottom: 0px;
  font-size: 20px;
  text-align: center;
}

.feature-name-3
{
  padding: 20px;
  color: var(--white);
  background-color: var(--middle-dark-blue);
}

.feature-name-3 p
{
  margin-bottom: 0px;
  text-align: center;
}

.feature-check-3
{
  padding: 20px;
  color: var(--white);
  background-color: var(--middle-blue);
}

.maintenance
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  position: relative;
}

.maintenance .content
{
  max-width: 350px;
}

.maintenance-text
{
  width: 100%;
}

.maintenance-text .span-color
{
  color: var(--light-blue);
  font-size: 20px;
}

.maintenance-text h1
{
  margin-bottom: 10px;
  font-size: 25px;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

.maintenance-text h2
{
  margin-bottom: 10px;
  font-size: 20px;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

.maintenance-text p
{
  font-size: 15px;
  line-height: 1.6;
}

.maintenance-image
{
  width: 100%;
}

.maintenance-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

/*
.maintenance-image
{
  width: 100%;
  margin-bottom: 20px;
}

.maintenance-image img
{
  width: 100%;
}
/* --------- */

/* - Projects - */
.projects-intro
{
  flex-wrap: wrap;
  width: 100%;
  height: 90vh;
  position: relative;
}

.projects-text
{
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.projects-text h1
{
  margin-bottom: 10px;
  font-size: 35px;
}

.projects-text p
{
  margin-bottom: 20px;
}

.projects-text a
{
  color: var(--white);
  background-color: var(--middle-blue);
  padding: 7px 30px;
  border-radius: 10px;
  transition: background-color 0.5s ease;
}

.projects-text a:hover
{
  color: var(--white);
  background-color: var(--light-blue);
}

.projects-image
{
  width: 100%;
  max-width: 350px;
}

.projects-image img
{
  width: 75%;
  height: 100%;
  opacity: 0.3;
  object-fit: contain;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: -1;
}

.projects
{
  width: 100%;
  padding: 20px;
}

.project
{
  width: 100%;
  margin-bottom: 20px;
}

.project:last-of-type
{
  margin-bottom: 0px;
}

.project-text
{
  width: 100%;
  max-width: 350px;
}

.project-text h1
{
  margin-bottom: 15px;
  font-size: 25px;
}

.project-text p
{
  margin-bottom: 25px;
}

.project-image
{
  width: 100%;
  height: auto;
  max-width: 350px;
  border-radius: 15px;
  border: 1px solid #f3f4f8;
  transition: filter 0.5s;
}

.project-image:hover
{
  filter: brightness(90%);
  cursor: pointer;
}

.project-image img
{
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.specifications
{
  flex-wrap: wrap;
  justify-content: space-between;
}

.technologies
{
  width: 60%;
}

.budget
{
  width: 40%;
}

.technologies h1, .time h1, .budget h1
{
  margin-bottom: 5px;
  font-size: 17px;
}

.technologies p, .time p, .budget p
{
  margin-bottom: 0px;
}

.specifications
{
  margin-bottom: 30px;
}
/* --------- */

/* - Contact - */
.contact
{
  width: 100%;
  padding: 20px;
}

.contact-form
{
  width: 100%;
}

.contact-form h1
{
  margin-bottom: 15px;
  font-size: 25px;
}

.contact-form p
{
  margin-bottom: 15px;
  font-size: 17px;
}

.contact-form p:last-of-type
{
  margin-bottom: 20px;
}

.contact-form .fa-envelope, .contact-form .fa-phone
{
  margin-right: 15px;
  font-size: 20px;
  color: var(--light-blue);
}

.field
{
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: none;
  border-radius: 15px;
  color: var(--dark-blue);
  background-color:#f3f4f8;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  resize: vertical;
}

.idk
{
  flex-wrap: wrap;
  width: 100%;
}

.submit-button
{
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 40px;
  border: none;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--light-blue);
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  transition: background-color 0.5s ease;
}

.submit-button:hover
{
  color: var(--white);
  background-color: var(--dark-blue);
}

.contact-details
{
  width: 100%;
}

.address h1
{
  margin-bottom: 15px;
  font-size: 25px;
}

.fa-location-dot
{
  margin-right: 15px;
  font-size: 20px;
  color: var(--light-blue);
}

.address p
{
  margin-bottom: 15px;
}

.address p:last-of-type
{
  margin-left: 30px;
}

.googleMap
{
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 15px;
}
/* --------- */

/* - Footer - */
.footer
{
  width: 100%;
  padding: 20px;
  background-color: var(--dark-blue);
  position: relative;
}

.footer h1
{
  width: 100%;
  margin-bottom: 30px;
  font-size: 30px;
  opacity: 0.8;
  color: var(--white);
}

.footer-info
{
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.footer-parts
{
  width: 50%;
  margin-bottom: 30px;
}

.footer-parts:nth-child(3)
{
  width: 100%;
}

.footer-parts:last-of-type
{
  display: none;
}

.footer-parts h1
{
  margin-bottom: 10px;
  font-size: 20px;
  opacity: 0.8;
  color: var(--white);
}

.footer-parts p
{
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--white);
  opacity: 0.8;
}

.footer-parts p:last-of-type
{
  margin-bottom: 0px;
}

.footer-parts a
{
  width: fit-content;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--white);
  opacity: 0.8;
}

.footer-parts a:hover
{
  text-decoration: underline;
}

.footer-parts a:last-of-type
{
  margin-bottom: 0px;
}

.footer-parts .fa-phone, .footer-parts .fa-envelope
{
  font-size: 15px;
  margin-right: 10px;
}

.footer-parts img
{
  width: 50%;
}

.privacy
{
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  opacity: 0.8;
}

.privacy a
{
  color: var(--white);
  text-decoration: underline;
}

.copyright
{
  display: block;
  font-size: 11px;
  opacity: 0.8;
  color: var(--white);
}
/* --------- */

/* - Utility Classes - */
.fr
{
  display: flex;
  flex-direction: row;
}

.fc
{
  display: flex;
  flex-direction: column;
}

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

.frcc
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.frsc
{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.frbc
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.fccc
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fcsc
{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.fcbc
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.fces
{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.fcec
{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.fccs
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.fcce
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
/* --------- */

/* - Responsive - */
@media only screen and (min-width: 400px)
{
  /* - Footer - */
  .footer-links
  {
    flex-direction: row;
  }

  .footer-circle
  {
    display: flex;
  }
  /* --------- */

  /* - Contact - */
  .idk
  {
    flex-direction: row;
    justify-content: space-between;
  }

  .idk .field
  {
    width: 49%;
  }
  /* --------- */
}

@media only screen and (min-width: 768px)
{
  /* - Navbar - */
  .mobile-navbar
  {
    display: none;
  }

  .navbar
  {
    display: flex !important;
    width: 100%;
    height: 60px;
    background-color: var(--dark-blue);
    position: sticky;
    top: 0;
    z-index: 3;
  }

  .navbar-logo
  {
    align-items: center;
    height: 100%;
  }

  .navbar .navbar-logo img
  {
    width: auto;
    height: 60px;
  }

  .menu ul a
  {
    margin: 0px 5px;
    color: var(--white);
  }

  .menu ul a:hover
  {
    font-weight: bolder;
  }

  .menu ul a:last-of-type
  {
    margin: 0px 10px 0px 5px;
    color: var(--white);
  }

  .languages
  {
    margin-right: 10px;
  }

  .languages img
  {
    width: 25px;
    height: 25px;
    margin: 0px 2.5px;
    border-radius: 25%;
  }

  .language
  {
    width: 100%;
  }
  /* --------- */

  .page-background
  {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
  }

  .page-background img
  {
    width: 100%;
  }

  /* - Home - */
  .home
  {
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 90vh;
    padding: 50px;
  }

  .home-text
  {
    max-width: none;
    width: 50%;
  }

  .home-image
  {
    width: 50%;
  }

  .home-image img
  {
    width: 100%;
    opacity: 1;
    right: 0;
    bottom: 0;
    object-fit: contain;
    position: relative;
    z-index: 0;
  }

  .welcome
  {
    padding: 50px;
  }

  .welcome .content
  {
    max-width: none;
  }

  .ideas-title
  {
    padding: 0px 50px;
  }

  .ideas-title .content
  {
    max-width: none;
  }

  .ideas
  {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 20px 50px 50px 50px;
  }

  .idea
  {
    width: 49%;
    max-width: none;
    margin-bottom: 0px;
  }

  .idea:first-of-type
  {
    margin-bottom: 20px;
  }

  .idea:nth-child(2)
  {
    margin-bottom: 20px;
  }

  .idea-title .fa-handshake, .idea-title .fa-users, .idea-title .fa-shield-halved,.idea-title .fa-user-tie
  {
    margin-right: 10px;
    font-size: 35px;
  }

  .promote-contact
  {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
  }

  .promote-contact h1
  {
    width: 75%;
    max-width: none;
    margin-bottom: 0;
    font-size: 25px;
    text-align: start;
  }

  .promote-contact a
  {
    max-width: none;
    text-align: center;
  }
  /* --------- */

  /* - About - */
  .about
  {
    width: 100%;
    height: 90vh;
    flex-direction: row;
  }
  
  .about-text
  {
    width: 50%;
    max-width: none;
    padding: 50px;
    padding-right: 50px;
    margin-bottom: 0px;
  }
  
  .about-text h1
  {
    margin-bottom: 30px;
  }

  .about-image
  {
    width: 50%;
    max-width: none;
    padding-right: 50px;
  }

  .about-image img
  {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 0;
  }

  .colleagues .content
  {
    padding: 50px;
    flex-direction: row;
    justify-content: space-between;
  }

  .colleague
  {
    width: 48%;
    max-width: none;
  }

  .colleague:last-of-type
  {
    margin-right: 0px;
    margin-top: 0px;
  }

  .colleague:nth-child(2)
  {
    margin-right: 0px;
  }

  .code-title
  {
    max-width: none;
    align-items: flex-start;
    padding: 0px 50px;
  }

  .code-title h1
  {
    max-width: none;
  }

  .code-languages
  {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
    padding: 50px;
  }

  .fa-brands, .code-image
  {
    display: flex;
    justify-content: center;
    width: 20%;
    margin-bottom: 0px;
  }

  .fa-brands:nth-last-of-type(-n+1)
  {
    margin-bottom: 0px;
  } 

  .code-languages img
  {
    width: auto;
    height: 104.67px;
    padding: 7px;
  }
  /* --------- */

  /* - Services - */
  .services
  {
    width: 100%;
    height: 90vh;
    flex-direction: row;
  }

  .services-text
  {
    width: 50%;
    max-width: none;
    padding: 50px;
    padding-right: 50px;
    margin-bottom: 0px;
  }

  .about-text h1
  {
    margin-bottom: 30px;
  }

  .services-image
  {
    width: 50%;
    max-width: none;
    padding-right: 50px;
  }

  .services-image img
  {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 0;
  }

  .steps
  {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 50px;
  }

  .steps h1
  {
    width: 100%;
  }

  .step
  {
    max-width: none;
    width: 49%;
    height: 265px;
  }

  .step:nth-child(3)
  {
    margin-bottom: 0px;
  }

  .step:nth-child(4)
  {
    margin-bottom: 0px;
  }

  .consultation
  {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0px 50px;
  }

  .consultation-text
  {
    width: 60%;
    max-width: none;
    margin-bottom: 0px;
    padding-right: 60px;
  }

  .consultation-text h1
  {
    font-size: 35px;
  }

  .consultation-text h2
  {
    font-size: 25px;
  }
  
  /*
  .consultation-image
  {
    width: 40%;
    max-width: none;
    padding-left: 20px;
  }
  */

  .consultation-image
  {
    width: 40%;
  }

  .consultation-image img
  {
    width: 100%;
    height: 100%;
    opacity: 1;
    right: 0;
    bottom: 0;
    object-fit: contain;
    position: relative;
    z-index: 0;
  }

  .price-table
  {
    display: none;
  }

  .price-table-2
  {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 100px 50px 0px 50px;
  }

  .price-services
  {
    width: 24%;
  }

  .price-info
  {
    justify-content: center;
    height: 200px;
    padding: 40px 20px 40px 0px;
  }

  .price-info h1
  {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
  }

  .price-info p
  {
    margin-bottom: 0px;
  }

  .features
  {
    padding: 0px 20px 0px 0px;
  }

  .service, .service-2
  {
    width: 24%;
    margin-bottom: 0px;
  }

  .service-3
  {
    width: 24%;
  }

  .feature-name
  {
    justify-content: center;
    height: 60px;
    padding: 0px;
    color: var(--dark-blue);
    background-color: var(--white);
  }

  .feature-name p
  {
    font-size: 15px;
    text-align: start;
  }

  .price-services hr
  {
    width: 100%;
    height: 2px;
    background-color: #d3d3d3;
    border: none;
    text-align: center;
  }

  .feature-check
  {
    height: 62px;
    background-color: var(--light-blue);
  }

  .feature-check-2
  {
    height: 62px;
    background-color: var(--middle-light-blue);
  }

  .feature-check-3
  {
    height: 62px;
    background-color: var(--middle-blue);
  }

  .feature-check-4
  {
    height: 62px;
    background-color: var(--middle-dark-blue);
  }

  .maintenance
  {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 50px;
    background-color: var(--white);
  }

  .maintenance .content
  {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .maintenance-image
  {
    width: 50%;
    padding: 0px;
  }

  .maintenance-image img
  {
    width: 100%;
    height: 100%;
    opacity: 1;
    right: 0;
    bottom: 0;
    object-fit: contain;
    position: relative;
    z-index: 0;
  }

  .maintenance-text
  {
    width: 60%;
    margin-bottom: 0px;
    padding: 0px 0px 0px 50px;
    text-align: end;
  }

  .maintenance-text h1
  {
    font-size: 30px;
  }

  .maintenance-text h2
  {
    font-size: 25px;
  }
  /* --------- */

  /* - Projects - */
  .projects-intro
  {
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 90vh;
  }

  .projects-text
  {
    width: 50%;
    max-width: none;
    padding: 50px;
    padding-right: 50px;
  }

  .projects-text h1
  {
    margin-bottom: 30px;
  }

  .projects-text p
  {
    margin-bottom: 40px;
  }
  
  .projects-image
  {
    width: 50%;
    max-width: none;
    padding-right: 50px;
  }

  .projects-image img
  {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: relative;
    z-index: 0;
  }

  .projects
  {
    padding: 50px;
  }

  .project
  {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 15px;
    background-color: #f3f4f8;
  }

  .project-text
  {
    display: flex;
    justify-content: center;
    width: 50%;
    max-width: none;
    padding-right: 50px;
  }

  .specifications
  {
    margin-bottom: 0px;
  }

  .project-image
  {
    width: 50%;
    max-width: none;
    padding: 25px 0px;
    border-radius: 15px;
    box-shadow: none;
  }

  .project-image img
  {
    border-radius: 15px;
    border: 1px solid lightgray;
  }
  /* --------- */

  /* - Contact - */
  .contact
  {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 25px 50px;
  }

  .contact-form
  {
    width: 60%;
    padding-right: 50px;
  }

  .contact-details
  {
    width: 40%;
  }

  .submit-button
  {
    margin-bottom: 0px;
  }

  .googleMap
  {
    height: 330px;
  }
  /* --------- */

  /* - Footer - */
  .footer
  {
    padding: 50px;
  }

  .footer-info
  {
    justify-content: space-between;
  }

  .footer-parts
  {
    width: 30%;
    margin-bottom: 70px;
  }

  .footer-parts:nth-child(3)
  {
    width: 36%;
  }

  .privacy
  {
    position: absolute;
    right: 50px;
    bottom: 50px;
    margin-bottom: 0px;
  }

  .copyright
  {
    position: absolute;
    font-size: 12px;
    left: 50px;
    bottom: 50px;
  }
  /* --------- */
}

@media only screen and (min-width: 1024px)
{
  /* - Home - */
  .home 
  {
    padding: 100px;
  }

  .welcome
  {
    padding: 100px;
  }

  .welcome .content p
  {
    font-size: 20px;
  }

  .ideas-title
  {
    padding: 0px 100px;
  }

  .ideas
  {
    padding: 20px 100px 100px 100px;
  }

  .idea h1
  {
    font-size: 25px;
  }

  .idea p
  {
    font-size: 20px;
  }

  .promote-contact
  {
    padding: 40px 100px;
  }

  .promote-contact h1
  {
    font-size: 35px;
  }
  /* --------- */

  /* - About - */
  .about-text
  {
    padding: 100px;
  }

  .about-image
  {
    padding-right: 100px;
  }

  .colleague
  {
    width: 31%;
    margin-bottom: 0px;
  }

  .colleagues .content
  {
    padding: 100px;
  }

  .code-title
  {
    padding: 0px 100px;
  }

  .code-languages
  {
    flex-direction: flex-start;
    padding: 50px 100px 100px 100px;
  }
  /* --------- */

  /* - Project - */
  .projects-text
  {
    padding: 100px;
  }

  .projects
  {
    padding: 0px 100px 100px 100px;
  }

  .projects-text
  {
    padding-right: 100px;
  }

  .projects-image
  {
    padding-right: 100px;
  }

  .project
  {
    padding: 50px;
    margin-bottom: 100px
  }
  /* --------- */

  /* - Services - */  
  .services-text
  {
    padding: 100px;
  }

  .services-image
  {
    padding-right: 100px;
  }

  .steps
  {
    padding: 100px;
  }

  .step
  {
    max-width: none;
    width: 49%;
    height: 335px;
  }

  .step h1
  {
    font-size: 25px;
  }

  .step p
  {
    font-size: 20px;
  }

  .consultation
  {
    padding: 0px 100px;
  }

  .price-table-2
  {
    padding: 100px 100px 0px 100px;
  }

  .maintenance
  {
    padding: 100px;
  }
  /* --------- */

  /* - Contact - */
  .contact
  {
    padding: 30px 100px;
  }
  /* --------- */

  /* - Footer - */
  .footer
  {
    padding: 50px 100px;
  }

  .footer-parts
  {
    width: 25%;
  }

  .footer-parts:nth-child(3)
  {
    width: 30%;
  } 

  .footer-parts:last-of-type
  {
    display: flex;
    justify-content: start;
    align-items: end;
    width: 20%;
  }

  .footer-parts img
  {
    width: 75%;
  }

  .privacy
  {
    position: absolute;
    right: 100px;
    bottom: 50px;
    margin-bottom: 0px;
  }

  .copyright
  {
    position: absolute;
    left: 100px;
    bottom: 50px;
  }
  /* --------- */
  
}
/* --------- */