@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

* {
  margin: 0;
  padding: 0;
}
body{
background: rgba(0, 0, 0, 0.7) url("https://wallpaperaccess.com/full/1802075.jpg");
  background-blend-mode: darken;
  background-attachment: fixed;
  background-size: cover;
}
html{
  scroll-behavior: smooth;
}
.Cont2{
  background-color: white;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  cursor: pointer;
  font-family: "Ubuntu", "sans-serif";
}
.nav-list {
  /* background-color: black; */
  display: flex;
  align-items: center;
  width: 70%;
}
.nav-list li {
  list-style: none;
  padding: 23px 30px;
}
.nav-list li a {
  text-decoration: none;
  color: white;
  font-size: 17px;
}
.nav-list li a:hover {
  color: grey;
  transition: 0.3s;
}
.right {
  /* background-color: green; */
  width: 30%;
  text-align: right;
  /* display: flex;
  justify-content: right; */
  padding: 0 23px;
}
.logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 43%;
  border: 1px solid black;
  border-radius: 50px;
}
.search {
  vertical-align: middle;
  padding: 8px;
  font-size: 17px;
  border: 2px solid grey;
  border-radius: 10px;
}
.background {
/*   background: rgba(0, 0, 0, 0.7) url("https://wallpaperaccess.com/full/1802075.jpg"); */
  background-blend-mode: darken;
  background-size: cover;
}
.firstSection {
  height: 100vh;
}
.box-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  max-width: 70%;
  height: 70%;
  margin: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.firstHalf {
  width: 80%;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: center;
}
.secondHalf {
  width: 50%;
  padding: 4px 0;
}
.secondHalf img {
  width: 70%;
  border: 2px solid black;
  border-radius: 100px;
  display: flex;
  margin: auto;
}

.text-big {
  font-size: 41px;
}
.text-small {
  font-size: 18px;
}
.btn {
  padding: 8px 20px;
  margin: 7px 3px;
  border: 2px solid white;
  border-radius: 8px;
  background: none;
  color: white;
  cursor: pointer;
  font-family: "ubuntu", "sans-serif";
  font-size: 20px;
}
.btn:hover {
  color: black;
  border: 2px solid black;
  background-color: white;
  transition: 0.5s ease-out;
}
.btn-sm {
  padding: 6px 10px;
  font-size: 16px;
}
.secRight {
  display: flex;
  height: 365px;
  justify-content: space-evenly;
  align-items: center;
  max-width: 80%;
  font-family: "Ubuntu", sans-serif;
  margin: auto;
}
.secLeft {
  display: flex;
  /* height: 500px; */
  justify-content: space-evenly;
  align-items: center;
  max-width: 80%;
  margin: auto;
  flex-direction: row-reverse;
  font-family: "Ubuntu", sans-serif;
}
.paras {
  padding: 0 65px;
}

.thumbnail img {
  width: 250px;
  border-radius: 50px;
  border: 2px solid black;
}
.sectionSubTag {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 17px 0;
}

.contact {
  background-color: whitesmoke;
  height: 833px;
}
.text-center {
  text-align: center;
  padding: 30px;
  font-family: "Ubuntu", sans-serif;
  font-size: 35px;
}
.form {
  max-width: 60%;
  margin: 24px auto;
}
.form-input {
  margin: 14px 0;
  padding: 5px 13px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 20px;
  border: 2px solid grey;
  border-radius: 6px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.dark-class {
  color: black;
  border: 2px solid grey;
}
.text-footer {
  text-align: center;
  padding: 30px;
  font-family: "Ubuntu", sans-serif;
  color: white;
}
.hamburger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 15px;
}
.line {
  width: 33px;
  height: 4px;
  margin: 5px 3px;
  background-color: white;
}
.h-nav{
  background-color: rgb(48, 46, 46);

}
@media only screen and (max-width: 1091px) {
  .navbar {
    flex-direction: column;
    height: 478px;
    transition: all .7s ease-in-out;
    background-color: rgb(48, 46, 46);
    background-image: none;
  }

  .nav-list {
    flex-direction: column;
  }
  .right {
    text-align: center;
    width: 45%;
  }
  .search {
    width: 100%;
  }
  .hamburger {
    display: block;
  }
  .h-nav{
    height: 72px;
  }
  .v-nav{
    opacity: 0;
  }
  .box-main{
    flex-direction: column-reverse;
    max-width: 100%;
    height: 80%;
  }
  .secRight{
    flex-direction: column-reverse;
    height: auto;
  }
  .thumbnail{
    margin: 40px 0;
  }
  .text-big{
    text-align: center;
  }
  .text-small{
    text-align: center;
  }
  .buttons{
    text-align: center;
  }
}
footer{
  background-color: rgb(48, 46, 46);

}