@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: #fff;
  --a-color: #3a8dff;
  --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)
    ),
    url(images/roof2.png);
  --about-background-image: linear-gradient(
      rgba(9, 5, 54, 0.3),
      rgba(5, 4, 46, 0.7)
    ),
    url(images/roof2.png);
  --h2-color: #3a8dff;
  --p-color: #fff;
  --nav-background-color: #fff;
  --blue-btn-color: #3a8dff;
  --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: #3a8dff;
}

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;
}
/* 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;
}

/* About */
#about-Home {
  background-image: var(--home-background-image), url(/images/home.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#about-Home h2 {
  color: var(--h2-color);
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#about-container {
  display: flex;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}
#about-container .about-img {
  width: 60%;
}
#about-container .about-img img {
  width: 100%;
  padding-right: 60px;
}
#about-container .about-text {
  width: 40%;
}
#about-container .about-text h2 {
  color: var(--h2-color);
  padding-bottom: 15px;
}
#about-container .about-text p {
  color: #686f7a;
  font-weight: 400;
}
#about-container .about-text .about-fe {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
#about-container .about-text .about-fe img {
  width: 50px;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}
#about-container .about-text .about-fe .fe-text {
  width: 90%;
}
#about-container .about-text .about-fe h5 {
  font-size: 16px;
  color: #29303b;
}
#trust {
  text-align: center;
  padding: 8vw;
}
#trust .trust-img {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
#trust .trust-img img {
  width: 90px;
  height: auto;
}
/* Blog */
#blog-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vw;
}

#blog-container .blogs {
  width: 60%;
}
#blog-container .blogs img {
  width: 100%;
  border-radius: 19px;
}
#blog-container .blogs .post {
  padding-bottom: 60px;
}
#blog-container .blogs .post h3 {
  color: #29303b;
  padding: 15px 0 10px 0;
}
#blog-container .blogs .post p {
  color: #757373;
  padding-bottom: 20px;
}
#blog-container .blogs .post a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #3a8dff;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}
#blog-container .cats {
  width: 30%;
}
#blog-container .blogs .cats h2 {
  padding-bottom: 7px;
  color: #3a8dff;
}
#blog-container .cats a {
  text-decoration: none;
  color: #757373;
  font-weight: 500;
  line-height: 45px;
}

#blog-container .bls {
  width: 60%;
  margin: 0 auto;
}
#blog-container .bls p {
  text-align: justify;
  padding-bottom: 60px !important;
}

/* features */
#features {
  padding: 5vw 8vw 0 8vw;
  text-align: center;
  margin-bottom: 10px;
}
#features .fea-base {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
}
#features .fea-box {
  background-color: var(--card-background-color);
  text-align: center;
  justify-content: center;
  padding: 10px;
  border-radius: 15px;
}
#features h2 {
  color: #3a8dff;
}
#features .fea-box svg {
  color: var(--icon-color);
}
#features .fea-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--icon-color);
}
#features .fea-box img {
  height: 200px;
  border-radius: 25px;
}
#features .fea-box a {
  font-size: 1rem;
  font-weight: 400;
  color: #3a8dff;
  padding: 13px 0 7px 0;
  text-decoration: none;
}
#features .fea-box a:hover {
  color: #3a8cffbd;
}
