*,::before,::after{
    box-sizing: border-box;
    
}

:root{
    --heading-bar-color:rgba(255, 199, 39, 1);
    --header-box-shadow-bg-color:linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0) 100%);
    --main-tags-header-background-color:linear-gradient(90deg, #000000 45%, rgba(0, 0, 0, 0) 100%);
    --story-panel-bg-color:rgba(50, 77, 73, 1);
    --footer-bg-color:rgba(39, 39, 39, 1);
    --copy-right-text-color:rgba(191, 191, 191, 1);

    --main-container-width:1270px;  
    --text-container-width:900px;

    --libre-bodoni-font-family: "Libre Bodoni", serif;
    --inter-font-family:"Inter", sans-serif;
}  

html, body {
  overflow-x: hidden;
}


h1, h2 , p , ul {margin: 0;padding: 0;}
li{list-style: none;}
a{text-decoration: none;color: inherit;display: inline-block;    text-underline-offset: 5px;}

img{max-width: 100%;display: block;}

svg{width: 100%;height: 100%;}

body{
    margin: 0;
    font-family: var(--inter-font-family);
   -webkit-text-size-adjust: 100%;
   padding-bottom: env(safe-area-inset-bottom);
}

h1, h2{
    font-family: var(--libre-bodoni-font-family);
}

::selection{
    background-color: var(--heading-bar-color);
    color: #000;
}

.container {
    max-width: var(--main-container-width);
    width: calc(100% - 40px);
    margin-inline: auto;
}

.text-container {
    max-width: var(--text-container-width);
    width: calc(100% - 40px);
    margin-inline: auto;
    padding: 105px 0px;
}

.grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    background-color: var(--story-panel-bg-color);
    color: #fff;
}

h1 {
    font-weight: 700;
    font-size: 67.81px;
    line-height: 72.33px;
    color: #fff;
}

h1::before{
    content: '';
}

h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 74px;
    position: relative;
    padding-bottom: 39px;
    margin-bottom: 29px;
}

h2::after{
    content: '';
    background-color: var(--heading-bar-color);
    height: 10px;
    width: 100px;
    position: absolute;
    display: block;
    border-radius: 10px;
    bottom: 0;
    left: 0;
}

p{
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}
.text-container p {font-weight: 400;}
p:not(:last-child){margin-bottom: 30px;}
.grid-image-container img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.logo-container {
    max-width: 120px;
    height: 50px;
}
.share-click svg{
    max-width: 100%;
    height: auto;
    width: auto;
}
.grid-image-container{
    height: 100%;
    position: relative;
}

.grid-text-container {
    padding:68px;
}
main {
    overflow: hidden;
}

.image-container , .image-container img{
    width: 100%;
    position: relative;
}

.main-screen {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
}

.main-screen-container{
    height: 100dvh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    row-gap: 71px;
    padding-bottom: 10dvh;
    z-index: 1;
    position: relative;
}

header {
    position: absolute;
    z-index: 22;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0px 20px 0px;
}

.share-click {
    width: 44px;
    height: 44px;
    background-color: rgb(0, 0, 0, 0.5);
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.main-screen-container .left-border {
    width: 10px;
    height: calc(100% + 50px);
    background-color: var(--heading-bar-color);
    border-radius: 10px;
    margin-top: -25px;
}

.main-heading-row {
    display: grid;
    grid-template-columns: 10px 1fr;
    column-gap: 32px;
    max-width: 851px;
}

.main-screen::after {
    content: '';
    background: var(--header-box-shadow-bg-color);
    width: 100%;
    height: calc(100% - 86px);
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.editor-tags-container{
    position: relative;
    background: var(--main-tags-header-background-color);
    padding: 15px 0px;
    width: auto;
    padding-right: 25%;
}

.tag-container{
    padding-left: 20px;
    padding-left: max(calc((100vw - 1270px) / 2 + 42px), 60px);
}



.editor-tags-container ul li {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding: 0px 15px;
    line-height: 18px;
}
.editor-tags-container ul li span{
    font-weight: 300;
}

.editor-tags-container ul li:first-child{
    padding-inline-start: 0;
    padding-right: 5px;
}

.editor-tags-container ul li:not(:last-child):after{
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    background-color: #fff;
    right: -10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.space-between {
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.creadit-container {
    background-color: #000;
    padding: 15px 0px;
}

.credit-row {
    display: grid;
    grid-template-columns: auto 1fr;
}

.creadit-container ul li {
    color: #fff;
    display: inline-block;
    padding-inline: 10px;
    position: relative;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-transform: capitalize;
}

.creadit-container ul li:not(:last-child)::after{
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    background-color: #fff;
    right: -5px;
    z-index: 1;
}

.creadit-container .crd-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: #fff;
}

.copy-right-container {
    background-color: var(--footer-bg-color);
    padding: 15px 0px;
    border-top: 1px solid #fff;
}

.copy-text {
    text-align: left;
    color: var(--copy-right-text-color);
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    text-transform: capitalize;
}


/*
    
header::before {
    content: '';
    background-color: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateY(-100%);
    transition: transform 0.4s;
}

header.active-scroll::before {
    transform: translateY(0%);
}
*/

.social-wrapper {
    position: absolute;
    right: 0px;
    top: calc(100% + 10px);
    z-index: 20;
    display: none;
}
.social-wrapper.active{display: block;}
.social-wrapper  ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 7px;
}

.social-wrapper ul li img{
    max-width: 40px;
    cursor: pointer;
}

.social-wrapper ul li:not(:first-child) img{max-width: 35px;}
.text-container .small-margin {
    margin-bottom: 7px;
}
.text-container ul li {
    list-style-type: disc;
    margin-left: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.image-caption {
    background-color: rgb(0, 0, 0, 0.8);
    font-style: italic;
    font-size: 12px;
    padding: 5px 20px;
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    z-index: 20;
    color: #fff;
    border-radius: 0;
}

a:hover{text-decoration: underline;}

.rotation-msg{ display: none;
    background-color: #333399;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.rm-center{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 470px;
}
.rotation-img{
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
.rotation-img img{
    width: 150px;
}
.rm-txt{
    text-align: center;
}
.rm-txt h5{
    font: 600 22px / 22px var(--playFiar-family);
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rm-txt p{
    font: 300 15px / 20px var(--openSans-family);
    color: #fff;
    letter-spacing: 0.3px;
}

.loader-wrapper {
    position: fixed;
    top: 0px;
    z-index: 40;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    background-color: #211d2e;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    flex-direction: column;
}

.loader-wrapper img{
    max-width: 800px;
}

/*
@media (max-device-width:1024px) and (orientation:landscape) {
    .rotation-msg{
        display: block;
    }
    body, html {
        overflow: hidden;
        background-color: #333399;
    }
    
}
*/

@media (max-width:1400px){
    .logo-container {
        max-width: 80px;
        height: auto;
    }
    h1 {
        font-size: 58.81px;
        line-height: 63.33px;
    }
    .editor-tags-container ul li{
        font-size: 15px;
        line-height: 15px;
    }
    header {
        padding: 10px 0px 10px 0px;
    }
    .share-click {
        width: 38px;
        height: 38px;
    }
    h2 {
        font-size: 50px;
        line-height: 64px;
        padding-bottom: 25px;
    }
    h2::after {
        height: 7px;
        width: 80px;
    }
    p {
        font-size: 16px;
        line-height: 28px;
    }
    .creadit-container ul li{font-size: 11px;}
    .image-caption {
        font-size: 11px;
    }
    .main-screen-container .left-border {
        width: 8px;
        height: calc(100% + 30px);
        margin-top: -15px;
    }
    .main-heading-row {
        column-gap: 22px;
    }
    .loader-wrapper img{
        max-width: 600px;
    }
    .text-container ul li {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width:1024px) and (min-width:768px){
   
    .social-wrapper ul {
        row-gap: 7px;
    }

    .logo-container {
        max-width: 80px;
    }
    .tag-container {
        padding-left: 35px;
    }
    
  
}

@media (max-width:1024px) {
    header {
        padding: 10px 0px;
    }
    h1 {
        font-size: 57.81px;
        line-height: 62.33px;
    }
    .grid-text-container {
        padding: 40px;
    }
    h2 {
        font-size: 50px;
        line-height: 64px;
        padding-bottom: 20px;
    }
    .text-container {
        padding: 80px 0px;
    }
    h2::after{
        height: 5px;
    }
    .image-caption{width: 100%;left: 0;bottom: 0;text-align: left;}
    .editor-tags-container{
        width: 75%;
        padding-right: 0;
    }

}

@media (max-width:920px) {
    .grid-box {
        display: flex;
        flex-wrap: wrap;
    }
    .grid-text-container {
        order: 2;
        flex: 0 0 100%;
        padding: 68px;
    }
    .grid-image-container {
        flex: 0 0 100%;
        order: 1;
    }
  
    h1 {
        font-size: 52.81px;
        line-height: 62.33px;
    }
    .main-screen-container .left-border {
        width: 8px;
    }
    .main-heading-row {
        column-gap: 25px;
    }
   

}

@media (orientation: landscape) and (max-width:767px){
    .main-screen-container {
        padding-bottom: 10dvh;
    }
}

@media (max-width:767px){
    .social-wrapper ul li img {
        max-width: 35px;
    }
    .social-wrapper ul li:not(:first-child) img {
        max-width: 30px;
    }
    .logo-container {
        max-width: 72px;
        height: auto;
    }
    .share-click {
        width: 34px;
        height: 34px;
    }
    h1 {
        font-size: 32.52px;
        line-height: 38.71px;
    }
    .main-screen-container .left-border {
        width: 5px;
        height: calc(100% + 20px);
        margin-top: -10px;
    }
    .main-heading-row {
        padding: 0;
        column-gap: 10px;
    }
    .editor-tags-container ul li {
        font-size: 14px;
        line-height: 22px;
    }
   
    .text-container {
        padding: 50px 0px;
    }
    p {
        font-size: 16px;
        line-height: 28px;
    }
    h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 25px;
    }
    .grid-text-container {
        padding: 30px 20px;
    }
    h2::after {
        height: 5px;
        width: 50px;
    }
    .credit-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 10px;
    }
    .creadit-container ul li {
        padding-inline: 0;
        font-size: 11px;
        line-height: 20px;
    }
    .creadit-container ul li:not(:last-child)::after{width: 0px;}
    .creadit-container ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0px 5px;
    }

    .creadit-container .crd-heading {
        font-size: 18px;
        line-height: 18px;
    }

    .copy-text {
        line-height: 18px;
    }
 
    .text-container ul li {
        font-size: 16px;
        line-height: 28px;
    }

    .main-screen-container {
        row-gap: 61px;
    }

    .tag-container{
        padding-left: 42px;
    }
    .editor-tags-container{
        width: 100%;
    }
    
   
}







   