@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;600&display=swap');
@import url("https://fonts.googleapis.com/css?family=Montserrat:700");

:root {
  --red_light: #e84242;
  --red_deep: #ba0707;
  --white: #ffffff;
  --dark_white: #cccccc;
  --black: #000000;
  --gray: #222222;
}

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

body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    background: var(--white);
    font-size: 16px !important;
}
h1 {
    font-weight: 600;
    font-size: 36px;
    color: #d42c2c;
}

h4 {
    font-weight: 600;
    font-size: 18px;
}

p {
    padding: 0;
    margin: 0;
}


/* ..........scroll to Top..... */


#return-to-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}
#return-to-top span {
    color: #fff;
    margin: 0;
    position: relative;
    left: 7px;
    top: 5px;
    font-size: 36px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover span {
    color: #fff;
    top: 2px;
}


/*.........Navbad Design.................*/
.navcontainer a > img {
    max-width: 200px;
    margin: 10px;
    border-bottom: 1px solid transparent;
    transition: border .3s ease;
}
.navcontainer a > img:hover {
    border-bottom: 1px solid #d42c2c;
}

@media screen and (max-width: 767px) {
    .navcontainer a > img {
        max-width: 100px;
        margin: 4px;
    }
}

.nav-item img {
    max-width: 140px;
    margin: 4px;
    border-bottom: 1px solid transparent;
    transition: border .3s ease;
}
.nav-item img:hover {
    border-bottom: 1px solid #d42c2c;
}


/*.........Homepage Design...............*/
.issue-month-heading {
    font-family: 'Atma', serif;
    font-weight: 600;
    color: white;
}

.story-container {
    border-radius: 15px;
    padding: 20px;
    /*border: 10px dashed #d42c2c;*/
    font-family: 'Atma', serif;
    background: white;
}

.story-container h1, .story-container h4 {
    font-weight: 600;
}

.story-container h1 {
    color: #d42c2c;
}

.story-container .content-summary {
    font-weight: 300;
}

.story-container a.headingtext {
    background: none;
    color: #d42c2c;
    font-family: 'Atma', serif;
    font-weight: 600;
    border-radius: none;
    padding: 0;
    text-decoration: none;
}
.story-container a.headingtext:hover {
    background: none;
    text-decoration: underline;
}

.story-container a {
    background: #d42c2c;
    color: white;
    font-family: 'Atma', serif;
    font-weight: 300;
    border-radius: 30px;
    padding: 4px 20px;
    text-decoration: none;
    transition: background .3s ease;
}

.story-container a:hover {
    background: maroon;
}

.archive-container h3 {
    font-family: 'Atma', serif;
    font-weight: 600;
    text-align: center;
}

.archive-container a {
    display: block;
    width: 100%;
    background: gold;
    color: black;
    font-family: 'Atma', serif;
    font-weight: 600;
    border-radius: 30px;
    padding: 4px 20px;
    text-decoration: none;
    transition: background .3s ease;
}
.archive-container a:hover {
    background: darkorange;
}


/*.........Individual Story Design......*/
.story-content-container {
    font-family: 'Atma', serif;
}

.story-individual-cover {
    width: 100vw !important;
    height: 56.25vw !important;
}

.story-nav-link a {
    text-decoration: none;
}

.story-heading {
    font-weight: 600;
    text-align: center;
    color: #d42c2c;
}

.story-author {
    font-weight: 600;
    text-align: center;
}

.story-main-content {
    font-size: 16px;
}

.story-main-content hr, .content-seperator {
    opacity: 1;
    border:0;
    border-bottom: 10px dotted #d42c2c;
}
.story-main-content hr.solidHr, .story-main-content hr.dashHr, .story-main-content hr.dottedHr, .story-main-content hr.doubleHr {
    opacity: 1;
    border:0;
}
.story-main-content hr.solidHr {
    border-bottom: 10px solid #d42c2c;
}
.story-main-content hr.dashHr {
    border-bottom: 10px dashed #d42c2c;
}
.story-main-content hr.dottedHr {
    border-bottom: 10px dotted #d42c2c;
}
.story-main-content hr.doubleHr {
    border-bottom: 10px double #d42c2c;
}


.comment-seperator {
    opacity: 1;
    border:0;
    border-bottom: 3px solid #d42c2c;
}


.comment-container {
    font-family: 'Atma', serif;
}
.button-group {
  margin-bottom: 20px;
}
.counter {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
}
.comment-posts {
  clear: both;
  list-style: none;
  padding-left: 0;
  width: 100%;
  text-align: left;
}
.comment-posts li {
  background-color: #fff;
  border: 1.5px solid #d42c2c;
  border-radius: 10px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  word-wrap: break-word;
  min-height: 42px;
  box-shadow:3px 3px 10px rgba(0,0,0,.4);
}
.btn-primary {
    color: #fff;
    background-color: #d42c2c !important;
    border-color: #d42c2c !important;
}


/*.........Individual Category Design....*/
.category-container {
    font-family: 'Atma', serif;
    border: 3px dashed #d42c2c;
    border-radius: 20px;
}

.category-issue-heading {
    background: gold !important;
    color: black !important;
    border-radius: 100px !important;
    transition: background .3s ease;
}
.category-issue-heading:hover {
    background: darkorange !important;
}

.category-container a.headingtext {
    background: none;
    color: #d42c2c;
    font-family: 'Atma', serif;
    font-weight: 600;
    border-radius: none;
    padding: 0;
    text-decoration: none;
}
.category-container a.headingtext:hover {
    background: none;
    text-decoration: underline;
}

.category-container a {
    background: #d42c2c;
    color: white;
    font-family: 'Atma', serif;
    font-weight: 600;
    border-radius: 30px;
    padding: 4px 20px;
    text-decoration: none;
    transition: background .3s ease;
}
.category-container a:hover {
    background: maroon;
}


/*.........About Us Design..............*/
.about-us-content {
    font-family: 'Atma', serif;
    font-weight: 600;
    line-height: 40px;
}
.about-us-content strong {
    font-weight: 300;
}


.about-us-content a {
    color: white;
}


/*.........Footer Design.................*/
.footer-section{
    background: var(--black);
    color: #888;
}

.footer-section .footerlink {
    color: var(--red_light);
    text-decoration: none;
    transition: all .1s ease;
}

.footer-section .footerlink:hover {
    color: #ddd;
}

















.share-container {
    position:relative;
    width: 160px;
}
.share {
  max-width: 160px;
  width: 100%;
  overflow: hidden;
  /*position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);*/

  /*box-shadow: 0px 0px 16px 7px rgba(0, 0, 0, 0.1);*/
  transition: all 0.3s ease;
  height: 33px;
  text-align: center;
}
.share .share__header {
  border-radius: 30px;
  background: #d42c2c;
  padding: 4px 4px 4px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-radius 0.3s ease;
}
.share .share__header.active {
  background: #d42c2c;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.share .share__header span {
  color: white;
  letter-spacing: 1px;
}
.share .share__header .plus {
  background: white;
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  cursor: pointer;
}
.share .share__header .plus span.v-cross {
  display: block;
  width: 3px;
  height: 13px;
  background: #d42c2c;
  margin: 0 auto;
}
.share .share__header .plus span.h-cross {
  display: block;
  width: 13px;
  height: 3px;
  background: #d42c2c;
  margin: -50% auto;
}
.share .share__header .plus.rotate {
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
.share .share__content {
  padding: 0px 4px;
  background: #d42c2c;
  border:1px solid #d42c2c;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.share .share__content .item {
  opacity: 1;
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 6px 10px !important;
  transform: translateX(-150%);
  cursor: pointer;
  background: #d42c2c;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.share .share__content .item:hover {
    background: maroon;
}
.share .share__content .item.reveal {
  transition-delay: 0.5s;
  transition: transform 0.3s ease;
  transform: translateX(0);
}
.share .share__content .item img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.share .share__content .item span {
  color: white;
  pointer-events: none;
}


.error {
    font-family: 'Atma', serif;
}
.errortext {
    font-size: 18vw;
    font-weight: bold;
    color: #d42c2c;
}