@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #92928b;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  cursor: pointer;
}

.logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 33%;
  border: 1px solid wheat;
  border-radius: 50%;
}

.nav-list {
  width: 70%;
  /* background-color: rgb(14, 14, 13); */
  display: flex;
  align-items: center;
}

.nav-list li {
  list-style: none;
  padding: 26px 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #ffffff;
}
.nav-list li a:hover {
  text-decoration: none;
  color: #fddc01;
}

.rightNav {
  /* background-color: blueviolet; */
  width: 30%;
  text-align: right;
  padding: 0 23px;
}

#search {
  padding: 5px;
  font-size: 17px;
  border: 2px solid gray;
  border-radius: 9px;
}

.background {
  /* background: rgba(0, 0, 0, 0.7) url(unsplash.jpg); */
  background-image: url(unsplash.jpg);
  background-size: cover;
  background-blend-mode: darken;
}

.firstSection {
  height: 100vh;
}

.box-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 50%;
  margin: auto;
  height: 80%;
}

.firstHalf {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secondHalf {
  width: 30%;
}
.secondHalf img {
  width: 70%;
  border-radius: 50%;
}

.text-big {
  font-size: 38px;
  padding: 12px 0;
}

.text-small {
  font-size: 18px;
}

.btn {
  padding: 8px 20px;
  margin: 7px 3px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  background: none;
  color: #ffffff;
}

.btn:hover {
  color: #fddc01;
  font-size: 20px;
  font-family: "lato" sans-serif;
}
.btn-sm {
  pad: 6px 10px;
  vertical-align: middle;
}

.btn-dark {
  border: 2px solid #000;
  color: black;
}

.section {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 80%;
  margin: auto;
  font-family: "Lato", sans-serif;
}

.section-left {
  flex-direction: row-reverse;
}

.paras {
  padding: 0 65px;
}

.sectionSubtag {
  font-family: Lato;
}

.thumbnail img {
  width: 250px;
  border: 4px double rgb(240, 13, 13);
  border-radius: 6px;
}

.contact {
  background-color: #e7e7e5;
  height: 100vh;
}

.text-center {
  text-align: center;
  padding: 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form {
  max-width: 500px;
  margin: auto;
}

.form-input {
  margin: 14px 0;
  padding: 5px 3px;
  width: 100%;
  font-size: 19px;
  border: 2px solid #808080;
  border-radius: 6px;
}

.text-footer {
  text-align: center;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  color: white;
}
.burger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 15px;
}

.line {
  width: 33px;
  background-color: #ffffff;
  height: 4px;
  margin: 5px 3px;
}

@media only screen and (max-width: 1140px) {
  .nav-list {
    flex-direction: column;
  }
  .navbar {
    flex-direction: column;
  }
  .rightNav {
    text-align: center;
  }
  #search {
    width: 100%;
  }
  .burger {
    display: block;
  }
  .h-nav-resp {
    height: 72px;
  }
  .v-class-resp {
    opacity: 0;
  }
}
