@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --h1-color: rgb(35, 53, 85);
  --a-color: rgb(21, 21, 100);
  --a-font-size: 16px;
  --a-font-weight: 500;
  --home-background-image: linear-gradient(
      rgba(9, 5, 54, 0.3),
      rgba(5, 4, 46, 0.7)
    ),
  
  --h2-color: #fff;
  --p-color: #fff;
  --nav-background-color: #fff;
  --blue-btn-color: rgb(21, 21, 100);
  --yellow-btn-color: #fdc93b;
  --card-background-color: #f9f9ff;
  --icon-color: rgb(44, 44, 80);
  --footer-background-color: #101c32;
}
body {
  font-family: "Poppins", sans-serif;
}

svg {
  width: 2vw;
}

/* Global Tags */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(35, 35, 85);
}

span {
  font-size: 0.9rem;
  color: #757373;
}

h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}
/*HEADER*/
/* Navigation */
nav {
  background-color: #f5f5f5;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
nav img {
  width: 100px;
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #141b4d;
  font-weight: var(--a-font-weight);
  font-size: var(--a-font-size);
  background-color: #f5f5f5;
}

nav a:hover {
  background-color: #f0f0f0;
  color: #3a8dff;
}

nav li:first-child {
  margin-right: auto;
}
svg {
  color: black;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.493);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-self: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}
.menu-bitton {
  display: none;
}

/*CONTACT*/

/*CONTACT*/
#contat-us .c {
  color: #fff;
}
#contat-us {
  height: 100vh;
  display: flex;
  background-image: url(/images/contact.jpg );
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-bottom: 20px;
}
#contat-us .riht-sec {
  width: 40vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  gap: 20px;
}
#contat-us .riht-sec form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%;
  height: 70vh;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.418);
  backdrop-filter: blur(5 px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}
#contat-us .riht-sec form .contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
#contat-us .riht-sec form .contact-info input {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.575);
  backdrop-filter: blur(5 px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-bottom: #fff 2px solid;
}
#contat-us .riht-sec form .contact-info textarea {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.575);
  backdrop-filter: blur(5 px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-bottom: #fff 2px solid;
  width: 100%;
  height: 100%;
}

#contat-us .riht-sec form .submit-btn input {
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(5 px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  border: none;
}
#contat-us .riht-sec form .submit-btn input:hover {
  background-color: rgb(255, 255, 255);
}
#contat-us .riht-sec form .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contat-us .riht-sec form .ant-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contat-us .riht-sec form .ant-con img {
  width: 50px;
}

#contat-us .left-sec {
  width: 60vw;
  padding-top: 55px;
}

iframe {
  width: 100%;
  border-radius: 50px;
  padding: 20px;
}


#about-Home h2 {
  color: var(--p-color);
  font-size: 2.2rem;
  letter-spacing: 1px;
}
footer.copyright p {
  text-align: center;
}

/* footer */
footer {
  margin-top: 5px;
  padding: 8vw;
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .footer-col {
  padding: bottom 40px;
}
footer h3 {
  color: #f5f5f5;
  font-weight: 600;
  padding-bottom: 30px;
}

footer li {
  list-style: none;
  color: #f5f5f5;
  padding: 10px 0;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}
footer li a {
  list-style: none;
  color: #f5f5f5;
  padding: 10px 0;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}
footer li img {
  width: 30px;
}
footer li:hover {
  color: var(--card-background-color);
  font-weight: bold;
}

footer li a:hover {
  color: var(--card-background-color);
}
footer p {
  color: #7b838a;
}
footer .subscribe {
  margin: 20px;
}
footer input {
  width: 220px;
  padding: 15px 12px;
  background-color: #334f6c;
  border: none;
  outline: none;
  color: #fff;
}
footer .copyright {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
