/* 
***************************************************************************
**                                GENERAL                                **
***************************************************************************
*/

:root {
  font-family: "Barlow";
}

* {
  margin: 0;
  padding: 0;
  --main-bg-color-white: white;
  --border-hover-grey: grey;
  --hover-black: black;
}

.text-lg {
  font-size: 40px;
  font-weight: 600;
}

.text-sm {
  font-size: 25px;
}

#element {
  color: #2dd3c0;
}

.typed-cursor {
  font-size: 40px;
}

/* 
  ***************************************************************************
  **                          TOP NAVIGATION BAR                           **
  ***************************************************************************
  */

.navbar {
  display: flex;
  justify-content: start;
  align-items: center;
  position: sticky;
  top: 0;
}

.left-nav {
  width: 50%;
  display: flex;
  align-items: center;
}

.logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid whitesmoke;
}

.left-nav li {
  list-style: none;
  padding: 20px;
}

.left-nav li a:hover {
  color: var(--border-hover-grey);
}

.left-nav li a {
  text-decoration: none;
  color: var(--main-bg-color-white);
}

.right-nav {
  width: 50%;
  padding: 0px 20px;
  text-align: right;
}

.background {
  background: rgba(0, 0, 0, 0.7) url("cover.jpg ");
  /* background: linear-gradient(rgb(52, 52, 221), yellow); */
  background-size: cover;
  background-blend-mode: darken;
}

/* 
  ***************************************************************************
  **                             FIRST SECTION                             **
  ***************************************************************************
  */

.firstSection {
  height: 93vh;
}

.box-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  max-width: 70%;
  margin: auto;
  height: 70%;
}

.first-half {
  width: 70%;
  flex-direction: column;
  display: flex;
  display: inline;
  justify-content: center;
}

.second-half {
  width: 30%;
}

.second-half img {
  width: 70%;
  border: 2px solid white;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.btn {
  font-size: 16px;
  padding: 8px;
  border: 2px solid white;
  border-radius: 8px;
  margin: 10px 15px 10px 0px;
  background: none;
  color: white;
  cursor: pointer;
}

/* 
  ***************************************************************************
  **                             SECOND SECTION                            **
  ***************************************************************************
  */

.heading {
  font-size: 44px;
  font-weight: 900;
  margin: auto;
  padding: 80px 0px 0px 150px;
  height: 80px;
  text-decoration: underline;
}

.sectionRt {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1245px;
  margin: auto;
  min-height: 400px;
}

.sectionLeft {
  flex-direction: row-reverse;
}

.thumbnail img {
  height: 270px;
  width: auto;
  border: 2px solid black;
  border-radius: 30px;
}

.paras {
  padding: 0px 80px;
}

.explore-more {
  height: 50px;
  font-size: large;
  /* margin: 10px; */
  margin: 0 20px 0 80%;
}

.explore-more a {
  text-decoration: none;
  color: black;
}

/* 
  ***************************************************************************
  **                             CONTACT                                   **
  ***************************************************************************
  */

.contact {
  background-color: whitesmoke;
  text-align: center;
  padding: 40px;
}

.form {
  max-width: 1200px;
  margin: 42px auto;
}

.form input,
textarea {
  margin: 30px 0;
  padding: 5px 3px;
  width: 100%;
  font-size: 16px;
  border: 2px solid grey;
  border-radius: 6px;
}
