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

body {
  overflow-x: hidden;
}

nav {
  z-index: 3;
  position: fixed;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo-wrapper img {
  width: 218px;
  height: 54x;
}
nav .hamburger-btn {
  background: rgba(255, 255, 255, 0.764);
  width: 35px;
  height: 35px;
  border: none;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  display: none;
}
@media (max-width: 991px) {
  nav .hamburger-btn {
    display: flex;
  }
}
nav .nav-items {
  background: rgba(255, 255, 255, 0.483);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 991px) {
  nav .nav-items {
    display: none;
  }
}
nav .nav-items a {
  text-decoration: none;
  color: #000000;
  font-family: "Open Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  transition: 0.2s ease-in-out;
}
nav .nav-items a:hover {
  color: #1b9774;
}
nav .nav-items a:last-child {
  border-radius: 6px;
  background: #0E6D79;
  padding: 6px 13px;
  color: rgba(255, 255, 255, 0.7019607843);
}
nav .nav-items a:last-child:hover {
  color: #ffffff;
  background: #0e636e;
}

.collapsed-menu {
  padding: 50px 40px;
  background-color: #000000;
  position: absolute;
  height: 200px;
  width: 100%;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 20px;
}
.collapsed-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  font-size: 20px;
}
.collapsed-menu a:hover {
  color: #ababab;
}
.collapsed-menu a:last-child {
  border-radius: 6px;
  background: #0E6D79;
  padding: 6px 13px;
  color: rgba(255, 255, 255, 0.7019607843);
}
.collapsed-menu a:last-child:hover {
  color: #ffffff;
  background: #0e636e;
}

.active {
  display: flex;
}

.hero-section .row {
  min-height: 800px;
}
.hero-section .row .hero-first {
  background: linear-gradient(180deg, #2A4B8D 0%, #031435 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .row .hero-first .text-wrapper {
  padding: 0 200px;
}
.hero-section .row .hero-first .text-wrapper h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  .hero-section .row .hero-first .text-wrapper h1 {
    text-align: center;
    font-size: 40px;
  }
}
.hero-section .row .hero-first .text-wrapper p {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .hero-section .row .hero-first .text-wrapper p {
    text-align: center;
    font-size: 17px;
  }
}
.hero-section .row .hero-first .text-wrapper .hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .hero-section .row .hero-first .text-wrapper .hero-buttons {
    justify-content: center;
  }
}
.hero-section .row .hero-first .text-wrapper .hero-buttons a {
  color: #000000;
  text-decoration: none;
  width: 148px;
  height: 42px;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: 0.2s ease-in-out;
}
.hero-section .row .hero-first .text-wrapper .hero-buttons a:hover {
  background-color: #a5a5a5;
}
.hero-section .row .hero-first .text-wrapper .hero-buttons a:last-child {
  background: #0E6D79;
  color: #fff;
}
.hero-section .row .hero-first .text-wrapper .hero-buttons a:last-child:hover {
  background-color: #094d56;
}
.hero-section .row .hero-second {
  background: linear-gradient(33deg, #FAFCFF 0.76%, #A9AAAB 100%);
}
.hero-section .row .hero-second img {
  position: absolute;
  left: 44%;
  top: 6%;
  width: 640px;
  height: 640px;
  z-index: 1;
}

.partners-section {
  width: 100%;
  background-color: #ffffff;
}
.partners-section .row {
  padding: 10px 0;
}
@media (max-width: 991px) {
  .partners-section .row {
    padding: 20px 0;
  }
}
.partners-section .row .col-lg-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-section .row .col-lg-2 img {
  transition: transform 0.5s ease;
  width: 50%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(1);
}
.partners-section .row .col-lg-2 img:hover {
  transform: scale(1.2);
  filter: grayscale(0);
}
@media (max-width: 991px) {
  .partners-section .row .col-lg-2 img {
    margin-top: 25px;
  }
}

.product-section {
  width: 100%;
  min-height: 700px;
  background: linear-gradient(180deg, #1b366b 0%, #032261 100%);
  padding-top: 40px;
}
.product-section .product-header h2 {
  text-align: center;
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product-section .products-wrapper {
  margin-top: 5rem;
  padding-bottom: 65px;
}
.product-section .products-wrapper .row {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.product-section .products-wrapper .row .col-lg-4 {
  background: #091D46;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 400px;
  height: 520px;
  border-radius: 10px;
}
.product-section .products-wrapper .row .col-lg-4 .cart-head {
  padding: 14px 0 0 0;
  display: flex;
  color: #FFF;
}
.product-section .products-wrapper .row .col-lg-4 .cart-head h3 {
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product-section .products-wrapper .row .col-lg-4 .cart-head i {
  color: #00ffa6;
}
.product-section .products-wrapper .row .col-lg-4 .cart-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-top: 10px;
}
.product-section .products-wrapper .row .col-lg-4 .cart-photo .product-1 {
  width: 261px;
  height: 260px;
  filter: drop-shadow(0 0 0.75rem rgba(20, 220, 133, 0.444));
}
.product-section .products-wrapper .row .col-lg-4 .cart-photo .product-2 {
  width: 261px;
  height: 260px;
  filter: drop-shadow(0 0 0.75rem rgba(220, 190, 20, 0.551));
}
.product-section .products-wrapper .row .col-lg-4 .cart-photo .product-3 {
  width: 260px;
  height: 280px;
  filter: drop-shadow(0 0 0.75rem rgba(220, 20, 60, 0.505));
}
.product-section .products-wrapper .row .col-lg-4 .cart-desc h4 {
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  height: 59.521px;
  display: flex;
  align-items: center;
}
.product-section .products-wrapper .row .col-lg-4 .cart-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.product-section .products-wrapper .row .col-lg-4 .cart-button a {
  color: rgba(255, 255, 255, 0.7019607843);
  text-decoration: none;
  border-radius: 4px;
  background: #0E6D79;
  padding: 8px 18px;
  transition: 0.2s ease-in-out;
}
.product-section .products-wrapper .row .col-lg-4 .cart-button a:hover {
  color: #ffffff;
  background: #0e636e;
}

.about-section .about-wrapper .row {
  min-height: 700px;
}
.about-section .about-wrapper .row .about-first-col {
  background-image: url("../images/robot3.png");
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section .about-wrapper .row .about-first-col h3 {
  color: white;
  text-align: center;
  font-family: Montserrat;
  font-size: 65px;
  font-style: normal;
  font-weight: 900;
}
.about-section .about-wrapper .row .about-second-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper {
  padding: 20px 60px;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper h2 {
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper p {
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 275;
  line-height: normal;
  margin-top: 15px;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper .about-button-wrapper {
  padding-top: 50px;
  text-align: end;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper .about-button-wrapper a {
  border-radius: 4px;
  background: #0E6D79;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.about-section .about-wrapper .row .about-second-col .about-text-wrapper .about-button-wrapper a:hover {
  background: #08545e;
}

.sector-section {
  background: linear-gradient(180deg, #0E6D79 0%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
}
.sector-section .sector-wrapper {
  margin-top: 1rem;
}
.sector-section .sector-wrapper h2 {
  font-size: 65px;
  font-weight: 900;
  color: #ffffff;
}
.sector-section .sector-wrapper .row {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 510px;
  margin-top: 70px;
}
.sector-section .sector-wrapper .row h2 {
  font-size: 38px;
}
.sector-section .sector-wrapper .row .sector-first-col {
  width: 400px;
  background-image: url("../images/sector-images/sector-image-1.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 14px;
}
.sector-section .sector-wrapper .row .sector-second-col {
  width: 400px;
  background-image: url("../images/sector-images/sector-image-2.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 14px;
}
.sector-section .sector-wrapper .row .sector-third-col {
  width: 400px;
  background-image: url("../images/sector-images/sector-image-3.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 14px;
}

.contact-section {
  background: url("../images/robot-contact.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 800px;
}
.contact-section .form-wrapper {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5607843137);
  border: none;
  border-radius: 25px;
  width: 600px;
  min-height: 500px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 50px;
}
.contact-section .form-wrapper form {
  width: 50%;
}
.contact-section .form-wrapper form input {
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  margin-bottom: 70px;
  outline: none;
  color: #fff;
  transition: 0.2s ease-in-out;
}
.contact-section .form-wrapper form input:focus {
  border-bottom: 1px solid #ffea00;
}
.contact-section .form-wrapper form .button-wrapper {
  text-align: end;
}
.contact-section .form-wrapper form .button-wrapper button {
  color: #000000;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  padding: 5px 35px;
  transition: 0.2s ease-in-out;
  border: none;
}
.contact-section .form-wrapper form .button-wrapper button:hover {
  color: #ffffff;
  background-color: #6e6e6e;
}
.contact-section .contact-desc {
  width: 500px;
  min-height: 200px;
  padding: 20px 10px 0 15px;
  background-color: rgba(0, 0, 0, 0.6823529412);
  border: 2px solid #fff;
  color: #fff;
  margin-left: -8rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 150;
  z-index: 1;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0;
}
footer .footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 20px;
}
footer .footer-container .footer-about, footer .footer-container .footer-links, footer .footer-container .footer-contact, footer .footer-container .footer-social {
  flex: 1;
  margin: 20px;
}
footer .footer-container .footer-about h3, footer .footer-container .footer-about h4, footer .footer-container .footer-links h3, footer .footer-container .footer-links h4, footer .footer-container .footer-contact h3, footer .footer-container .footer-contact h4, footer .footer-container .footer-social h3, footer .footer-container .footer-social h4 {
  margin-bottom: 20px;
}
footer .footer-container .footer-about p, footer .footer-container .footer-about ul, footer .footer-container .footer-about li, footer .footer-container .footer-links p, footer .footer-container .footer-links ul, footer .footer-container .footer-links li, footer .footer-container .footer-contact p, footer .footer-container .footer-contact ul, footer .footer-container .footer-contact li, footer .footer-container .footer-social p, footer .footer-container .footer-social ul, footer .footer-container .footer-social li {
  margin: 5px 0;
}
footer .footer-container .footer-about ul, footer .footer-container .footer-links ul, footer .footer-container .footer-contact ul, footer .footer-container .footer-social ul {
  list-style-type: none;
  padding: 0;
}
footer .footer-container .footer-about a, footer .footer-container .footer-links a, footer .footer-container .footer-contact a, footer .footer-container .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
}
footer .footer-container .footer-about a:hover, footer .footer-container .footer-links a:hover, footer .footer-container .footer-contact a:hover, footer .footer-container .footer-social a:hover {
  text-decoration: underline;
}
footer .footer-container .footer-about .social-icons, footer .footer-container .footer-links .social-icons, footer .footer-container .footer-contact .social-icons, footer .footer-container .footer-social .social-icons {
  display: flex;
}
footer .footer-container .footer-about .social-icons a, footer .footer-container .footer-links .social-icons a, footer .footer-container .footer-contact .social-icons a, footer .footer-container .footer-social .social-icons a {
  margin-right: 10px;
}
footer .footer-container .footer-about .social-icons a img, footer .footer-container .footer-links .social-icons a img, footer .footer-container .footer-contact .social-icons a img, footer .footer-container .footer-social .social-icons a img {
  width: 30px;
  height: 30px;
}
footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
}
footer .footer-bottom p {
  margin: 0;
}
footer .footer-bottom .creoft {
  font-size: 10px;
}
footer .footer-bottom .creoft a {
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=style.css.map */