* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 20px 0 20px 0;
}


.width-control-a {
  width: 100%;
  background-color: #021103;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
    .width-control-a {
        position: fixed !important;
        top: 0;
    }
}

@media only screen and (max-width: 600px) {
  .width-control-a {
    position: unset;
  }
}

body {
  background-color: #021103;
}

h1,
h2,
h3,
li,
a,
button {
  font-family: "Rubik", sans-serif;
}

p {
  font-family: "Oxygen", sans-serif;
}

a {
  text-decoration: none;
}

button {
  padding: 7px 20px;
}

button a {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
}

/*logo*/

.logo-house {
  width: 33.33%;
  z-index: 1000;
}

@media only screen and (max-width: 600px) {
  .logo-house {
    width: 40%;
    z-index: 1000;
  }
}

.logo-house img {
  width: 40%;
}

@media only screen and (max-width: 600px) {
  .logo-house img {
    width: 100%;
  }
}

/*links*/

.link-house {
  width: 50%;
}

@media only screen and (max-width: 600px) {
  .link-house {
    width: 100%;
  }
}

.link-house ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

@media only screen and (max-width: 600px) {
  .link-house ul {
    flex-direction: column;
  }
}

.link-house ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  line-height: 21px;
}

@media only screen and (max-width: 600px) {
  .link-house ul li a {
    color: #000000;
  }

  .link-house ul li {
    margin-bottom: 50px;
  }
}

.link-house ul li a:hover {
  color: #068135;
}

.icon {
   display: none;
}

.menu-icon-b {
    display: none;
}

@media only screen and (max-width: 600px) {
  .icon {
    display: block;
    color: #ffffff;
    background: black;
    padding: 7px 10px 7px 10px;
    border-radius: 5px;
    font-size: 15px;
    z-index: 2;
  }

  .menu-icon-b {
    display: none;
}

  
}

.menu-icon.active{
    display: none;
    transition: .5s ease-in;
}

.menu-icon-b.active {
    display: block;
    transition: .5s ease-in;
}

.mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 66.66%;
}

.mobile-menu.active {
  right: 0%;
  transition: .5s ease-in;
}


@media only screen and (max-width: 600px) {
  .mobile-menu {
    position: fixed;
    width: 100%;
    top: 0;
    right: -100%;
    height: 100%;
    background: #ffffff;
    color: #0f0f0f;
    z-index: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: .5s ease-in;
  }
}

/*button*/

.button-house {
  width: 33.33%;
  display: flex;
  justify-content: right;
  gap: 10px;
}

@media only screen and (max-width: 600px) {
  .button-house {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.btn-1 {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 2px;
  transition: 0.5s ease-in-out;
}

.btn-1:hover {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.btn-1 a {
  color: #000000;
}

.btn-2 {
  background: linear-gradient(
    90deg,
    rgba(10, 209, 88, 1) 0%,
    rgba(10, 209, 88, 1) 24%,
    rgba(6, 129, 53, 1) 100%
  );
  color: #ffffff;
  border: 0px solid #00000000;
  border-radius: 2px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.107),
    0 6px 20px 0 rgba(0, 0, 0, 0.117);
  transition: 0.5s ease-in-out;
}

.btn-2:hover {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.btn-2 a {
  color: #ffffffff;
}

/*section-1*/

.section-1 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: auto;
  margin-top: -60px;
}

@media only screen and (max-width: 600px) {
  .section-1 {
    flex-direction: column;
    padding-bottom: 30px;
    margin-top: 120px;
  }
}


.section-1-text {
  width: 50%;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .section-1-text {
    width: 100%;
    text-align: center;
  }
}

.section-1-text h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 30px;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-1-text p {
  margin-bottom: 30px;
  size: 20px;
  line-height: 30px;
  opacity: 0.6;
  color: #ffffff;
}

.btn-house-b {
  display: flex;
  justify-content: left;
  gap: 10px;
}

@media only screen and (max-width: 600px) {
  .btn-house-b {
    justify-content: center;
    margin-bottom: 30px;
  }
}

.section-1-img {
  width: 40%;
}

.section-1-img {
  width: 75%;
}

.section-1-img img {
  width: 100%;
}

.width-control {
  width: 100%;
  background-color: #f9fbfd;
}

/**section-2***/

.section-2 {
  width: 90%;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.line {
  margin-right: 10px;
  color: #068135;
}

.section-2-house-1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 600px) {
  .section-2-house-1 {
    flex-direction: column;
  }
}

.section-2-house-1 h1 {
  font-size: 29px;
  line-height: 26px;
  margin-bottom: 10px;
}

.section-2-house-1 p {
  font-size: 18px;
  line-height: 25px;
  opacity: 0.6;
}

.section-2-house-1-child {
  width: 40%;
  display: flex;
}

@media only screen and (max-width: 600px) {
  .section-2-house-1-child {
    width: 100%;
  }
}

.p1 {
  font-size: 16px !important;
  font-weight: 200;
  line-height: 24px;
  color: #212529;
  font-family: "Rubik", sans-serif;
  margin-bottom: 60px;
  opacity: 0.8;
  width: 60%;
}

@media only screen and (max-width: 600px) {
  .p1 {
    width: 100%;
    margin-top: 30px;
  }
}

.section-2-house-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .section-2-house-2 {
    flex-direction: column;
  }
}

.static h1 {
  position: sticky;
  top: 50%;
  margin-bottom: 50px;
  font-size: 29px;
  line-height: 26px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .static h1 {
    position: inherit;
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.static h1::before {
  content: "|";
  font-size: 40px;
  font-weight: 600;
  color: #068135;
  margin-right: 10px;
}

.section-2-house-2-child {
  width: 60%;
}

@media only screen and (max-width: 600px) {
  .section-2-house-2-child {
    width: 100%;
  }
}

.card {
  padding: 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.029),
    0 6px 20px 0 rgba(0, 0, 0, 0.015);
}

.card h3 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  color: #212529;
  font-family: "Rubik", sans-serif;
  margin-bottom: 30px;
  opacity: 0.8;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.width-control-2 {
  width: 100%;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

/**********section-3************/

.section-3 {
  width: 90%;
  margin: auto;
  display: flex;
  border-radius: 5px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 600px) {
  .section-3 {
    flex-direction: column;
  }
}

.section-3-img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-bottom-left-radius: 10px;
}

@media only screen and (max-width: 600px) {
  .section-3-img {
    width: 100%;
    border-radius: 10px;
  }
}

.section-3-img img {
  width: 100%;
  border-top-left-radius: 10px;
}

.section-3-text {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 600px) {
  .section-3-text {
    width: 100%;
  }
}

.section-3-text h1 {
  margin-bottom: 10px;
  background: -webkit-linear-gradient(#ffffff, #bdbdbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-3-text p {
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  color: #afafaf;
  font-family: "Rubik", sans-serif;
  margin-bottom: 20px;
  opacity: 0.8;
}

.section-3-text a {
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  color: #068135;
  font-family: "Rubik", sans-serif;
  text-decoration: underline;
  transition: 1s ease-in;
}

.section-3-text a:hover {
  font-size: 15px;
  transition: 0.3s ease-in;
}

/************Section-4*************/

.section-4 {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-4-heading {
  text-align: center;
  padding: 60px 0;
}

.section-4-card {
  width: 30%;
  margin-bottom: 30px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.029),
    0 6px 20px 0 rgba(0, 0, 0, 0.015);
}

@media only screen and (max-width: 600px) {
  .section-4-card {
    width: 100%;
  }
}

.section-4-card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
}

.section-4-card:hover img {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.section-4-card h1 {
  font-size: 18px;
  padding-left: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.section-4-card p {
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  color: #8c8c8c;
  font-family: "Rubik", sans-serif;
  opacity: 0.8;
  padding-left: 10px;
  margin-bottom: 10px;
}

.section-4-card span {
  color: #068135;
  opacity: 1;
}

.width-control-c {
  width: 100%;
  margin: auto;
}

footer {
  width: 90%;
  display: flex;
  margin: auto;
  justify-content: space-around;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #f9fbfd;
}

@media only screen and (max-width: 600px) {
  footer {
    flex-direction: column;
  }
}

.footer-house-1,
.footer-house-2,
.footer-house-3 {
  width: 30%;
}
@media only screen and (max-width: 600px) {
  .footer-house-1,
  .footer-house-2,
  .footer-house-3 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer-house-1 img {
  width: 60%;
}

.footer-house-1 p,
.footer-house-2 p,
.footer-house-3 p {
  font-size: 14px;
  line-height: 24px;
}

.footer-house-2 {
  margin-left: 30px;
}

@media only screen and (max-width: 600px) {
  .footer-house-2 {
    margin-left: 0px;
  }
}

.footer-house-2,
.footer-house-3 {
  margin-top: 15px;
}

.footer-house-2 h1,
.footer-house-3 h1 {
  margin-bottom: 15px;
  font-size: 20px;
}
.footer-house-3 p {
  margin-bottom: 10px;
}

.footer-house-3 a {
  color: #eee;
}
