@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');

/*font-family: 'Galada', cursive;*/
:root {
  --columns: 3;
  --green: rgba(6, 141, 126, 1);
  --white: rgba(255, 255, 255, 1);
}

@font-face {
  font-family: websiteFont;
  src: url('fonts/web_font.eot'); /* IE9 Compat Modes */
  src: url('fonts/web_font.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/web_font.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/web_font.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/web_font.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/web_font.svg#svgFontName') format('svg'); /* Legacy iOS */
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin:0;
    padding:0;
    /*scrollbar-color: #038b71 #282828;
    scrollbar-width: thin;
    scrollbar-width: none;*/
}

body {
    font-family: 'Hind Siliguri', sans-serif;
}


/*...... Navbar Design ......*/

.navbar-custom {
    background-color: #181818;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-text,
.navbar-custom .nav-link{
    color: #dce53f;
    text-align: center;
    margin: auto 10px;
    padding: 5px 16px;
    border-radius: 5px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:active,
.navbar-custom .nav-link:focus{
    color: #282828;
    background: #dce53f;
    background: linear-gradient(to bottom, #dce53f, #8aa632);
}

.nav-link {
    cursor: pointer;
}


/*........ Header Image Slider.........*/

.headerLeft {
    position: absolute;
    background-image: url("/images/siteImages/banner_foreground_new.png");
    background-repeat: no-repeat;
    background-position: right 0;
    background-size: cover;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    min-height: 100px;
    max-height: 200px;
    height: 175px;
}

.headerRight {
    /*background: #181818;*/
    background: #fff;
    /*background-image: url("/images/siteImages/masterhead.png");
    background-repeat: no-repeat;
    background-position: right 0;
    background-size: contain;*/
    margin: 0 auto;
    width: 100%;
    min-height: 100px;
    max-height: 200px;
    height: 175px;
}

.headerLeft img {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(10px,-50%);
    width: 40%;
    height: auto;
}

#bigheaderhiddenmenu {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: all .2s;
    display: none;
}

#bigheaderhiddenmenu:hover {
    color: #038b71;
}

.headerRight img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.adopacity {
    opacity: 0.4;
}

.imageslider {
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
}

.imageslider-content {
    display: inline-block;
    position: relative;
    min-height: 175px;
    max-height: 200px;
    height: 175px;
    z-index: -1;
    float:right;
    right:-3294px;
    animation: slideimage 45s linear infinite;
    background:#666;
}
.imageslider-collection-1 {
    min-height: 175px;
    max-height: 200px;
    height: 175px;
    z-index: -1;
    position: relative;
    left: 0%;
    animation: swapimage 45s linear infinite;
}
@keyframes swapimage {
    0%, 50% {
        left: 0%;
    }
    50.0001%,
    100% {
        left: 100%;
    }
}
.imageslider-content:hover {
    animation-play-state: paused;
}

@keyframes slideimage {
    0% {
        transform: translateX(-25px);
    }
    10% {
        transform: translateX(-106px);
    }
    10.3% {
        transform: translateX(-386px);
    }
    20% {
        transform: translateX(-472px);
    }
    20.3% {
        transform: translateX(-752px);
    }
    30% {
        transform: translateX(-838px);
    }
    30.3% {
        transform: translateX(-1118px);
    }
    40% {
        transform: translateX(-1204px);
    }
    40.3% {
        transform: translateX(-1484px);
    }
    50% {
        transform: translateX(-1570px);
    }
    50.3% {
        transform: translateX(-1850px);
    }
    60% {
        transform: translateX(-1936px);
    }
    60.3% {
        transform: translateX(-2216px);
    }
    70% {
        transform: translateX(-2302px);
    }
    70.3% {
        transform: translateX(-2582px);
    }
    80% {
        transform: translateX(-2668px);
    }
    80.3% {
        transform: translateX(-2948px);
    }
    90% {
        transform: translateX(-3034px);
    }
    90.3% {
        transform: translateX(-3314px);
    }
    99.9% {
        transform: translateX(-3400px);
    }
    100% {
        transform: translateX(-100%);
    }
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    text-align: center;
    z-index: 99999;
    /*background-color: #012e25;*/
}

.sticky > div {
    display: inline-block;
    height: 55px;
    width: 55px;
    background-image: url("social-buttons1.png");
    background-repeat: no-repeat;
    background-size: 317px 65px;
    cursor: pointer;
    opacity: .7;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}

.sticky > div:hover {
    opacity: 1;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}

@media only screen and (max-width: 767px) {
    .headerLeft, .headerRight {
        position: relative;
        max-height: 100px;
        height: 100px;
        text-align: center;
        background: none;
    }

    .headerRight {
        text-align: left;
        /*background: #181818;*/
        background: #fff;
    }

    .headerLeft img {
        position: relative;
        object-fit: contain;
        width: auto;
        height: 100%;
    }
    
    .imageslider {
        visibility: hidden;
        display: none;
    }
    
    #bigheaderhiddenmenu {
        display: block;
    }
    
    #myNavbarContainer {
        display: none;
    }
}



.homesubcatlink a > div {
    text-shadow: 2px 2px 2px rgba(0,0,0,.4);
    margin-bottom: 20px;
    transition: padding-left .1s ease-in;
}

.homesubcatlink a:hover > div {
    padding-left: 5px;
    color: #eee;
}

/* START loading code........................................................................................... */
.loading {
	border: 4px solid #333333;
	border-radius: 50%;
	border-top: 4px solid #f7b03e;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
	margin-left: 0px;
	vertical-align: middle;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* END loading code........................................................................................... */

/*................ Scroll Top ................*/
#scrollTop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 5px;
  z-index: 99;
  font-size: 12px;
  border: none;
  outline: none;
  background: linear-gradient(to bottom, #dce53f, #909808);
  color: white;
  cursor: pointer;
  padding: 10px 17px;
  margin: 0;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#scrollTop:hover {
  opacity: 1;
}

#scrollTop span {
  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 6px;
  margin-top: 10px;
  box-shadow: 1px 1px 1px rgba(0,0,0,.2);
  
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*................ Login ................*/
#LoginSignupModal .container {
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2), 0 10px 10px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

#LoginSignupModal .form-container div {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding:  0 50px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#LoginSignupModal .form-container input {
    background: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

#LoginSignupModal button {
    border-radius: 20px;
    border: 1px solid #038b71;
    background: #038b71;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 25px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

#LoginSignupModal button:active {
    transform: scale(.95);
}

#LoginSignupModal button:focus {
    outline: none;
}

#LoginSignupModal button.ghost {
    background: transparent;
    border-color: #fff;
}

#LoginSignupModal .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
}

#LoginSignupModal .sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

#LoginSignupModal .sign-up-container {
    left: 0;
    width: 50%;
    z-index: 1;
    opacity: 0;
}

#LoginSignupModal .overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100;
}

#LoginSignupModal .overlay {
    /*background: #ff416c;
    background: linear-gradient(to right, #f61b54, #b10330) no-repeat 0 0 / cover;*/
    background: #045c4b;
    background: linear-gradient(to right, #038b71, #045c4b) no-repeat 0 0 / cover;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

#LoginSignupModal .overlay-panel {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 100%;
    width: 50%;
    text-align: center;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

#LoginSignupModal .overlay-right {
    right: 0;
    transform: translateY(0);
}

#LoginSignupModal .overlay-left {
    transform: translateY(-20%);
}

/* Move signin to right */
#LoginSignupModal .container.right-panel-active .sign-in-container {
    transform: translateY(100%);
}

/* Move overlay to left */
#LoginSignupModal .container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

/* Bring signup over signin */
#LoginSignupModal .container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
}

/* Move overlay back to right */
#LoginSignupModal .container.right-panel-active .overlay {
    transform: translateX(50%);
}

/* Bring back the text to center */
#LoginSignupModal .container.right-panel-active .overlay-left {
    transform: translateY(0);
}

/* Same effect for right */
#LoginSignupModal .container.right-panel-active .overlay-right {
    transform: translateY(20%);
}


/*................ Menu Style ..................*/

#smallheader {
    box-shadow: 0 5px 5px rgba(0,0,0,.3);
}

.menuleft {
    font-family: 'Hind Siliguri', sans-serif;
    background: #ffffff;
    background: linear-gradient(125deg, #ffffff 175px, #038b71 176px, #038b71 190px, #282828 191px, #282828);
    text-align: center;
}

.menuright {
    background: #282828;
}

.menuleft img {
    width: 150px;
    height: auto;
    transition: all .2s ease-in-out;
}

.menuleft ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*background-color: #ffffff;*/
  background-color: transparent;
  margin-left: 40px;
  border-radius: 5px;
}

.menuleft ul li {
  float: left;
}

.menuleft ul li a, .menuleft ul li div, .menuleft ul li span {
  display: block;
  color: #dce53f;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.menuleft ul li a:hover, .menuleft ul li div:hover, .menuleft ul li span:hover {
  color: #282828;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,.5);*/
  background: #dce53f;
  background: linear-gradient(to bottom, #dce53f, #8aa632);
}

.menuright ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #282828;
}

.menuright ul li div {
  display: block;
  color: #dce53f;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  padding: 5px 16px 7px 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.menuright ul li div:hover, .menuright ul li span:hover {
  color: #111;
  background: #dce53f;
  background: linear-gradient(to bottom, #dce53f, #909808);
}

.menuright ul li span {
  display: block;
  color: #dce53f;
  text-align: center;
  margin: 10px 0;
  padding: 7px 16px 5px 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}


.sidenav {
  font-family: 'Hind Siliguri', sans-serif;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1021;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a, .sidenav > div {
  padding: 8px 8px 8px 52px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.sidenav a h6:first-child {
    color: #ccc;
    transition: 0.3s;
}

.sidenav a:hover, .sidenav > div:hover, .sidenav a:hover h6:first-child {
  color: #dce53f;
}

.sidenav a > span, .sidenav > div > span {
    position: absolute;
    top: 9px;
    left: 15px;
    margin-right: 5px;
}

.sidenav .closebtn, .individualsidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav hr {
    border-top: 1px solid #222;
}

.individualsidebar {
    position: fixed;
    padding: 10px 0 180px 0;
    background: #282828;
    left: 0;
    z-index: 9999;
}

.individualsidebar .closebtn {
    top: 0;
    right: 5px;
}

@media screen and (max-height: 450px) {
  .sidenav a {font-size: 18px;}
}

.logouthoversection .dropdown{
    min-width: 125px; /* Set width of the dropdown */;
    background: #f2f2f2;
    display: none;
    position: absolute;
    right: 35px;
    overflow: visible;
    border: 1px solid #dce53f;
    z-index: 999;
}
.logouthoversection .dropdown::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #f2f2f2;
}
.logouthoversection:hover .dropdown{
    /*display: block;  Display the dropdown */
    
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.logouthoversection:hover .dropdown li{
    display: block;
}
.logouthoversection:hover .dropdown li a {
    border-radius: 0;
    margin: 0;
    font-size: 12px;
    position: relative;
}
.logouthoversection:hover .dropdown li:hover {
    background: #dce53f !important;
}
.logouthoversection:hover .dropdown li div{
    color: black;
}


/*............slider style..................*/

.slidercontainer {
    background: url("/images/WebImages/ed-poster.jpg") repeat center center;
}

.sliderleft {
    background: transparent;
    /*background: linear-gradient(to right, #ffffff 90%, #282828 90%, #282828);
    background: linear-gradient(115deg, transparent 70%, #038b71 70.2%, #038b71);*/
    text-align: center;
}

.sliderright {
    position: relative;
    background: #045c4b;
    background: linear-gradient(to right, #038b71, #045c4b);
    color: #c5fd45;
    font-family: websiteFont;
    font-size: 120%;
}

.sliderleft img {
    width: auto;
    max-height: 70vh;
    /*border-top: 10px solid #ffffff;
    border-right: 10px solid #ffffff; 
    border-bottom: 10px solid #ffffff;
    border-radius: 8px;*/
}

.sliderright > div > div > div:nth-child(1) {
    display: block;
    font-family: websiteFont;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    background-color: #c5fd45;
    color: #282828;
    padding: 5px 10px;
    border-radius: 3px;
    text-shadow: 1px 2px 2px rgba(0,0,0,0);
    margin-top:150px;
}

.sliderright > div > div > div:nth-child(3) {
    font-size: 300%;
    font-weight: bold;
    text-align: center;
    color: #222;
    text-shadow: 0 0 15px rgba(255,255,255,.9);
}

.sliderright > div > div > div:nth-child(4) {
    font-size: 30px;
    color: #fff;
}

.sliderright > div > div > div:nth-child(5) > a > input {
    font-family: websiteFont;
    font-size: 22px;
    /*margin-bottom:150px;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background-color: #c5fd45;
    color: #282828;
    padding: 5px 30px;
    border-radius: 7px;
    box-shadow: 0 5px 3px rgba(0,0,0,.2);
    margin: 30px auto;
    cursor: pointer;
    text-shadow: 1px 2px 2px rgba(0,0,0,0);
    transition: all .1s;*/
}

.sliderright > div > div > div:nth-child(5) button:hover {
    /*background-color: #282828;
    color: #c5fd45;*/
}

.slider-content {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    padding: 30px;
    text-align: center;

    margin-left: auto;
    margin-right: auto;
    /*max-width:980px*/

    -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1200px;
	        perspective: 1200px;
}

.slider-content img {
    position: sticky;
    display: block;
    margin: auto;
    border: 7px solid #fff;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    box-shadow: 0 0 25px 5px rgba(0,0,0,.5);
    transition: .3s;
}

.slider-content:hover img {
    -webkit-transform: rotateY(25deg);
    -moz-transform: rotateY(25deg);
    -ms-transform: rotateY(25deg);
    -o-transform: rotateY(25deg);
    transform: rotateY(25deg);
}

.slider-section {
    /*margin-top: 16px!important;
    margin-bottom: 16px!important;*/
}

.slider-animate-left {
    position: relative;
    animation: animateleft 0.4s;
}

.slider-animate-left-text {
    position: relative;
    animation: animateleft 0.7s;
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity:0;
    }
    to {
        left: 0;
        opacity: 1
    }
}

.mySlides, .mySlidesText {
    /*display: none;*/
}

.slider-center {
    display: inline-block;
    width: auto;
    text-align: center;
    text-align: center !important;
}

/*.slider-container {
    padding: 0.01em 16px;
}

.slider-container:after, .slider-container:before {
    content: "";
    display: table;
    clear: both;
}*/

.slider-large {
    font-size: 18px !important;
}

.slider-display-bottommiddle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
}

.slider-badge {
    background-color: #ddd;
    color: #fff;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: 12px;
    margin-right: 12px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ddd !important;
    cursor: pointer;
}

.slider-badge:hover, .slider-white {
    color: #000 !important;
    background-color: #11e257 !important;
    border: 0 !important;
}

@media only screen and (max-width: 767px) {
    .sliderleft img {
        max-height: 50vh;
    }

    .slider-content img {
        border: 3px solid #fff;
    }
}


.jump-text {
    animation: jump-text .5s linear infinite;
}

@keyframes jump-text {
  0% { transform: scale(1); }
  50% {transform: scale(1.1); }
  100% {transform: scale(1); }
}


/* Marquee text styling */

/*.marquee {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  z-index: -1;
}
.marquee-content {
  display: inline-block;
  position: relative;
  left: 30%;
  animation: marquee 120s linear infinite;
}
.marquee-content a {
    font-family: 'Hind Siliguri', sans-serif;
    text-decoration: none;
    color: #eeeeee;
    text-shadow: 1px 1px 1px black;
}
.marquee-content a:hover {
    color: #11e257;
}
.item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 120s linear infinite;
}
@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%,
  100% {
    left: 100%;
  }
}
.marquee-content:hover {
  animation-play-state: paused
}


@keyframes marquee {
  0% {
    transform: translateX(0%)
  }
  100% {
    transform: translateX(-130%)
  }
}*/


.marquee {
  width: 100%;
  margin: 0 auto;
  z-index: -1;
}
.marquee-content {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content a {
    font-family: 'Hind Siliguri', sans-serif;
    text-decoration: none;
    color: #eeeeee;
    text-shadow: 1px 1px 1px black;
}
.marquee-content a:hover {
    color: #dce53f;
}

.item-collection-1 {
  display: inline-block;
  animation: marquee 10s linear infinite;
}

.item-collection-2 {
  display: inline-block;
  animation: marquee2 10s linear infinite;
  animation-delay: 5s;
}

.item-collection-1:hover, .item-collection-2:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes marquee2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}




#testmarquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 30px;
    color:#fff;
}

#testmarquee > span {
    display: inline-block;
    position: relative;
    transform: translateX(100vw);
}

#testmarquee > span a {
    color: #c5fd45;
}

.addmarquee {
    -webkit-animation: marqueetest 40s linear infinite;
    -moz-animation: marqueetest 40s linear infinite;
            animation: marqueetest 40s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.addmarquee:hover {
    animation-play-state: paused;
}

@keyframes marqueetest {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}


/*...........Latest Article Container............*/

.latest-container {
    background: #2f0812;
}

.latest-container .subcategoryheading {
    display: inline-block;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 22px;
    padding: 10px;
    background: linear-gradient(to right, #ff04af, #ff5a00);
    color: white;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.latestarticlesectionheading {
    position: absolute;
    top: 15vh;
    left: 8vw;
    font-family: 'Galada', cursive;
    text-align: center;
    line-height: 72px;
    text-shadow: 3px 3px 3px rgba(0,0,0,.7);
}

.latestarticlesectionheading div:nth-child(1) {
    color: #74d007;
    font-size: 60px;
}

.latestarticlesectionheading div:nth-child(2) {
    color: #8aff00;
    font-size: 72px;
    border-bottom: 3px solid #8aff00;
}

.latestarticlecontainer img {
    width: 70%;
    max-height: 600px;
}

/*.latestarticletitlecontainer {
    position: absolute;
    width: 70vw;
    top: 440px;
    left: 15vw;
    background: #fff;
    padding: 15px 30px;
    box-shadow: 5px 5px 0 rgba(0,0,0,.7);
}*/

.latestarticletitlecontainer div {
    font-family: 'Hind Siliguri', sans-serif;
    margin: 5px auto;
    width: 100%;
}

.latestarticletitlecontainer div:nth-child(1) {
    font-family: 'Galada', cursive;
    font-size: 12px;
    color: #777;
}

.latestarticletitlecontainer div:nth-child(2) {
    font-size: 14px;
    color: #222;
    padding: 0 10px;
}

.latestarticletitlecontainer div:nth-child(3) {
    font-size: 12px;
    color: #555;
}

.latestarticletitlecontainer div:nth-child(4) {
    font-size: 10px;
    color: #555;
}


/*............ Author Section .............*/

.author-slider-container {
    /*background: #045c4b;
    background: linear-gradient(182deg, #045c4b, #045c4b 50px, #fff 51px, #fff 90%, #045c4b 90.2%);*/
    background: #045c4b;
    background: url('/images/dash_background.png') no-repeat top left, linear-gradient(182deg, #fff, #fff 50px, #045c4b 51px, #045c4b 90%, #012e25 90.2%);
}

.author-slider-container h1 {
    font-family: websiteFont;
    font-weight: bold;
    font-size: 5vw;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 3px rgba(0,0,0,.5);
}

.topauthors a {
    text-decoration: none;
    color: inherit;
	-webkit-perspective: 400px;
	        perspective: 400px;
}

.topauthors > a > div {
    padding-top: 20px;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    transition: .3s;
}

.topauthors > a > div:hover {
    background: #282828;
    background: rgba(0,0,0,.2);
    -webkit-transform: rotateY(15deg);
    -moz-transform: rotateY(15deg);
    -ms-transform: rotateY(15deg);
    -o-transform: rotateY(15deg);
    transform: rotateY(15deg);
}

.topauthors > a > div > img {
    border-radius: 50%;
    border: 5px solid #038b71;
    box-shadow: 5px 5px 10px rgba(0,0,0,.5);
    transition: all .2s;
}

.topauthors a > div:hover > img {
    border: 5px solid #9ed61d;
}

.topauthors a > div > div {
    margin-top: 10px;
    background: #fff;
    color: #282828;
    padding: 5px 15px;
    border-radius: 3px;
    transition: all .2s;
}

.topauthors a > div:hover > div {
    background: #9ed61d;
}


/*............ Video Section .............*/

.video-slider-container {
    /*background: #045c4b;
    background: linear-gradient(to bottom, #045c4b, #012e25);*/
    background: #c5fd45;
    /*background: linear-gradient(to bottom, #ccc 5%, transparent 10%, transparent 90%, #ccc), url('/images/dash_background.png') no-repeat top left, linear-gradient(to bottom, #ccc, #ccc 25%, #c5fd45 25.1%, #9ed61d 75%, #ccc 75.2%);*/
    background: linear-gradient(to bottom, #fff 5%, transparent 10%, transparent 90%, #fff), url('/images/dash_background.png') no-repeat top left;
}


/*.......... article slider ...........*/

.article-slider-container {
    /*background: #038b71;
    background: radial-gradient(circle farthest-side, #038b71, #045c4b);
    background: #038b71;
    background: linear-gradient(to bottom, #038b71, #045c4b);*/
    padding-top: 30px;
    padding-bottom: 60px;
    background: #c5fd45;
    /*background: linear-gradient(to bottom, transparent 90%, #ccc), url('/images/dash_background.png') no-repeat top left, linear-gradient(to bottom, #ccc, #ccc 25%, #c5fd45 25.1%, #9ed61d 75%, #ccc 75.2%);*/
    background: linear-gradient(to bottom, transparent 90%, #fff), url('/images/dash_background.png') no-repeat top left;
}

.article-slider-container h1, .video-slider-container h1 {
    position: relative;
    left: 30px;
    display: inline-block;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 18px;
    color: #282828;
    padding: 10px 20px;
    background: #9ed61d;
    background: linear-gradient(to right, #9ed61d, #c5fd45);
    text-shadow: 2px 0 2px rgba(0,0,0,.2);
    
    /*box-shadow:
    10px 0 0 0 rgba(0,0,0,.4),
    20px 0 0 0 #282828,
    30px 0 0 0 #3d3a84,
    40px 0 0 0 #211f56;*/
}

.article-slider-container h1::before, .article-slider-container h1::after, .video-slider-container  h1::before, .video-slider-container  h1::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: none;
}

.article-slider-container h1::before, .video-slider-container h1::before {
    left: -15px;
    border-left: 10px solid #282828;
}

.article-slider-container h1::after, .video-slider-container h1::after {
    content: '';
    display: block;
    width: 100%;
    font-size: 16px;
    padding-left: 200px;
    padding-top: 8px;
    left: -25px;
    border-left: 5px solid #282828;
}
.article-slider-container h6 {
    display: inline-block;
    margin-left: 30px;
}

.premiumlogo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: auto;
    z-index: 1;
}

.card {
  max-width: 400px;
  height: 400px;
  text-align: center;
  border-radius: 5px;
  border: none;
  transition: all .5s ease-in;
}

/*.card::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    background: rgba(0,0,0,.8);
    opacity: 0;
    transition: all .3s;
}

.card:hover::after {
    opacity: 1;
}*/

.cardallother {
    height: 350px;
}

.card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.card button {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0%);
    border: none;
    outline: 0;
    padding: 6px 20px;
    color: white;
    background: #222222;
    background: linear-gradient(to bottom, #222222, #000000);
    text-align: center;
    cursor: pointer;
    width: 80%;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 10px 4px -8px rgba(0,0,0,.6);
}

.card button:hover {
    background: #b10330;
    background: linear-gradient(to bottom, #f61b54, #b10330);
    box-shadow: 0 12px 4px -8px rgba(0,0,0,.8);
}

.morestorylink a {
    position: absolute;
    right: 30px;
    bottom: 0;
    text-decoration: none;
    color: #282828;
    transition: all .2s;
}

.morestorylink a:hover {
    color: #038b71;
}

.morestorylink a > span {
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .article-slider-container h1 {
        font-size: 14px;
    }

    .article-slider-container h1::after {
        padding-left: 170px;
    }

    .similarStoryHeading > h1 {
        font-size: 14px !important;
        margin-left: 10px !important;
    }

    .morestorylink a {
        font-size: 10px;
        bottom: 18px;
    }

    .morestorylink a > span {
        font-size: 10px;
        bottom: 3px;
    }
}












.cardcol{
  /*width: calc(25% - 2rem);*/
  margin: 1rem;
  cursor: pointer;
  font-family: 'Hind Siliguri', sans-serif;
  border-radius: 10px;
}

.cardcontainer{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.front,
.back{
    background-color: #282828;
  background-size: cover;
  box-shadow: 0 10px 15px 5px rgba(0,0,0,.2), 0 18px 4px -14px rgba(0,0,0,.6);
  border-radius: 10px;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	text-align: center;
	min-height: 280px;
	height: auto;
	border-radius: 10px;
	color: #fff;
	font-size: 1.5rem;
}

.back{
  /*background: #cedce7;
  background: -webkit-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: -o-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: linear-gradient(45deg,  #cedce7 0%,#596a72 100%);*/
}

.front:after{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: #000;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0) 25%, rgba(0,0,0,1));
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}

.back:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .8;
    background: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}

.cardcontainer:hover .front,
.cardcontainer:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-100%) translateZ(60px) scale(0.94);
            transform: translateY(-100%) translateZ(60px) scale(0.94);
    top: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.cardcontainer .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.cardcontainer .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.cardcontainer:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.cardcontainer:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .inner {
    padding-bottom: 0;
}

.front .inner p, .back .inner p {
  position: relative;
  color: white;
  padding: 0;
}

.front .inner p {
  font-size: 14px;
  text-shadow: 0 0 2px rgba(0,0,0,.8);
}

.back .inner p {
  font-size: 16px;
  margin-bottom: 2rem;
  /*background: linear-gradient(to right, #ff04af, #ff5a00);*/
  background: linear-gradient(to right, #FDFC47, #24FE41);
  color: white;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.back .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.back .inner span{
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.back .inner .premiumlogo {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 30px;
}

/*@media screen and (max-width: 64rem){
  .cardcol{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem){
  .cardcol{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem){
  .cardcol{
    width: 100%;
    margin: 0 0 2rem 0;
  }
}*/



/*............ Subscription Section .............*/

.subscription-container {
    /*background: #0b4d14;
    background: radial-gradient(circle farthest-side, #469114, #0b4d14);*/
    background: #012e25;
    /*background: linear-gradient(to bottom, #045c4b, #012e25);*/
    background: url('/images/dash_background.png') no-repeat top left, #012e25;
}

.grid {
    font-family: 'Hind Siliguri', sans-serif;
    color: #eee;
    border: 2px solid rgba(3,139,113,.8);
    width: 100%;
    min-height: 400px;
    padding: 1.25em;
    margin: 10px auto;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    transition: all .2s ease-in-out;
}
/*background: #a0cc46;
background: radial-gradient(circle farthest-side, #a0cc46, #618c08);
#038b71, #045c4b*/
.grid:hover {
  background-color: #038b71;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF53455B', endColorstr='#FF201D22');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzUzNDU1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIwMWQyMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #038b71), color-stop(100%, #045c4b));
  background-image: -moz-linear-gradient(top, #038b71 0%, #045c4b 100%);
  background-image: -webkit-linear-gradient(top, #038b71 0%, #045c4b 100%);
  background-image: linear-gradient(to bottom, #038b71 0%, #045c4b 100%);
  border-top: 2px solid #038b71;
  border-bottom: 2px solid #045c4b;
  box-shadow: 0px 0px 10px 0px #323232;
  /*transform: scale(1.025);*/
  z-index: 2;
}
.grid:hover:before, .grid:hover:after {
  content: "";
  position: absolute;
  background-color: #038b71;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF67D35', endColorstr='#FFFF4F68');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2N2QzNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmNGY2OCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #038b71), color-stop(100%, #045c4b));
  background-image: -moz-linear-gradient(top, #038b71 0%, #045c4b 100%);
  background-image: -webkit-linear-gradient(top, #038b71 0%, #045c4b 100%);
  background-image: linear-gradient(to bottom, #038b71 0%, #045c4b 100%);
  top: -2px;
  bottom: -2px;
  width: 2px;
}
.grid:hover:before {
  left: -2px;
}
.grid:hover:after {
  right: -2px;
}

.grid:hover .button {
    color: #222;
    background: #ffffff;
    background: linear-gradient(to bottom, #ffffff, #dddddd);
    box-shadow: 0 12px 4px -8px rgba(0,0,0,.6);
}

.grid:hover .subtick, .grid:hover .subtick::before {
    color: #eee;
}

.grid:hover .subcross, .grid:hover .subcross::before {
    color: #222;
    text-shadow: none;
}

.button {
    background: #045c4b;
    background: linear-gradient(to bottom, #038b71, #045c4b);
    box-shadow: 0 12px 4px -8px rgba(0,0,0,.3);
    border-radius: 20px;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    padding: 0.5em 1.5em;
    position: absolute;
    bottom: 1.25em;
    left: 50%;
    margin-left: -100px;
    text-decoration: none;
    width: 200px;
}

.button a {
    text-decoration: none;
}

.uppercase, .button {
  text-transform: uppercase;
}

sup, .small {
  font-size: 0.6125em;
}

.grid ul {
    list-style: none;
}

.grid ul li {
    margin: 15px 0;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}

.grid h3 {
    font-family: websiteFont;
    font-weight: bold;
    font-size: 40px;
}

.subtick {
    color: #dce53f;
}

.subtick:before {
    content: "\2713";
    color: #dce53f;
    margin-right: 10px;
}
.subcross {
    color: #888;
}

.subcross:before {
    content: "\2715";
    color: #888;
    margin-right: 10px;
}

.subscription-container-right {
    color: #fff;
    font-size: 32px;
    font-family: 'Hind Siliguri', sans-serif;
    text-shadow: 3px 3px 5px rgba(0,0,0,.7);
    text-align: center;
}

.subscription-container-right > div:nth-child(1) {
    padding-top: 20px;
    border-top:1px solid #dce53f;
}

.subscription-container-right > div:nth-child(3) {
    padding-bottom: 20px;
    border-bottom:1px solid #dce53f;
}

.subscription-container-right > div:nth-child(2) {
    font-size: 36px;
    color: #dce53f;
}


/*............. Main Article Slider ............*/

.main-container {
    background: #00150e;
}


/*............. Individual Content Style.............*/

.contentIndividual, .contentHome {
    background-color: #888;
    background-color: rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 767px) {
    .contentIndividual, .contentIndividual div:first-child, .contentIndividual div:first-child div:first-child,
    .contentHome, .contentHome > div:first-child, .contentHome > div > div, .contentHome > div > div > div {
        margin: 0;
        padding: 0;
    }
}

.storyTitle, .videoTitle {
    /*font-family: 'Hind Siliguri', sans-serif;*/
    font-family: 'Galada', cursive;
    font-weight: normal;
    line-height: 50px;
}

.storyAuthor {
    color: #222;
    font-size: 14px;
    font-family: 'Hind Siliguri', sans-serif;
}

.storyDate, .videoDate, .videoLength {
    color: #777;
    font-family: 'Hind Siliguri', sans-serif;
    margin-top: 5px;
}

.storyContent, .videoContent {
    margin-top: 30px;
    font-family: websiteFont;
    font-size: 24px;
    line-height: 34px;
    word-spacing: 5px;
}

.storyContent p {
    /*padding-bottom: 15px;*/
}

.storyImage img, .storyContent img {
    display: block;
    margin: 10px auto;
    width: 100%;
    /*max-width: 400px;*/
}

.storyContent ul, .storyContent ol {
    margin: auto 80px;
}

@media (max-width:450px){
    .storyContent ul, .storyContent ol {
        margin: auto auto auto 40px;
    }
}

.storyTags span, .authorFollow {
    display: inline-block;
    color: #eee;
    background-color: #038b71;
    padding: 3px 10px;
    margin: 4px 4px;
    border-radius: 3px;
    cursor: pointer;
}

.storyTags span:hover, .authorFollow:hover {
    color: #dce53f;
    background-color: #222;
}

.storyListTitle, .videoListTitle {
    margin: 0;
    padding-top: 10px;
    line-height: 34px;
}

.storyListTitle a, .videoListTitle a {
    color: #038b71;
}

.storyListTitle:hover a, .videoListTitle:hover a {
    color: #045c4b;
}

.similarLinksSection {
    display: flex;
    flex-wrap: wrap;
    background: #eee;
    color: #eee;
    padding: 10px 10px;
}

.similarLinksSection > div {
    display: flex;
    flex-direction: column;
    padding: 10px 10px !important;
}

.similarLinksSection > div:hover > div {
    border-bottom: 4px solid #dce53f;
}

.similarLinksSection > div > div {
    position: relative;
    border-bottom: 4px solid transparent;
}

.similarLinksSection > div > div img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit:cover;
}

.similarLinksSection > div > div div {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 35px 7px 7px 7px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 10%, rgba(24, 24, 24, 0.95) 100%);
    color: #ddd;
    text-shadow: 1px 1px 1px rgba(0,0,0,.8);
}

.similarLinksSection > div:hover > div div {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 20%, rgba(24, 24, 24, 1) 100%);
    color: #dce53f;
}

/*.similarVideoHeading::before, .similarStoryHeading::before {
    content: " ";
    display: inline-block;
    margin: 20px 0 15px 0;
    padding: 0 10px;
    font-family: websiteFont;
    font-size: 28px;
    font-weight: bold;
    border-left: 5px solid #222;
    background: #dce53f;
    color: #222222;
}

.similarVideoHeading::before {
    content: "সাম্প্রতিক সংযোজিত ভিডিও";
}

.similarStoryHeading::before {
    content: "সাম্প্রতিক সংযোজিত প্রতিবেদন";
}*/

.similarStoryHeading h1 {
    position: relative;
    left: 10px;
    margin-top: 30px;
    display: inline-block;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 18px;
    color: #282828;
    padding: 10px 20px;
    background: #9ed61d;
    background: linear-gradient(to right, #9ed61d, #c5fd45);
    text-shadow: 2px 0 2px rgba(0,0,0,.2);
}

.similarStoryHeading h1::before, .similarStoryHeading h1::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: none;
}

.similarStoryHeading h1::before {
    left: -15px;
    border-left: 10px solid #282828;
}

.similarStoryHeading h1::after {
    padding-left: 275px;
    padding-top: 8px;
    left: -25px;
    border-left: 5px solid #282828;
}

.similarStoryHeading h6 {
    display: inline-block;
    margin-left: 10px;
}


/*........... Issue Page Design ...........*/

.subcategorycontainer {
    position: relative;
    padding: 40px 0;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14px;
}

.subcategorycontainer::before {
    content: " ";
    position: absolute;
    left: -19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #bbb;
}

.subcategorycontainer::after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    margin: auto;
    background: #dce53f;
    z-index: 1;
    transition: all .1s ease-in;
}

.subcategorycontainer:hover::after {
    width: 100%;
}

.subcategorycontainer > div {
    margin: 20px 0;
}

.subcategorycontainer > h5 {
    position: relative;
    padding: 8px 10px;
    font-size: 18px;
    font-weight: bold;
    /*background: #282828;
    background: linear-gradient(to right, #282828, #a0cc46);*/
    background: #444444;
    color: #dce53f;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    border-left: 2px solid #888888;
    transition: all .1s ease-in;
}

.subcategorycontainer:hover > h5 {
    border-left: 2px solid #dce53f;
}

.subcategorycontainer img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    box-shadow: 0 6px 6px -4px rgba(0,0,0,.8);
}

.subcategorycontainer div h5 {
    font-size: 16px;
    color: #dce53f;
    margin-top: 20px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}

.subcategorycontainer div h6 {
    font-size: 14px;
    color: #c5cf0f;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}

.subcategorycontainer div > div:nth-child(2) div:nth-child(3) {
    color: #888888;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    transition: all .1s ease-in;
}

.subcategorycontainer div:hover > div:nth-child(2) div:nth-child(3) {
    color: #eee;
}

.subcategorycontainer div > div:nth-child(2) div:nth-child(3) > span {
    color: #8aa632;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    transition: all .1s ease-in;
}

.subcategorycontainer div:hover > div:nth-child(2) div:nth-child(3) > span {
    color: #dce53f;
}

.subcategorycontainer > h5::before {
    content: " ";
    position: absolute;
    left: -30px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #bbb;
    border: 3px solid #666;
    transition: all .2s ease-in;
}

.subcategorycontainer:hover h5::before {
    background: #dce53f;
    border: 3px solid #dce53f;
}

#issueImageContainer {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    padding: 30px;
    text-align: center;
    -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1200px;
	        perspective: 1200px;
}

#issueImageContainer > img {
    width: 100%;
    height: auto;
    
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .6);
    border: 5px solid #fff;
    
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    transition: .3s;
}

#issueImageContainer:hover > img {
    -webkit-transform: rotateY(10deg);
    -moz-transform: rotateY(10deg);
    -ms-transform: rotateY(10deg);
    -o-transform: rotateY(10deg);
    transform: rotateY(10deg);
}

.issueMonthText {
    font-family: 'Galada', cursive;
    font-size: 32px;
    color: #282828;
}

@media (max-width:450px){
    .issueMonthText {
        font-size: 22px;
    }
}

/*......... Individual Page Design .........*/


#contentIndividual {
    padding: 0 15px;
    transition: padding .3s ease-in;
}

.openContents {
    position: fixed;
    top: 50%;
    left: -20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #a0cc46;
    cursor: pointer;
    transition: all .05s ease-in;
}

.openContents:hover {
    top: calc(50% - 5px);
    left: -25px;
    height: 50px;
    width: 50px;
    background: #77a21e;
}

.openContentsBtn {
    display: inline-block;
}


/* Account Manager Design*/

#changepass {
    display: inline-block;
    margin-top: 30px;
    color:#aaa;
    border-bottom: 1px dotted #282828;
    cursor: pointer;
}

#changepass:hover {
    color:#eee;
    border-bottom: 1px dotted #888;
}

.individualContentBtn {
    display: inline-block;
    font-size: 140%;
    color: #fff;
    background: #8E2DE2;
    background: -webkit-linear-gradient(to top, #4A00E0, #8E2DE2);
    background: linear-gradient(to top, #4A00E0, #8E2DE2);
    margin: 4px 4px;
    border-radius: 5px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.7);
    cursor: pointer;
}

.individualContentBtn:hover {
    color: #ffd452;
    background: #8E2DE2;
}


/*........... Ekhon Dooars Books Page.......... */

.booklist{
  display:grid;
  grid-template-columns: repeat(var(--columns),1fr);
  margin: 200px -40px;
  list-style: none;
}

.booklist li{
  grid-column-end: span 2;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-top: -50%;
}

.booklist li:nth-child(2n){
  grid-column-start:2;
}

.booklist li::before, .booklist li::after {
  content:'';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 50% 100%,50% 100%;
  background-position: left, right;
  pointer-events: none;
}

.booklist li::before{
  z-index: -1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background-repeat: no-repeat;
  background-image: linear-gradient(-45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%), linear-gradient(45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%);
}

.booklist li::after{
  clip-path: polygon(101% 50%, 50% 101%, 0 50%, 20% 50%, 50% 80%,80% 50%);
  -webkit-clip-path: polygon(100% 50%, 50% 100%, 0 50%, 20% 50%, 50% 80%,80% 50%);
  background-repeat: no-repeat;
  background-image: linear-gradient(45deg,var(--white) 40%,var(--green) 40%), linear-gradient(-45deg,var(--white) 40%,var(--green) 40%);
}

.booklist li:nth-child(2n)::before{
  background-image: linear-gradient(-45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%), linear-gradient(45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%);
}

.booklist li:nth-child(2n)::after{
  background-image: linear-gradient(45deg,var(--white) 40%,var(--green) 40%), linear-gradient(-45deg,var(--white) 40%,var(--green) 40%);
}

.booklist li:nth-child(5n)::before{
  background-image: linear-gradient(-45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%), linear-gradient(45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%);
}

.booklist li:nth-child(5n)::after{
  background-image: linear-gradient(45deg,var(--white) 40%,var(--green) 40%), linear-gradient(-45deg,var(--white) 40%,var(--green) 40%);
}

.booklist li:nth-child(7n)::before,.booklist li:nth-child(7n-4)::before{
  background-image: linear-gradient(-45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%), linear-gradient(45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%);
}

.booklist li:nth-child(7n)::after,.booklist li:nth-child(7n-4)::after{
  background-image: linear-gradient(45deg,var(--white) 40%,var(--green) 40%), linear-gradient(-45deg,var(--white) 40%,var(--green) 40%);
}

.booklist li:nth-child(9n)::before,.booklist li:nth-child(9n-5)::before{
  background-image: linear-gradient(-45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%), linear-gradient(45deg,var(--white) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--white) 60%);
}

.booklist li:nth-child(9n)::after,.booklist li:nth-child(9n-5)::after{
  background-image: linear-gradient(45deg,var(--white) 40%,var(--green) 40%), linear-gradient(-45deg,var(--white) 40%,var(--green) 40%);
}

.booklist img{
  position: absolute;
  width: 47%;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translateX(-50%) translateY(-60%);
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.3);
  transition-property: transform;
  transition-duration: .3s;
}

.booklist img:hover{
  transform: translateX(-40%) translateY(-70%) rotatez(25deg);
}

@media (min-width:450px){
  .booklist {
    margin: 190px 40px;
  }
}
@media (min-width:600px){
  :root {
    --columns: 5;
  }
  .booklist li:nth-child(2n){
    grid-column-start:auto;
  }
  .booklist li:nth-child(4n-1){
    grid-column-start:2;
  }
}
@media (min-width:900px){
  :root {
    --columns: 7;
  }
  .booklist li:nth-child(4n-1){
    grid-column-start:auto;
  }
  .booklist li:nth-child(6n-2){
    grid-column-start:2;
  }
}
@media (min-width:1200px){
  :root {
    --columns: 9;
  }
  .booklist li:nth-child(6n-2){
    grid-column-start:auto;
  }
  .booklist li:nth-child(8n-3){
    grid-column-start:2;
  }
}
@media (min-width:1500px){
  :root {
    --columns: 11;
  }
  .booklist li:nth-child(8n-3){
    grid-column-start:auto;
  }
  .booklist li:nth-child(10n-4){
    grid-column-start:2;
  }
}
@media (min-width:1800px){
  :root {
    --columns: 13;
  }
  .booklist li:nth-child(10n-4){
    grid-column-start:auto;
  }
  .booklist li:nth-child(12n-5){
    grid-column-start:2;
  }
}
@media (min-width:2100px){
  :root {
    --columns: 15;
  }
  .booklist li:nth-child(12n-5){
    grid-column-start:auto;
  }
  .booklist li:nth-child(14n-6){
    grid-column-start:2;
  }
}

/*......... Free Download Page Design ..........*/

.downloadTableDesignTab {
    height: 50px;
    width: 50px;
    background: #038b71;
    color: white;
    border-radius: 5px;
    line-height: 50px;
    text-align: center;
    font-weight:bold;
    font-family: 'AdorshoLipi', sans-serif;
}

.downloadTableDesignTabHead {
    width: 100%;
    background: #ddd;
    color: #555;
    line-height: 30px;
    font-size: 16px;
    padding-left: 15px;
    font-family: 'AdorshoLipi', sans-serif;
    cursor: pointer;
    word-wrap: break-word;
    border-radius: 3px;
}

.downloadTableDesignTabExpand {
    position:relative;
    right:10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    margin-top: 5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.similarBooksHover div {
    text-decoration: none;
    color: #282828;
    font-family: 'Hind Siliguri', sans-serif;
}

.similarBooksHover:hover div {
    background-image: linear-gradient(to bottom right, #038b71, #045c4b);
    background-color:#038b71;
    color: #fff;
    box-shadow: 0 8px 5px -5px rgba(0, 0, 0, .6);
}

.similarBooksHover:hover img {
    border: 1px solid #fff;
}


/* .................Policy page styling................ */

.topHeadingText1 {
    font-family: websiteFont;
    font-size: 42px;
    font-weight: bold;
    background: #021b25;
    background-image: linear-gradient(45deg, #021b25, #063649);
    color: #dce53f;
    text-shadow: 2px 2px 3px rgba(0,0,0,.7);
    margin-bottom: 30px;
    border-radius: 4px;
}

.topHeadingText3 {
    font-family: websiteFont;
    font-size: 22px;
    margin: 10px;
}




/*........... Media Query...........*/

@media only screen and (max-width: 767px) {
    body {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .menuleft {
        background: #ffffff;
    }
    
    .menuleft ul {
        display: none;
    }

    .menuleft ul li:not(:last-child) {
        display: none;
    }

    .menuleft ul li:last-child {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0, -50%);
    }

    .menuleft img {
        height: auto;
        width: 40%;
    }

    .menuleft ul li span {
        color: #038b71;
    }

    .menuright * {
        font-size: 12px;
    }

    .sliderleft {
        background: #ffffff;
        background: url("/images/WebImages/ed-poster.jpg") repeat center center;
    }

    .sliderleft img {
        /*width: 100%;*/
        margin: 20px auto;
        /*padding: 0;
        border: 0;
        border-radius: 0;*/
    }
    
    .sliderright {
        height: auto;
    }
    
    .sliderright > div > div > div:nth-child(1) {
        margin-top:30px;
    }

    .sliderright > div > div > div:nth-child(4) {
        margin-bottom:0;
        text-align: center;
    }
    
    .slider-badge {
        height: 10px;
        width: 10px;
        margin-left: 8px;
        margin-right: 8px;
    }
}


.specialStory {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 38px !important;
    text-decoration: underline;
}






/* Home Page Styling*/

.videoHeading::before, .storyHeading::before, .oldStoryHeading::before, .issueHeading::before, .similarVideoHeading::before {
    content: " ";
    display: inline-block;
    margin: 20px 0 15px 0;
    padding: 0 10px;
    font-family: websiteFont;
    font-size: 28px;
    font-weight: bold;
    border-left: 5px solid #222;
    background: #dce53f;
    color: #222222;
}

.videoHeading::before {
    content: "সাম্প্রতিক ভিডিও";
}

.storyHeading::before {
    content: "সাম্প্রতিক প্রতিবেদন";
}

.oldStoryHeading::before {
    content: "পুরোনো প্রতিবেদন";
}

.issueHeading::before {
    content: "ওয়েব সংখ্যা";
}

.similarVideoHeading::before {
    content: "সাম্প্রতিক সংযোজিত ভিডিও";
}

/*.similarStoryHeading::before {
    content: "সাম্প্রতিক সংযোজিত প্রতিবেদন";
}*/

.videoHeading::after, .storyHeading::after, .oldStoryHeading::after, .issueHeading::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7.5px 0 7.5px;
    border-color: #dce53f transparent transparent transparent;
 }

.storyHomeContent {
    margin-bottom: 30px;
    background: #fff;
    border: 6px solid #eee;
}

.storyHomeContent > div > div:nth-child(1) > div:nth-child(1), .storyHomeContent > div > div:nth-child(1) > div:nth-child(4) {
    display: block;
}

.storyHomeContent > div > div:nth-child(1) > div:nth-child(2), .storyHomeContent > div > div:nth-child(1) > div:nth-child(4) {
    margin-top: 10px;
}

.storyHomeContent > div > div:nth-child(2), .storyHomeContent > div > div:nth-child(3) {
    display: table;
    width:100%;
}

.storyHomeContent > div > div:nth-child(2) > div:nth-child(1), .storyHomeContent > div > div:nth-child(3) > div:nth-child(1) {
    display: block;
    float: left;
    margin-right: 10px;
}

.storyHomeContent > div > div:nth-child(2) > div:nth-child(1) img, .storyHomeContent > div > div:nth-child(3) > div:nth-child(1) img {
    width: 100px;
}

.innerStoryHomeContent {
    padding: 15px 0;
    font-family: websiteFont;
    border-bottom: 1px dotted #ccc;
}

.innerStoryHomeContent:nth-child(1) {
    padding: 0 0 15px 0;
}

.innerStoryHomeContentStory div:nth-child(1), .innerStoryHomeContentStory div:nth-child(4), .innerStoryHomeContentIssue:not(:nth-child(1)) div:nth-child(1) {
    display: none;
}

.innerStoryHomeContent div:nth-child(1) img {
    width: 100%;
}

.innerStoryHomeContent div:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: #045c4b;
    line-height: 28px;
}

.innerStoryHomeContent div:nth-child(2):hover {
    color: #038b71;
}

.innerStoryHomeContent div:nth-child(2) > span, .specialStory {
    font-size: 20px;
    font-family: websiteFont;
    font-weight: normal;
    text-decoration: underline;
    color: #222;
    display: inline-block;
}

.specialStoryLargeFont {
    font-size: 24px;
}

.innerStoryHomeContent div:nth-child(2) > a {
    color:inherit;
    text-decoration:inherit;
}

.innerStoryHomeContent div:nth-child(2) > a > span {
    color: #777;
    font-size: 16px;
    font-weight: normal;
}

.innerStoryHomeContent div:nth-child(2):hover > a > span {
    color: #333;
}

.innerStoryHomeContent div:nth-child(3) {
    font-size: 18px;
    color: #555;
}

.innerStoryHomeContent div:nth-child(4) {
    font-size: 20px;
    line-height: 26px;
}

.listanchor {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: #045c4b;
    padding: 6px 20px;
    margin: 20px 0;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 5px 3px -3px rgba(0, 0, 0, .8);
    float: right;
}

.listanchor:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #038b71;
}

.latestaddition {
    background-color: #fff;
    border: 6px solid #eee;
    padding: 5px;
    margin: 0;
    font-family: websiteFont;
    font-size: 22px;
}

.latestaddition::before {
    content: "সাম্প্রতিক সংযোজন";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    font-weight: bold;
    background: #f8931f;
    padding: 5px 10px;
    display: inline-block;
    z-index: 1;
}

.latestaddition::after {
    content: attr(data-content);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    font-weight: normal;
    background: #222;
    color: #ddd;
    font-size: 16px;
}

@media only screen and (max-width: 991px) {
    .latestaddition::before {
        content: "সাম্প্রতিক সংযোজন";
        position: relative;
        display: block;
        top: -5px;
        left: -5px;
        z-index: 1;
    }

    .latestaddition::after {
        content: attr(data-content);
        height: 41px;
        z-index: 2;
    }
}

.zoomed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0,0,0,.8);
    transition: position .5s, top .5s, right .5s, bottom .5s, left .5s, width .5s, height .5s, background .5s;
    z-index: 999;
}

/*............................................................*/