@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1158px;
  height: 80px;
  min-height: 80px;
  background: transparent;
}
.nav-links li {
  display: inline-block;
  margin-left: 20px;
  font-weight: 700;
  font-family: "Roboto";
}
.nav-links li a {
  font-family: "Roboto";
  display: block;
  font-style: normal;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}
.nav-links li .blog {
  color: #ff0000;
}

.nav-links li a:hover {
  color: #ff0000;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn {
  padding: 0px 20px;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 2px;
  display: inline-block;
  color: #ffffff !important;
  border: 1px solid #ff0000;
  border-radius: 23px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: #ff0000;
}
.btn:hover {
  color: #ffffff !important;
  background: #fa65b1;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
}

.hero {
  height: 425px;
  width: 100%;
  max-width: 1158px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0 auto;

  box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.15);
}
.right-side,
.left-side {
  margin: 1rem;
  width: 100%;
}
.right-side {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.heading {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-align: left;
}
.sub-heading {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
  text-align: left;
}
.person-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.person-img {
  height: 30px;
  width: 30px;
  border-radius: 0px;
}
.person-info-text {
  margin-left: 0.5em;
}
.person-name {
  font-size: 16px;
  font-weight: bold;
  margin-right: 1rem;
  color: #000000;
  border-bottom: #626262 1.1px solid;
}
.post-date {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  margin-right: 1rem;
}

.check-mai {
  display: none;
}

label {
  display: flex;
  flex-direction: column;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

label span {
  background: rgb(0, 0, 0);
  border-radius: 10px;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

span:nth-of-type(1) {
  width: 50%;
}

span:nth-of-type(2) {
  width: 100%;
}

span:nth-of-type(3) {
  width: 75%;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(7px, 0px);
}

input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(20px, -7px) rotatez(45deg);
}

/* Card section start Here */
.cards-hero {
  margin: 2rem 0;
  width: 100%;
  max-width: 1158px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
img {
  width: 100%;
}
.card {
  height: 400px;
  width: 100%;
  max-width: 378px;
  padding: 0.5em;
  margin-top: 0.5em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.card-top {
  margin-top: 1em;
}
.card-body h2 {
  margin: 0.5em 0;
}
.card-body .card-person-info {
  margin: 1em 0;
  display: flex;
  align-items: flex-end;
}
.card-top p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}
.card-heading {
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
}

/* pagination-main start here */

.pagination-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
a {
  text-decoration: none;
  color: #000000;
}
.page-item {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 47px;
  letter-spacing: 0.055em;
  color: #000;
  transition: 0.5s;
}
.page-item:nth-child(1) {
  background: #000000;
}
.page-item:nth-child(1) .page-link {
  color: #ffffff;
}
/* .page-item:hover {
  color: #ffffff;
  background: #000000;
}
.page-link:nth-child(1):hover {
  color: #fff;
} */

/* pagination-main end here */

/* Footer start here */
.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  background: #282c4b;
  color: #fff;
}
.footer-main a {
  color: #fff;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 2rem;
  flex-wrap: wrap-reverse;
  gap: 15px;
}
hr {
  width: 98%;
  border: 0;
  height: 1px;
  background-color: #fff;
  margin: 0.5em;
  margin-top: 2rem;
}
.footer-logo {
  height: 45px;
  width: 45px;
  margin-right: 1rem;
}
.address-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-sections {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-right: 1rem;
}
/* .footer-sections ul {
  margin-top: 1rem;
} */
.footer-sections ul li {
  margin-top: 1rem;
}
.footer-top-headings {
  margin-bottom: 1rem;
}

/* Copy Right */
.copy-right {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #ffffff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.copy-right p {
  margin-right: 1rem;
}

/* responsive query start here */

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
    padding: 1rem;
  }
  .right-side,
  .left-side {
    margin: 0;
    width: 100%;
  }
  .right-side {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
  }
  .heading {
    font-size: 20px;
    line-height: 25px;
  }
  .sub-heading {
    font-size: 14px;
    line-height: 20px;
  }
  .person-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .person-img {
    height: 30px;
    width: 30px;
    border-radius: 0px;
  }
  .person-info-text {
    margin-left: 0.5em;
  }
  .person-name {
    font-size: 16px;
    font-weight: bold;
    margin-right: 1rem;
    color: #000000;
    border-bottom: #626262 1.1px solid;
  }
  .post-date {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    margin-right: 1rem;
  }
  .cards-hero {
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .card {
    height: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
  }
  .nav-links:nth-last-child() {
    margin-right: 0.5em;
  }
  .footer {
    justify-content: space-around;
  }
  .check-mai {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}

@media screen and (max-width: 1165px) {
  .container {
    margin: 0 0.5em;
  }
  .hero {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .heading {
    margin-bottom: 1em;
  }
  .sub-heading {
    margin-bottom: 1.5em;
  }
  .footer {
    justify-content: space-evenly;
  }
  .nav-links {
    margin-right: 0.5em;
  }
  .logo {
    margin-left: 0.5em;
  }
}

/* @media screen and (min-width: 768px) {
  
} */

/* Page 2 styling start Here */
.page2-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
}
.page2-logo {
  height: 50px;
  width: 50px;
  margin-right: 1rem;
}
.page2-top-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.page2-top-left h1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 47px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 0.5em;
}
.page2-top-left p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #999999;
  margin-top: 1rem;
}

.page2-banner-img {
  height: auto;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0.5em;

  /* If You dont want you can remove Following CSS*/

  border-radius: 5px;
  box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.15);
}

.page2-banner-img img {
  border-radius: 2px;
}

.page2-content-writer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 2rem;
}
.page2-content-writer-img {
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 2rem;
  height: 86px;
  width: 86px;
}
.page2-content-writer-img img {
  border-radius: 50%;
  width: 100%;
}
.page2-content-writer-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.page2-content-writer-info h2 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.055em;
  color: #000000;
  margin-top: 1rem;
}
.writer-link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.055em;
  color: #003294;
  margin-top: 0.4rem;
}

.page2-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 2rem;
}
.page2-content-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 53px;
  border-top: 2px solid #003294;
}
.page2-content-left .date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page2-content-left .date .day {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 0.01em;
  color: #000000;
}
.page2-content-left .date .month {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;

  color: #868686;
}
.page2-content-left .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}
.page2-content-left .social-icons li {
  margin: 0.3em 0;
}

.page2-content-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 2rem;
  width: 100%;
}
.page2-content-right .content-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0.04em;
  color: #000000;
}
.page2-content-right .sub-content {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #656565;
  margin-top: 1rem;
  margin-bottom: 0.5em;
}
.page2-content-right .sub-content p {
  margin-top: 1rem;
}
.page2-content-right .tag-link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #656565;
  margin-top: 1rem;
}
.page2-content-right .tag-link span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #003294;
}

/* Raleted Articles start here */

.related-articles {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 3rem;
}
.related-articles-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
}
.related-articles-top h2 {
  margin-right: 2rem;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
}
.hr {
  width: 100%;
  height: 1px;
  background-color: #bfbfbf;
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .page2-top-left {
    text-align: center;
  }
  .page2-top-left h1 {
    font-size: 2rem;
  }
  .page2-top-left p {
    font-size: 1rem;
  }
  .page2-content {
    flex-direction: column;
  }
  .page2-content-left {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    flex-direction: row;
    border-top: 0;
    border-bottom: 2px solid #003294;
  }
  .page2-content-left .date {
    flex-direction: row;
    width: 100%;
    margin-left: 0.5em;
  }
  .page2-content-left .date .month {
    width: 100%;
  }
  .page2-content-left .date .day {
    margin-right: 0.5em;
  }
  .page2-content-left .social-icons {
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 0;
    width: 100%;
  }
  .page2-content-left .social-icons li {
    margin: 0 0.5em;
  }
  .page2-content-right {
    margin-left: 0;
    padding: 0.5em;
  }
}

/* Contact Page Start */

.contact-page {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
  margin-top: 1rem;
}
.left-side-contact {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0.5em;
  margin-right: 2rem;
}

.left-side-contact-heading {
  font-family: "Roboto";
  font-style: normal;
  font-size: 2.813rem;
  line-height: 1.07;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #474747;
}

.left-side-contact p {
  font-family: "Roboto";
  font-style: normal;
  word-break: break-word;
  margin: 0.5em 0;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 400;
  color: #474747;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #474747;
}
.form-group .form-control {
  border-radius: 0.25rem;
  border: 1px solid #bfbfbf;
  padding: 0.5rem;
  font-family: "Roboto";
  min-width: 260px;
}

.form-group .form-control:focus,
.form-group .form-control:active {
  border: 1px solid #ff0000;
  box-shadow: none;
}

/* About Us Page start Here */

.about-page {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1158px;
  margin: 0 auto;
}
.left-side-about {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5em;
  margin-right: 2rem;
}
.left-side-about-heading {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.07;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #474747;
}
.left-side-about-heading span {
  color: #ff0000;
}
.left-side-about p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 400;
  color: #bababa;
  margin: 0.5em 0;
}
.right-side-about {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 500px;
  margin: 0 auto;
  padding: 0.5em;
}
.right-side-about img {
  width: 100%;
}
.right-side-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.right-side-btns .btn {
  margin: 0 0.5em;
}
.right-side-btns .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  margin: 0 auto;
  margin-left: 1em;
  flex: 1;
}
.right-side-btns .social-icons li {
  margin: 0 0.5em;
}

@media screen and (max-width: 768px) {
  .about-page {
    flex-direction: column;
  }
  .left-side-about {
    width: 100%;
    margin: 0 auto;
    padding: 0.5em;
    margin-right: 0;
  }
  .left-side-about-heading {
    font-size: 2.813rem;
  }
  .left-side-about p {
    font-size: 1.25rem;
  }
  .right-side-about {
    width: 100%;
    margin: 0 auto;
    padding: 0.5em;
  }
  .right-side-about img {
    width: 100%;
  }
  .right-side-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .right-side-btns .btn {
    margin: 0 0.5em;
  }
  .right-side-btns .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    margin-left: 1em;
    flex: 1;
  }
  .right-side-btns .social-icons li {
    margin: 0 0.5em;
  }
}
