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

body {
  font-family: "Roboto", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}
/* font and bold */

.font-rale {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.font-mont {
  font-family: "Montserrat", sans-serif;
}

/* font sizes */
.h1-style {
  font-size: calc(20px + 2vw);
  letter-spacing: 5px;
}

.p-style {
  font-size: calc(15px + 0.3vw);
}
/* navbar */
.pc-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 20vw;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0 4rem 3rem;
}

#main-content {
  width: 75vw;
  margin-left: 24vw;
}

.logo {
  width: 150px;
  height: 100px;
}

.nav-links {
  display: flex;
  flex-direction: column;
}

.nav-links a {
  margin: 0 0 3rem 0;
  font-size: 1.3rem;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.nav-links a:hover {
  letter-spacing: 6px;
  text-decoration: underline;
  transition: all 0.5s ease;
}

.social-links a {
  padding-right: 1rem;
  color: #111;
}

.social-links a:hover {
  color: #555;
}

.mobile-nav {
  display: none;
}

/* main content */
#main-content {
  overflow-y: hidden;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.blog-content h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.blog-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 473px;
  height: 360px;
}

.blog-container:hover {
  border: 1px solid #111;
}

.blog-container img {
  margin-top: 2rem;
  width: 412px;
  height: 200px;
}

.blog-heading {
  position: relative;
  margin-top: 1rem;
}

.p-style {
  width: 380px;
  padding-bottom: 0.5rem;
}

.blog-heading a {
  text-decoration: none;
  color: #111;
}

.blog-heading .link {
  position: absolute;
  right: 5px;
  bottom: 20px;
  width: 20px;
  height: 20px;
}

.blog-container:hover .link {
  transition: all 0.5s ease;
  transform: translate(5px, -5px);
}

.view-more {
  text-align: center;
}

.button {
  display: inline-block;
  font-size: 1em;
  background-color: #111;
  padding: 10px 30px;
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s ease;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.button:hover {
  letter-spacing: 6px;
}

/* newsletter header */
.newsletter-header {
  text-align: center;
  padding: 10rem 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.newsletter-header h2 {
  font-size: calc(1.5rem + 2vw);
  padding-bottom: 1rem;
  letter-spacing: 5px;
}

.newsletter-header p {
  font-size: calc(1rem + 0.2vw);
  text-transform: uppercase;
}

.form-elements {
  display: flex;
  justify-content: center;
}

.form-elements fieldset {
  position: relative;
  border: none;
  margin-top: 3rem;
}

.form-elements fieldset label {
  padding-right: 17.5rem;
}

.form-elements input {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.form-elements .submit-btn {
  margin-top: 4rem;
  margin-left: 4rem;
  padding: 1rem 2rem;
  background-color: white;
  color: black;
  cursor: pointer;
}

.thankyou_message p {
  padding-top: 2rem;
  font-size: calc(1rem + 0.5vw);
  line-height: 1.5rem;
}

/* about webdrip */
#about {
  border-bottom: 1px solid #111;
}
.about-p {
  font-size: 1.5rem;
  padding-top: 4rem;
  color: #555;
  padding-bottom: 1rem;
  text-align: center;
  text-decoration: underline;
}

.about-left h2 {
  font-size: calc(1.5rem + 1vw);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.about-right {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 5rem;
}

.about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-info img {
  margin-top: 1rem;
}

.about-info p {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 1rem;
  color: #555;
}

.about-right h2 {
  margin-top: 1rem;
}

/* footer */
.footer-heading {
  text-align: center;
  margin-top: 3rem;
}

.footer-heading p {
  color: #555;
  font-size: calc(1rem + 0.2vw);
  line-height: 1.8rem;
}

.footer-heading h2 {
  font-size: calc(1.5rem + 2vw);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/* custom scrollbar */
::-webkit-scrollbar {
  background: #fff;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #111;
  border-radius: 6px;
}
