@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
}

/* css colors */
:root {
  --header-background: #232559;
}

/* utility classes */
.button-white {
  background: #fff;
  height: 30px;
  border-radius: 5px;
  border: none;
  padding: 0.5rem;
  transition: all 0.5s ease;
}
.button-white:hover {
  box-shadow: 0 0 15px #333;
}
.button-blue {
  background: var(--header-background);
  height: 30px;
  border-radius: 5px;
  border: none;
  padding: 0.5rem;
  color: white;
  margin-bottom: 5px;
  text-decoration: none;
}
.button-blue-whf /*with hover effect*/ {
  width: 70%;
  display: block;
  margin: 1rem auto;
  padding: 10px 12px;
  text-align: center;
  background-color: var(--header-background);
  color: #fff;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.405);
}
.button-blue-whf:hover {
  background-color: #fff;
  border: 2px solid var(--header-background);
  color: #111;
}
.fa-edit,
.fa-save {
  margin: 0 0.4rem;
}
.button-blue-2 {
  background-color: #06f;
  padding: 0.5rem 0.7rem;
  padding: 0.7rem 1.5rem;
  color: #fff;
  border-radius: 30px;
  outline: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.appear {
  display: flex !important;
}
.disappear {
  display: none !important;
}
.change-height {
  height: 80px !important;
}
.overlay {
  background: rgba(0, 0, 0, 0.364);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.error {
  color: rgb(240, 51, 51);
  font-weight: 600;
  display: none;
  position: relative;
  top: -8px;
  font-size: 0.8rem;
}
.rule {
  width: 100%;

  border-bottom: 1px solid #ccc;
  margin: 0.5rem 0;
}

/* /////////////////////////////////////////////////////////////////////////// */
.main-header {
  position: sticky;
  top: 0;
  z-index: 4;
  box-shadow: 0 0 10px #111;
}
.main-header .nav-bar {
  background: var(--header-background);
  color: #fff;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
.main-header .nav-bar .accounts-speaker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 80px;

  cursor: pointer;
}
.main-header .nav-bar .accounts {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  position: relative;
}
.main-header .nav-bar .accounts:hover .account_signup_login {
  display: block;
}
.main-header .nav-bar .accounts .pimg {
  position: relative;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: space-between;
}
.main-header .nav-bar .accounts .pimg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.main-header .nav-bar .accounts h6 {
  margin-left: 10px;
}
.account_signup_login {
  background: #fff;
  display: none;
  position: absolute;
  top: 2.2rem;
  z-index: 2;
  padding: 4px 4px;
  left: -10px;
  width: 130px;
  border-radius: 5px;
  box-shadow: 0px 3px 5px #888;
  z-index: 1;
}
.account_signup_login::before {
  content: "";
  position: absolute;
  top: -0.5rem;

  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  width: 0;
  height: 0;
}
.account_signup_login a {
  color: var(--header-background);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  position: relative;
  font-weight: 800;
  margin: 5px;
}
.main-header .nav-bar .nav-links {
  position: relative;
}
.main-header .nav-bar .nav-links > ul {
  display: flex;
}
.main-header .nav-bar .nav-links ul li {
  list-style: none;
  position: relative;
}
.main-header .nav-bar .nav-links ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  font-weight: 700;
  transition: all 0.2s;
}
.main-header .nav-bar .nav-links ul li a:hover {
  background-color: #fff;
  color: #111;

  border-top-right-radius: 5px;

  border-bottom-left-radius: 5px;
}
.main-header .nav-bar .nav-links ul li > ul {
  position: absolute;
  top: 23px;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 3px 5px #111;
  z-index: 2;
  width: 200px;
  opacity: 0;
  transition: all 0.3;
  visibility: hidden;
}

.main-header .nav-bar .nav-links ul ul a {
  color: #111;
  padding: 0.5rem;
  display: block;
}

.main-header .nav-bar .nav-links ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  border-radius: 5px;
}
.main-header .nav-bar .nav-links ul li:hover > ul li a:hover {
  background-color: rgb(221, 221, 221);
}
.menu-icon {
  display: none;
}
.signup-login-mobile-view {
  width: 100%;
  margin: 1.5rem 0;
  display: none;
}

.nav-links.active .signup-login-mobile-view {
  display: block;
}
/* //////////search section///////////////////// */
.main-header .search-area {
  background: rgb(53, 53, 53);
  width: 100%;
  height: 5px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s;
}
.main-header .search-area .search-box {
  display: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 40px;
}

.main-header .search-area .search-box input {
  width: 80%;
  height: 80%;
  border-radius: 5px;
  border: none;
  margin: 0.5rem;
  padding: 0.5rem;
}
.main-header .search-area .country-section {
  display: none;
  padding: 10px 10px 10px 0px;
}

.main-header .search-area .country-section select {
  padding: 7px 0px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #fff;
  cursor: pointer;
}
.main-header .search-area .sort-section {
  display: none;
  padding: 10px 10px 10px 10px;
}
.main-header .search-area .sort-section select {
  padding: 7px 0px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #fff;
  cursor: pointer;
}
.main-header .search-area .search-icon {
  position: absolute;
  top: 0px;
  background: rgb(255, 233, 68);
  width: 50px;
  height: 25px;
  border: 5px solid rgb(53, 53, 53);
  border-top: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.main-header .search-area .search-icon img {
  transform: rotate(133deg);
  position: relative;
  left: 8px;
  top: -8px;
}
/* //////////////////////////////////header responsiveness////////// */
@media only screen and (max-width: 950px) {
  .menu-icon {
    display: block;
  }
  .main-header .nav-bar .nav-links {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% - 80px);
    height: 100vh;
    overflow: scroll;
    left: -500px;
    width: 80%;
    background-color: #fff;
    z-index: 2;
    transition: all 0.5s ease-in;
  }
  .main-header .nav-bar .accounts-speaker {
    display: none;
  }
  .main-header .nav-bar .nav-links.active {
    left: 0px;
    visibility: visible;
    opacity: 1;
  }
  .main-header .nav-bar .nav-links > ul {
    flex-direction: column;
    align-items: center;
    display: none;
  }
  .main-header .nav-bar .nav-links ul li:hover > ul {
    visibility: hidden;
    opacity: 0;
  }
  .main-header .nav-bar .nav-links.active > ul {
    display: flex;
  }
  .main-header .nav-bar .nav-links.active ul li {
    width: 100%;
    padding: 2rem;
  }
  .main-header .nav-bar .nav-links.active ul li:hover {
    background-color: rgb(237, 237, 237);
  }
  .main-header .nav-bar .nav-links.active ul li a {
    color: #111;
    text-align: center;
    padding: 0;
  }
  .main-header .search-area .search-box {
    width: 85%;
  }
  .main-header .nav-bar .nav-links ul li > ul {
    background-color: rgb(237, 237, 237);
  }

  .main-header .nav-bar .nav-links ul li > ul.show {
    display: block;
    position: static !important;
    top: 23px;
    flex-direction: column;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
  }

  .main-header .nav-bar .nav-links ul li a:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #111;
  }
  .modal-pop {
    width: 90% !important;
  }
  #toTop {
    padding: 0.5rem;
  }
}

/* ///////latest headlines//////// */
.latest-news .news-container {
  width: 70%;
  margin: auto;
}
.latest-news .news-container h3 {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem;
}
.latest-news .news-container .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.box {
  width: 300px;
  height: 450px;
  background-color: #fff;
  box-shadow: 0 0 10px #111;
  margin: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
.box .image-container {
  position: relative;
  width: 100%;
  height: 55%;
}
.box .image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.box .image-data {
  height: 42%;
  padding: 1rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
}
.box .image-data .source-and-more {
  display: flex;
  justify-content: space-between;
}

/* /////////////////////////view article page custom////////////////////////// */
.pop-up-container {
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
  left: 0;
  z-index: 5;
}

.pop-up-container .modal-pop {
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255, 255, 255);
  max-width: 700px;
  height: 90%;
  z-index: 4;
  position: fixed;
  top: 0%;
  z-index: 6;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 0 0 40px #333;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pop-up-container .modal-pop::-webkit-scrollbar {
  display: none;
}

.transition {
  visibility: visible !important;
  opacity: 1 !important;
  top: 5% !important;
}

.pop-up-container .modal-pop .news-content {
  padding: 1rem;
}
.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #e12222;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
}
.close-icon > i {
  font-size: 1.5rem;
}
.pop-up-container .modal-pop .img-container {
  position: relative;
  width: 100%;
  height: 40%;
}
.pop-up-container .modal-pop .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.pop-up-container .modal-pop .news-content .news-description h3 {
  margin-top: 2rem;
}
.pop-up-container .modal-pop .news-content .news-description h6 {
  margin-top: 10px;
}
.pop-up-container .modal-pop .news-content .news-description p {
  margin-top: 10px;
}
.pop-up-container .modal-pop .news-content .news-author-source {
  margin-top: 10px;
}
.pop-up-container .modal-pop .news-content .news-author-source h4 {
  margin-top: 5px;
}
.pop-up-container .modal-pop .news-content .news-author-source h5 {
  margin-top: 5px;
  margin-bottom: 20px;
}
.pop-up-container .modal-pop .news-content .news-author-source a {
  margin-top: 5px;
}

/* //////////////////back to top//////////////// */
.back-to-top {
  position: fixed;
  top: 300px;
  right: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  cursor: pointer;
}
#toTop {
  position: absolute;
  background-color: #fff600;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.405);
}

/* ///////////////////////////////footer styling///////////////////////////// */
.footer-top-container {
  background-color: #191919;
  display: flex;
  border-bottom: 2px solid #fff600;
  flex-wrap: wrap;
}

.footer-top-container .about-short-container {
  flex-basis: 50%;
  padding: 2rem 4rem 2rem 4rem;
}
.footer-top-container .about-short-container h5 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.footer-top-container .about-short-container p {
  color: #fff;
}
.footer-top-container .quick-links-container {
  flex-basis: 25%;
  padding: 2rem;
}
.footer-top-container .quick-links-container h5 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.footer-top-container .quick-links-container .quick-links {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.footer-top-container .quick-links-container .quick-links a {
  text-decoration: none;
  color: #fff;
  padding-bottom: 1rem;
  width: 115px;
}
.footer-top-container .quick-links-container .quick-links a:hover {
  text-decoration: underline;
  text-decoration-color: #fff600;
}
.footer-top-container .footer-contact {
  flex-basis: 25%;
  padding: 2rem;
}
.footer-top-container .footer-contact h5 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-top-container .footer-contact .contact-info {
  display: flex;
  flex-direction: column;
}
.footer-top-container .footer-contact .contact-info .contact {
  color: #fff;
  word-break: break-word;
}
.footer-top-container .footer-contact .contact-info .contact p {
  display: inline;
  line-height: 40px;
  margin-left: 0.5rem;
  color: #fff;
}
.footer-bottom-container {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #191919;
}
.footer-bottom-container h5 {
  color: #fff;
}
/* ///////////////////footer responsiveness///////////////////// */
@media only screen and (max-width: 1000px) {
  .footer-top-container .about-short-container {
    flex-basis: 50%;
    padding: 2rem;
  }
  .footer-top-container .footer-contact {
    padding: 2rem;
    flex-basis: 100%;
  }
  .footer-top-container .quick-links-container {
    padding: 2rem;
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .footer-top-container .about-short-container {
    flex-basis: 100%;
  }
  .footer-top-container .footer-contact {
    flex-basis: 100%;
  }
  .footer-top-container .quick-links-container {
    flex-basis: 100%;
  }
}
/* /////////////////////Responsive //////////////////////////////// */

@media only screen and (max-width: 330px) {
  .latest-news .news-container .container .box .image-data h4 {
    font-size: 0.8rem;
  }
  .latest-news .news-container .container .box .image-data h5 {
    font-size: 0.8rem;
  }
  .latest-news .news-container .container .box .image-data p {
    font-size: 0.8rem;
  }
  .pop-up-container .modal-pop .news-content {
    margin-bottom: 1rem;
  }
}

/* ////////////////////////About Us Page Styling////////////////////// */
main .about-us {
  width: 100%;
  margin: 0rem auto;
}
main .about-us .about-us-container {
  position: relative;
  display: flex;
  padding: 0 3rem;

  min-height: 500px;
  background: url("../images/about/newsbg.jpg") no-repeat scroll center/cover;
  background-blend-mode: lighten;
  background-color: #111;
}
main .about-us .about-us-container .about-img-container {
  position: relative;
  width: 50%;
  height: 300px;
  z-index: 2;
}
main .about-us .about-us-container .about-img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
}
main .about-us .about-us-container .about-content {
  width: 50%;
  padding: 1rem;
  z-index: 2;
  margin: auto;
}
main .about-us .about-us-container .about-content p {
  line-height: 30px;
  font-size: 1.2rem;
  color: #fff;
}
.developer {
  display: block;
  margin-top: 2rem;
}
main .about-us .why-us-container .why-us-head h4 {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 4rem;
}
main .about-us .why-us-container .why-us-head p {
  font-size: 1.2rem;
  text-align: center;
}
main .about-us .why-us-container .why-us-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: 400px;
  justify-content: center;
  align-content: center;
  margin-top: 2rem;
}
main .about-us .why-us-container .why-us-content .small-box {
  width: 200px;
  height: 170px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main
  .about-us
  .why-us-container
  .why-us-content
  .small-box
  .why-us-img-container {
  width: 80px;
  height: 80px;
  position: relative;
}
main
  .about-us
  .why-us-container
  .why-us-content
  .small-box
  .why-us-img-container
  img {
  width: 100%;
  height: 100%;
  position: absolute;
}
main .about-us .why-us-container .why-us-content .small-box h4 {
  text-align: center;
  margin-top: 1rem;
}

main .about-us .developer-container {
  padding: 0 5rem;
  margin: auto;
  margin: 4rem 0;
}
main .about-us .developer-container .developer-heading {
  margin-bottom: 5rem;
}
main .about-us .developer-container .developer-heading h4 {
  font-size: 1.4rem;
  text-align: center;
}
main .about-us .developer-container .developer-heading p {
  font-size: 1.2rem;
  text-align: center;
}
main .about-us .developer-container .developer-content {
  display: flex;
  margin-top: 2rem;
}
main .about-us .developer-container .developer-content .dev-img-container {
  width: 50%;
  height: 300px;
  position: relative;
  order: 2;
}
main .about-us .developer-container .developer-content .dev-img-container img {
  width: 100%;
  height: 100%;
  position: absolute;
}
main .about-us .developer-container .developer-content .dev-content {
  width: 50%;
  order: 1;
  padding: 1rem;
}
main .about-us .developer-container .developer-content .dev-content p {
  line-height: 30px;
  font-size: 1.2rem;
}
main .about-us .contribute-container {
  display: flex;

  padding: 0 3rem;
  margin: auto;
  margin: 4rem 0;
}
main .about-us .contribute-container .contrbute-img-container {
  width: 50%;
  height: 300px;
  position: relative;
  order: 1;
}
main .about-us .contribute-container .contrbute-img-container img {
  width: 100%;
  height: 100%;
  position: absolute;
}
main .about-us .contribute-container .contribute-content {
  width: 50%;
  order: 2;
  margin: auto 0;
  padding: 1rem;
}
main .about-us .contribute-container .contribute-content p {
  line-height: 30px;
  font-size: 1.2rem;
}

#contact {
  margin: 2rem 0;
  background-color: #f21170;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.5 ease;
}
#contact:hover {
  background-color: #e6136b;
}

@media only screen and (max-width: 968px) {
  main .about-us {
    width: 100%;
    margin: 0 auto;
  }
  main .about-us .about-us-container .about-content {
    width: 100%;
  }
  main .about-us .about-us-container {
    padding: 1rem;
  }
}
@media only screen and (max-width: 900px) {
  main .about-us .developer-container .developer-content {
    flex-direction: column;
  }
  main .about-us .developer-container {
    padding: 1rem;
  }
  main .about-us .developer-container .developer-content .dev-img-container {
    width: 100%;
    order: 1;
  }
  main .about-us .developer-container .developer-content .dev-content {
    width: 100%;
    order: 2;
    margin-top: 1rem;
  }
  main .about-us .developer-container {
    margin: 3rem 0;
  }
}

/* ////////////////////////////Contact Us Section/////////////////////// */
main .contact-us .contact-us-top {
  background: url("../images/contact/customer-service.jpg") no-repeat fixed
    center/cover;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .contact-us .contact-us-top .contact-us-top-content {
  z-index: 3;
  text-align: center;
}
main .contact-us .contact-us-top .contact-us-top-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

main .contact-us .contact-us-main {
  display: flex;
  justify-content: space-around;
}
main .contact-us .contact-us-main .contact-us-form-section {
  padding: 3rem 2rem;
}
main .contact-us .contact-us-main .contact-us-form-section .form-content {
  margin-bottom: 2rem;
}
main .contact-us .contact-us-main .contact-us-form-section .form-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
main .contact-us .contact-us-main .contact-us-form-section .form-content p {
  font-size: 1rem;
}
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  .form-input {
  padding: 0.5rem 1rem;
  width: 80%;
  outline: none;
  border: 1px solid black;
  border-radius: 5px;
}

main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  textarea {
  resize: none;
  width: 80%;
  outline: none;
  border: 1px solid black;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  .form-input:focus,
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  textarea:focus {
  border-color: rgb(63, 168, 209);
}

/* //////////contact form label animation///////////////////////// */
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  .form-label {
  font-weight: bolder;
  position: relative;
  top: -1.6rem;
  left: 1rem;
  background-color: #fff;
  transition: all 0.5s ease;
}
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  .form-label2 {
  font-weight: bolder;
  position: relative;
  top: -10rem;
  left: 1rem;
  background-color: #fff;
  transition: all 0.5s ease;
}
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  .form-input:focus
  ~ .form-label {
  top: -2.8rem;
  left: 0.5rem;
  font-size: 0.8rem;
}
main
  .contact-us
  .contact-us-main
  .contact-us-form-section
  .contact-us-form
  .form-group
  textarea:focus
  ~ .form-label2 {
  top: -11.6rem;
  left: 0.5rem;
  font-size: 0.8rem;
}
.freeze {
  top: -2.8rem !important;
  left: 0.5rem !important;
  font-size: 0.8rem !important;
  color: #e6136b;
}
.freeze2 {
  top: -11.5rem !important;
  left: 0.5rem !important;
  font-size: 0.8rem !important;
  color: #e6136b;
}
#submit-button {
  width: 150px;
  border: 2px solid var(--header-background);
  background: none;

  border-radius: 5px;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;

  text-decoration: none;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
}
#submit-button:hover {
  color: #fff;
}
#submit-button::after,
#submit-button::before {
  background: var(--header-background);
  content: "";
  position: absolute;
  z-index: -1;
}

#submit-button::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
  transition: all 0.5s ease;
}
#submit-button:hover:after {
  width: 100%;
}

main .contact-us .contact-us-main .contact-us-address {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
}
main .contact-us .contact-us-main .contact-us-address .contact-email {
  margin-bottom: 2rem;
}

main .contact-us .contact-us-main .contact-us-address .contact-email h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
main .contact-us .contact-us-main .contact-us-address .contact-email p {
  font-size: 0.9rem;
}
main .contact-us .contact-us-main .contact-us-address .address-section strong {
  font-size: 1.2rem;
  margin-bottom: -0.5rem;
  display: block;
}

@media only screen and (max-width: 550px) {
  main .contact-us .contact-us-main {
    flex-direction: column;
  }
}

/* //////////////////////////////singup page styling//////////// */

.signup-login {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: #fff;
  min-height: 100vh;
}

.signup-login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 660px;
  background-color: #ffffff;
  box-shadow: rgb(140 139 139) 0px 0px 10px;
  margin: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgb(61, 61, 61);
}
.form-heading-container {
  width: 100%;
  background: rgb(61, 61, 61);
}
.form-heading-container h3 {
  margin: 1.5rem;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.form-container {
  width: 80%;
}
.form-container .form-group {
  margin: 1rem 0;
  height: 65px;
}
.form-container .form-group .input-el {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #222;
  outline: none;
  transition: all 0.5s ease-in-out;
}
.form-container .form-group .input-el:focus {
  border: 1px solid transparent;
  border-image-source: linear-gradient(to right, #9face6, #74ebd5);
  border-image-slice: 1;
  -webkit-border-image-source: linear-gradient(to right, #9face6, #74ebd5);
  -moz-border-image-source: linear-gradient(to right, #9face6, #74ebd5);
}
.form-container .form-group label {
  position: relative;
  top: -2.2rem;
  left: 1.5rem;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
}

.form-container .form-group .input-el:focus ~ label,
.form-container
  .form-group
  .input-el:not(:placeholder-shown).input-el:not(:focus)
  ~ label {
  top: -3.7rem;
  left: 0.8rem;
  font-size: 0.8rem;
}

.form-container button {
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #9face6, #74ebd5);
  border: none;
  outline: none;
  position: relative;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
}
.form-container button::before,
.signup-login .signup-container .form-container button::after {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  content: " ";
  z-index: -1;
  transition: all 0.4s ease-out;
}
.form-container button:hover:before {
  opacity: 1;
}
.already-a-user-container {
  width: 100%;
}
.already-a-user-container p {
  font-weight: 700;
  text-align: center;
  margin: 1rem;
}
/* //////////////////////////signup - signin animation///////////////////// */
.response-message-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background: #1111114f;
  display: none;
}
.response-message-container .response-card {
  width: 250px;
  height: 250px;
  background: rgb(248, 248, 248);
  position: relative;
  top: calc(50vh - 100px);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 4px;
  padding: 1rem;
}
.response-message-container .response-card p {
  margin-top: 1rem;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}
.response-message-container.active {
  display: block;
}
.response-img {
  display: flex;
  justify-content: center;
}
.response-img i:nth-child(1) {
  font-size: 5rem;
  color: #82c91e;
  display: none;
}
.response-img i:nth-child(2) {
  font-size: 5rem;
  color: #e12222;
  display: none;
}
/* //////////////load  more button//////////// */
.load-more {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  width: 300px;
  height: 70px;
}
#load-more-button {
  display: none;
}

/* /////////////////////////////////User Profile Page Styling//////////////////// */
.profile-section .profile-container {
  width: 90%;
  margin: auto;

  flex-wrap: wrap;
  justify-content: center;
  display: none;
}
.profile-section .profile-container .profile-pic-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  margin: 2rem 0;
}
.profile-section .profile-container .profile-pic-area .profile-image-area {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 1rem;
}

#profile_image_edit_icon {
  background-color: #06f;
  z-index: 3;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -1rem;
  right: -16px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgb(140 139 139) 0px 0px 7px;
}
.profile-section .profile-container .profile-pic-area .profile-image-area img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: rgb(221 221 221) 0px 5px 30px;
}
input[type="file"] {
  display: none;
}
.file-upload {
  width: 180px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.show-upload {
  opacity: 1;
  visibility: visible;
}
.profile-section .profile-container .profile-pic-area .file-upload label {
  background: #fff600;
  padding: 0.5rem;
  border-radius: 30px;
  box-shadow: 0px 3px 5px #ccc;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
#file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1rem 0;
  width: 100%;
}

.profile-section .profile-container .profile-details-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;

  border-radius: 5px;
  margin: 2rem;
  padding: 1rem;
  position: relative;
  height: auto;
}

.profile-section .profile-container .profile-details-area .edit-save-icon {
  font-size: 1.3rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.5rem;
  color: #286090;
  cursor: pointer;
}

.profile-section .profile-container .profile-details-area h3 {
  margin: 1rem 0;
}
.profile-section
  .profile-container
  .profile-details-area
  .user-details-container {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: rgb(221 221 221) 0px 5px 30px;
}

.profile-section
  .profile-container
  .profile-details-area
  .user-details-container
  span {
  display: block;
}
.profile-section
  .profile-container
  .profile-details-area
  .user-details-container
  .profile-detail {
  margin: 1rem 0;
}
.profile-section
  .profile-container
  .profile-details-area
  .user-details-container
  .profile-detail-type {
  color: var(--header-background);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
/* /////////////////////////////// */
.profile-section .profile-container .user-news-intrests-container {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: rgb(221 221 221) 0px 5px 30px;
}
.profile-section
  .profile-container
  .profile-details-area
  .user-news-intrests-container
  .news-category-preference {
  display: flex;
  flex-wrap: wrap;
}
.profile-section
  .profile-container
  .user-news-intrests-container
  .news-category-preference
  .badge-pill {
  margin: 0.3rem;
  border: 1px solid var(--header-background);
  padding: 0.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.profile-section
  .profile-container
  .user-news-intrests-container
  .news-category-preference
  .badge-pill.active {
  background-color: var(--header-background);
  color: #fff;
}
.profile-form-input {
  border: 0;
  border-bottom: 1px solid rgb(0, 132, 255);
  outline: none;
  width: 50%;
  transition: border-color 0.5s;
}
.profile-form-input:focus {
  border-color: rgb(93, 220, 125);
}
/* profile responsiveness  */
@media only screen and (max-width: 400px) {
  .profile-section .profile-container .profile-details-area {
    margin: 1rem;
    padding: 0;
  }

  .profile-section .profile-container .profile-pic-area .profile-image-area {
    width: 200px;
    height: 200px;
  }
}
/* /////////////////////////Personalized News page styling/////////////////////// */

#search-news-container {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  width: 80%;
  margin: 2rem auto;
}
.outer-news-container {
  display: grid;
  grid-row-gap: 20px;
}
.p-intrest-heading {
  text-align: center;
  margin: 2rem 1rem;
}
.outer-news-container .inner-news-container {
  width: 99vw;
  margin: 2rem 0;
}
.outer-news-container .inner-news-container .p-container {
  display: flex;
  width: 97%;
  overflow-x: auto;
  margin: auto;
}
.outer-news-container .inner-news-container h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.outer-news-container .inner-news-container .p-container .box {
  min-width: 270px;
}
::-webkit-scrollbar {
  width: 10px; /* for vertical scroll bar*/
  height: 7px; /* for horizontal scroll bar*/
}
::-webkit-scrollbar-track {
  background: #fff;
  margin-top: 1rem;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 15px;

  /* display: none; */
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.activation-message {
  padding: 1px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activation-message-container {
  margin: 2rem;
}
.activation-message-container h2 {
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (max-width: 700px) {
  .activation-message-container h2 {
    font-size: 1.2rem;
  }
}
/* ////////////////////////////reset_password styling/////////////////////////// */

.password-reset
{
  height: 50vh;
  padding: 1px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* /////////////////////loader/////////////////////// */
/* Css Loader Source -: https://loading.io/css/ */
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  display: block;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(27, 116, 211);
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ////////////loader styling /////////////////////////// */
/* Source -: https://loading.io/css/ */
.loader {
  display: none;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
  padding: 2rem;
  height: 60vh;
}
.loader h3 {
  text-align: center;
}
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: var(--header-background);
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}
