@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  background: #556B2F;
  color: #fff;
}

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

h2 {
  font-size: 28px;
  line-height: 42px;
}

h4 {
  font-size: 16px;
  line-height: 32px;
}

p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
}

ul {
  padding: 0;
  margin: 0;
}

a, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
}

.dFlex {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
}
.dFlex.aic {
  align-items: center;
}
.dFlex.jcc {
  justify-content: center;
}
.dFlex.jcsb {
  justify-content: space-between;
}
.dFlex.fdc {
  flex-direction: column;
}

.dGrid {
  display: grid;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.pClr {
  color: #0057ff;
}

.textC {
  text-align: center;
}

.textR {
  text-align: right;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.btn {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.btn.primary {
  background: #0057ff;
  border-color: #000;
  color: #fff;
}
.btn.primary.tBg {
  background: transparent;
  color: #0057ff;
  border-color: transparent;
}
.btn:hover.primary {
  letter-spacing: 0.08em;
}
.btn:hover.secondary {
  background: #0057ff;
  border-color: #0057ff;
  color: #fff;
}

nav {
  background: #080912;
}
nav li {
  display: inline-block;
  margin-right: 25px;
}
nav li:last-child {
  margin-right: 0;
}
nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  display: block;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
nav a:hover {
  opacity: 1;
}
nav a.active {
  opacity: 1;
  font-weight: 700;
}
nav a.btn {
  opacity: 1 !important;
}

footer {
  background: #010101;
  padding-top: 80px;
}
footer .logo {
  margin-bottom: 25px;
  text-align: center;
}
footer ul {
  margin-bottom: 50px;
}
footer li {
  display: inline-block;
  margin-right: 25px;
}
footer li:last-child {
  margin-right: 0;
}
footer li a {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border: 1px solid #1e1e1e;
  display: block;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  font-weight: 600;
}
footer li a:hover {
  background: #1e1e1e;
}
footer .copy {
  background: #151515;
  padding: 10px 0;
}
footer .copy p {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

#blogHeader {
  height: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#blogHeader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/bg.jpg") no-repeat center center;
  background-size: cover;
  filter: blur(20px);
}
#blogHeader .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#blogHeader .title h2 {
  font-size: 45px;
}
#blogHeader .title p {
  opacity: 0.7;
  font-size: 16px;
}

#interestSec {
  padding: 80px 0;
  background: #f9f9fc;
  color: #000;
}
#interestSec .content {
  max-width: 800px;
  margin: 0 auto;
}
#interestSec .content button {
  margin: 0 auto;
}

#searchBlog {
  background: #f9f9fc;
  padding: 30px 0;
  color: #000;
  border-bottom: 1px solid #eceff8;
}
#searchBlog i {
  font-size: 20px;
}

#blogSec {
  background: #f9f9fc;
  color: #000;
}
#blogSec .item {
  width: calc(33.3333333333% - 4px);
  border: 1px solid #eceff8;
  padding: 20px;
  height: 430px;
  overflow: hidden;
  position: relative;
}
#blogSec .item .imgArea {
  height: 200px;
  width: 100%;
  display: block;
}
#blogSec .item .imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blogSec .item .textArea {
  padding: 20px 0 0 0;
}
#blogSec .item .textArea .category {
  margin-bottom: 15px;
}
#blogSec .item .textArea .category a {
  padding: 8px 16px;
  background: #eceff8;
  color: #151515;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}
#blogSec .item .textArea h4 {
  font-size: 18px;
  font-weight: 600;
}
#blogSec .item .textArea button {
  position: absolute;
  left: 20px;
  bottom: 20px;
}/*# sourceMappingURL=style.css.map */