@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: white;
}
body header {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}
body header .logo {
  width: auto;
  height: auto;
  position: absolute;
  left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body header .logo img {
  width: 40px;
}
body header .logo .text {
  font-size: 1.1em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #e5723b;
}
body header nav {
  width: auto;
  height: auto;
  position: relative;
}
body header nav ul {
  width: auto;
  height: auto;
  list-style: none;
  display: flex;
  flex-direction: row;
  font-family: "Roboto", sans-serif;
  font-size: 0.85em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body header nav ul li {
  margin: 0 15px;
  padding: 3px 0;
  cursor: pointer;
  border-bottom: 2px solid whitesmoke;
  transition: 0.1s linear;
}
body header nav ul li a {
  text-decoration: none;
  color: black;
}
body header nav ul li:hover {
  border-color: #e5723b;
}
body section {
  width: 100%;
  height: 550px;
  position: relative;
}
body section .text-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body section .text-container .title {
  font-size: 2.5em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding-bottom: 10px;
  color: #e5723b;
  border-bottom: 2px solid black;
}
body section .text-container .text {
  font-family: "Roboto", sans-serif;
  font-size: 1.5em;
}
body section .text-container .phrase {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
body section .text-container .paragraph {
  width: 80%;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  margin-top: 55px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}
body section .text-container button {
  width: auto;
  height: 35px;
  background-color: #e5723b;
  border: 1px solid #e5723b;
  color: white;
  border-radius: 3px;
  font-family: "Open Sans", sans-serif;
  padding: 0 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 15px;
}
body .softwaresolutions {
  background: url("../assets/software.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body .softwaresolutions .text-container {
  background-color: rgba(255, 255, 255, 0.85);
}
body .importandexports {
  background: url("../assets/importandexport.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .importandexports .text-container {
  background-color: rgba(0, 0, 0, 0.7);
}
body .importandexports .text-container .title {
  border-bottom: 2px solid white;
}
body .importandexports .text-container .text {
  color: white;
}
body .importandexports .text-container .phrase {
  color: white;
}
body .importandexports .text-container .paragraph {
  color: white;
}
body .garments {
  background: url("../assets/garments.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .garments .text-container {
  background-color: rgba(255, 255, 255, 0.8);
}
body .garments .text-container .text {
  color: black;
}
body .garments .text-container .phrase {
  color: black;
}
body .toursandtravels {
  background: url("../assets/toursandtravels.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .toursandtravels .text-container {
  background-color: rgba(0, 0, 0, 0.7);
}
body .toursandtravels .text-container .title {
  border-bottom: 2px solid white;
}
body .toursandtravels .text-container .text {
  color: white;
}
body .toursandtravels .text-container .phrase {
  color: white;
}
body .toursandtravels .text-container .paragraph {
  color: white;
}
body footer {
  width: 100%;
  height: auto;
  position: relative;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body footer .contactus {
  width: 100%;
  height: 500px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
body footer .contactus .left-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body footer .contactus .left-container .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}
body footer .contactus .left-container .phone {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.4em;
}
body footer .contactus .left-container .email {
  font-family: "Roboto", sans-serif;
  font-size: 0.9em;
  margin-top: 3px;
}
body footer .contactus .left-container .address {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid black;
}
body footer .contactus .right-container {
  width: 100%;
  height: 100%;
  position: relative;
}
body footer .contactus .right-container .image-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: url("../assets/contactus.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body footer .bottom {
  width: 100%;
  height: 40px;
  position: relative;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
body footer .bottom .text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
body footer .bottom .border-right {
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  padding-right: 10px;
}

@media (max-width: 480px) {
  body header {
    height: auto;
    padding: 10px 0;
  }
  body header .logo .text {
    display: none;
  }
  body header nav ul {
    flex-direction: column;
  }
  body header nav ul li {
    text-align: center;
    font-size: 1.1em;
  }
  body section .text-container {
    padding: 0 10px;
  }
  body section .text-container .title {
    text-align: center;
    font-size: 2em;
  }
  body section .text-container .text {
    text-align: center;
    font-size: 1.2em;
  }
  body section .text-container .phrase {
    text-align: center;
    font-size: 0.9em;
  }
  body section .text-container .paragraph {
    text-align: justify;
  }
  body footer .contactus {
    height: 300px;
    grid-template-columns: 1fr;
  }
  body footer .contactus .right-container {
    display: none;
  }
  body footer .bottom {
    height: auto;
    padding: 15px 0;
    flex-direction: column;
  }
  body footer .bottom .text {
    font-size: 0.75em;
    border: none;
  }
}/*# sourceMappingURL=index.css.map */