@import url("https://fonts.googleapis.com/css2?family=Poppins: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");
@import url("../main-page.css");
input , textarea {
  background: #061d531f;
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

nav {
  z-index: 999;
  width: 100%;
  position: fixed;
  height: 65px;
  background-color: #192026;
  display: flex;
  align-items: center;
  padding: 10px 200px;
  justify-content: space-between;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #6faf5f;
  /* color: white; */
  cursor: pointer;
  padding: 15px;
  border-radius: 11px;
}

#myBtn:hover {
  background-color: #555;
}

nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin: 0 5px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
  color: #1b1b1b;
  background: #1da2b4;
}
nav .menu-btn i {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
#click {
  display: none;
}
.logo {
  width: 50px;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  color: white;
}

input:focus {
  /* background: #588c4c; */
  color: white;
}
label {
  color: #8c98a9;
}

input[type="submit"] {
  background-color: #588c4c;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: -webkit-fill-available;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  padding: 20px 0px;
  width: 500px;
  float: right;
  border: 1px solid #4b517b80;
  padding: 10px;
  background: #13378b29;
}
section {
  padding: 100px 200px;
}
.big-title {
  color: #1da2b4;
  font-size: 30px;
  text-align: center;
  margin-bottom: 23px;
  font-weight: bold;
}
.sec-text {
  color: white;
  margin-top: 30px;
}
.contact-title {
  margin-top: 50px;
}

.contact-title div {
  margin-bottom: 50px;
}
.contact-big-title {
  color: #b2b2b2;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
}
.contact-small-title {
  color: #f9ad43;
  font-weight: 500;
}

.social ul li {
  display: inline-block;
  padding-right: 5px !important;
}

.social li a {
  text-decoration: none;
  color: #999999;
}
.col li a {
  text-decoration: none;
  color: #999999;
}
.copyright {
  margin-top: 9px;
  font-size: 14px;
  color: #777;
}

.social li a:hover {
  color: white;
}

.col li a:hover {
  color: white;
}

@media (max-width: 1200px) {
  section {
    padding: 80px 20px;
  }
  nav {
    padding: 0px 20px;
  }
}

@media (max-width: 1023px) {
  section {
    padding: 80px 20px;
  }
  .logo {
    width: 45px;
  }
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    top: 65px;
    left: -100%;
    background: rgb(0, 0, 0);
    height: 100vh;
    width: 100%;
    display: block;
    text-align: center;
    transition: all 0.5s ease;
  }
  #click:checked ~ ul {
    left: 0%;
  }
  nav ul li {
    margin: 40px 0px;
  }
  nav ul li a {
    font-size: 20px;
    display: block;
  }
  nav ul li a:hover,
  nav ul li a.active {
    color: #f9ad43;
    background: none;
  }
  nav {
    padding: 0px 20px;
  }
}
.popup {
  position: fixed;
  width: 30vw;
  height: 30vh;
  left: 35vw;
  top: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 13px;
  border: 2px solid #1da2b4;
  background: #080c0f;
  padding: 5px;
}
.popup_show {
  display: flex !important;
}
.popup_hide {
  display: none !important;
}
.submit_button {
  background-color: #1da2b4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: -webkit-fill-available;
}
.confirm-popup {
  width: 85px;
  height: 41px;
  color: white;
  background: transparent;
  margin-bottom: 10px;
  border: 2px solid #333537;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  border-color: #333537;
}
.popup-title {
  background-color: transparent !important;
  font-weight: 700;
  font-size: 25px;
}
.popup-title-success {
  color: #45a049 !important;
}
.popup-title-error {
  color: brown !important;
}
.popup-description {
  color: white;
  background-color: transparent !important;
}
.Model-icone {
  background-color: transparent !important;
  width: 15%;
}
.Model-icone-success {
  content: url("/images/success.svg") !important;
}
.Model-icone-error {
  content: url("/images/error.svg") !important;
}

input:invalid {
  border: 1px solid rgb(231, 67, 67);
}

textarea:invalid {
  border: 1px solid rgb(231, 67, 67);
}

/*********************** footer**************/
.footer {
  width: 100%;
  position: relative;
  background: linear-gradient(53deg, rgb(0 27 61) 0%, rgba(0, 0, 0, 1) 100%);
}
.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.footer-logo {
  display: flex;
  flex-direction: column;
}
.footer .col {
  height: 100%;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  justify-content: start;
}
.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 17px;
  line-height: 40px;
  padding: 20px 0px 5px 0px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer .col ul li {
  color: #999999;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 10px 0px 10px 0px;
  cursor: pointer;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
}
.social ul li {
  display: inline-block;
  padding-right: 5px !important;
}

@media (min-width: 1200px) {
  .section-container {
    max-width: 1140px;
  }
  .card-item {
    width: 23% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
  .section-container {
    max-width: 960px;
  }
  .card-item {
    width: 45% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.99px) {
  .contact-card-container{
    width: 100% !important;
  }
  .section-container {
    max-width: 720px;
  }
  .card-item {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .contact-card-container{
    width: 100% !important;
  }
  .hamburger-menu {
    display: flex;
  }
  .section-container {
    max-width: 720px;
  }
  .card-item {
    width: 100% !important;
  }
  .header-ul {
    display: none;
    flex-direction: column;
    background-color: rgb(0 16 36);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
  }
  .header-ul.active {
    display: flex;
  }
  .header-ul li {
    margin: 10px 0;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .title-section {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
.feature-icon {
  width: 40px; /* Adjust the width of the icon */
  height: 40px; /* Adjust the height of the icon */
  margin-right: 10px; /* Space between icon and text */
  vertical-align: middle; /* Align icon with the text */
}

.contact-cards-container {
  display: flex;
  justify-content: space-between;
  padding: 0px 8px;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
