*{
    box-sizing: border-box;
}

:root{
    --libre-font:"Libre Bodoni", serif;
    --inter-font:"Inter", sans-serif;
    --rubik-font:"Rubik", sans-serif;
    --bg-color-2:#e8e6e7;
    --select-box-color:rgba(204, 11, 17, 1);
    --nav-button-color:rgba(227, 0, 20, 1);
    --container-width : 1150px;
} 

body{
    font-family: var(--libre-font);
    margin: 0;
    color: #000;
    overflow-x: hidden;
}

html, body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}


a{
    display: inline-block;
}

ul{
    margin: 0px 0px 0px 0px;
    padding: 0;
}
ul li{list-style-type: none;}

svg, img{
    width: 100%;
    height: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: calc(100% - 80px);
}

.share-click {
    width: 45px;
    height: 45px;
    background-color: var(--nav-button-color);
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
    display: grid;
    place-content: center;
}

.share-click svg{
    fill: transparent;
    width: 30px;
    height: 30px;
}


.share-click svg g {
    fill: #fff;
}

.logo-container {
    max-width: 130px;transition: all 0.3s;
}

header{
    width: 100%;
    top: 0;
    z-index: 9;
    left: 0;
    right: 0;
    position: fixed;
    padding: 40px 40px 0px 40px;
    height: 110px;
    transition: height, padding 0.5s;
}

header.background-added {
    padding: 15px 40px 15px 40px;
    height: 85px;
}

header.background-added .logo-container {
    max-width: 108px;
}
header.background-added .share-click {
    height: auto;
}


.header-row {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    align-items: center;
}

.header-image {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.header-area {
    max-width: 1058px;
    margin-inline: auto;
    margin-top: -142px;
    background-color: #fff;
    position: relative;
    z-index: 8;
    padding: 40px 40px 40px 40px;
    display: grid;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 30px;
    margin-bottom: 30px;
    transition: margin-top 0.5s;
}

h1 {
    font-weight: 600;
    font-size: 76px;
    line-height: 83px;
    margin: 0;
    order: 2;
    text-transform: uppercase;
}

h2, .header-sub-heading {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    margin: 0px 0px 0px 0px;
    font-family: var(--inter-font);
    color: var(--select-box-color);
}

.header-area select {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    min-width: 95px;
    width: auto;
    padding: 5px 45px 5px 10px;
    background-color: var(--select-box-color);
    color: #fff;
    outline: 0;
    border: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    font-family: var(--inter-font);
    background-image: url('data:image/svg+xml,<svg width="25" height="22" viewBox="0 0 25 22" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="25" height="22" fill="%23FF222A"/><path d="M5.73328 6.00002H18.9247C19.0583 6.00044 19.1892 6.03727 19.3034 6.10656C19.4175 6.17585 19.5107 6.27496 19.5727 6.39323C19.6347 6.51151 19.6633 6.64446 19.6554 6.77779C19.6475 6.91111 19.6034 7.03975 19.5278 7.14987L12.9321 16.677C12.6588 17.072 12.0007 17.072 11.7266 16.677L5.13087 7.14987C5.05452 7.03998 5.00975 6.91127 5.00142 6.77773C4.99309 6.64418 5.02151 6.51091 5.08361 6.39238C5.1457 6.27386 5.23909 6.17462 5.35363 6.10544C5.46817 6.03627 5.59947 5.99981 5.73328 6.00002Z" fill="white"/></svg>');
    appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: right center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-size: contain;
}

body.no-scroll {
    overflow: hidden;
}
.header-area ul.copy-tags {
     order: 3;
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.header-area ul.copy-tags li {
    font-family: var(--inter-font);
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
}


p {
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    margin: 0px 0px 30px 0px;
}

.image-container-full {
    position: relative;
    width: 100vw;
    left: calc(-50vw + calc(var(--container-width) / 2));
    margin: 50px 0px;
}


footer {
    padding: 45px 0px;
    border-top: 1px solid rgba(54, 54, 54, 1);
    margin-top: 30px;
    background-color: #000;
}

.footer-logo {
    max-width: 118px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    align-items: center;
    grid-template-rows: 1fr;
    row-gap: 20px;
}

.footer-line , .footer-line a{
    font-family: var(--inter-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
.footer-line a:hover{
    text-decoration: underline;
}

.social-wrapper img {
    max-width: 45px;
    cursor: pointer;
}

.social-wrapper {
    position: fixed;
    right: 32px;
    top: 100px;
    z-index: 11;
    display: none;
    transition: top 0.5s;
}

.social-wrapper.active{
    display: block;
}


.social-wrapper ul {
    display: flex
    ;
        align-items: center;
        justify-content: center;
        row-gap: 5px;
        max-width: 60px;
        flex-direction: column;
}

.social-wrapper li:nth-of-type(2) img{
    max-width: 70px;
}

.social-wrapper li:nth-of-type(3) img {
    max-width: 37px;
}

.social-wrapper li:nth-of-type(2){margin-top: -10px;}
.social-wrapper li:nth-of-type(3){margin-top: -7px;}

p.first-style:first-letter{
    font-size: 42px;
    line-height: 35px;
}

h3 {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    margin: 0px 0px 30px 100px;
}

.text-full-width-container {
    background-color: var(--bg-color-2);
    left: calc(-50vw + calc(var(--container-width) / 2));
    position: relative;
    width: 100vw;
    padding: 60px 0px 30px 0px;
}

/*

.header-area ul.copy-tags li:not(:last-child)::after{
    content: '|';
    padding-left: 10px;
}
    
*/

body:has(.background-added) .social-wrapper {
    top: 78px;
    right: 35px;
}


.part-links ul li {
    display: inline-block;
}

.part-links ul li:not(:last-child){margin-right: 10px;}

.part-links ul li a {
    background-color: var(--nav-button-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 40px;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    white-space: nowrap;
}

body .part-links{display: none;transition: all 0.5s;}
body:has(.background-added) .part-links:has(ul){
    display: block;
    max-width: 100%;
    overflow: auto;
}

body:has(.background-added) .part-links ul {
    display: flex;
    justify-content: center;
    overflow: auto;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #a7a7a7 transparent;
}
body:has(.background-added) .part-links ul:has(> li:nth-child(3)) {
    justify-content: flex-start;
}
.ads-lable {
    font-family: var(--rubik-font);
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(142, 142, 142, 1);
}

.add-div-container {
    width: 728px;
    margin-inline: auto;
    display: grid;
    row-gap: 5px;
    padding: 10px 0px;
    margin-top: 10px;
    overflow: hidden;
}

.ads-container {
    background-color: rgba(217, 217, 217, 1);
    min-height: 90px;
    width: 100%;
}

.desktop-ads{
    min-width: 728px; min-height: 90px;
}

.mobile-ads{
    min-width: 250px; min-height: 250px;
}



.selection-icon{
    width: 25px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(255, 34, 42, 1);
    place-content: center;
    display: grid;
}

.part-selection-box {
    font-family: var(--inter-font);
    position: relative;
    margin-left: auto;
}

.header-manage {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    column-gap: 15px;
}


.selection-icon svg {
    width: 15px;
    height: 11px;
    transform-origin: center center;
    transition: transform 0.4s;
}
.selection-icon svg.rotete {
    transform: rotate(180deg);
}
.selection-opener ul li {
    cursor: pointer;
    padding: 5px 10px;
    color: #fff;
    border-bottom: 1px solid;
}

.selection-opener ul li:last-child{
    border-bottom: 0;
}

.selection-header {
    background-color: var(--select-box-color);
    padding: 5px 45px 6px 10px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}
.selection-header span{color: #fff;}

.selection-opener {
    background-color: var(--select-box-color);
    border-top: 1px solid #fff;
    display: none;
    position: absolute;
    width: 100%;
    top: 35px;
    left: 0;
}
.selection-opener.active{display: block;}
.loader-wrapper {
    position: fixed;
    top: 0px;
    z-index: 23;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #211d2e;
    align-items: center;
}

.loader-wrapper img {
    width: auto;
}

.rotation-msg {
    display: none;
    background-color: #339;
    position: fixed;
    z-index: 25;
    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: bold 22px / 28px var(--libra-font);
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rm-txt p {
    font: 400 15px / 21px var(--mon-font);
    color: #fff;
}

.loader-wrapper {
    position: fixed;
    top: 0px;
    z-index: 23;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #211d2e;
    align-items: center;
}

.loader-wrapper img {
    width: auto;
}
::selection{
    background-color: #c00;
    color: #fff;
}

.selection-opener ul li.disabled {
    opacity: 0.5;
    pointer-events: none;
}

h3.sub-heading {
    font-weight: 600;
    font-size: 89px;
    line-height: 91px;
    text-decoration: none;
    margin: 0 0 30px 0;
}

p a {
    color: #c0504d;
    font-style: italic;
    font-weight: 600;
    text-decoration-color: #000;
    display: inline;
}

.mt-30{margin-top: 30px;}

.creadit-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 21;
    top: 0;
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
}

.creadit-wrapper.active{display: flex;}

.creadit-container {
    background-color: #000;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    width: 553px;
}

.crd-header {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #fff;
}

.crd-heading {
    line-height: 1;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.creadit-container p {
    margin-bottom: 10px;
    font-family: var(--rubik-font);
    font-size: 18px;
    line-height: 21px;
    color: #fff;
}


.crd-close {
    width: 30px;
    height: 30px;
    cursor: pointer;
}


.crd-button-group {
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
    padding: 10px 0px;
    text-align: center;
    margin-top: 30px;
}

.credit-button {
    font-size: 22px;
    cursor: pointer;
}


.mb-30{
    margin-bottom: 30px;
}


header::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 1;
    transform: translateY(-100%);
    transition: transform 0.4s;
}

header.background-added::after{
    transform: translateY(0%);
}

.caption {
    text-align: center;
    width: calc(100% - 40px);
    margin: 5px auto 0px auto;
    font-style: italic;
    color: #000;
}

.header-area ul.copy-tags li a {
    color: #000;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

.embeed {
    position: relative;
    padding-bottom: 56.25%;
    margin: 30px 0px;
}

.embeed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
}

.screen-wrapper ul {
    margin-left: 20px;
}

.screen-wrapper .selection-opener ul {
    margin-left: 0;
}

.header-detail-container {
    order: 4;
    max-width: 984px;
    padding: 33px 0px;
    margin-inline: auto;
}

.header-detail-container .header-summary-logo {
    max-width: 144px;
    float: left;
    margin: 0px 20px 20px 0px;
    max-height: 100px;
    object-fit: contain;
    object-position: top center;
    width: auto;
    display: block;
}

.header-text-container {
    font-family: var(--inter-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: rgba(51, 51, 51, 1);
}

.header-text-container .text-eclips {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--inter-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: rgba(51, 51, 51, 1);
}
.header-read-more-button {
    display: block;
    white-space: nowrap;
    color: rgba(204, 0, 0, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    position: relative;
    text-align: right;
    padding-right: 20px;
    font-family: var(--inter-font);
}

.header-read-more-button:after {
    content: '';
    border-top: 9px solid rgba(204, 0, 0, 1);
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    transform: translate(0px, -50%);
    top: 50%;
    right: 0;
    transition: border 0.4s;
}

.header-detail-container.read-expand .header-read-more-button:after {
    border-top: 0;
    border-bottom: 9px solid rgba(204, 0, 0, 1);
}


.header-text-container .text-eclips p {
    font-family: var(--inter-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 20px;
}

.header-detail-container.read-expand .text-eclips {
    display: inline;
}



@media screen and (max-device-width: 1024px) and (orientation: landscape) {
    .rotation-msg {
        display: block;
    }
    body, html {
        overflow: hidden;
        background-color: #333399;
    }
}


@media (min-width:920px) {
    .mobile-ads{display: none;}
}



@media (max-width:1400px) {
    .logo-container {
        max-width: 100px;
    }
    header {
        padding: 10px 20px;
        height: 60px;
    }
   
    .share-click {
        width: 40px;
        height: 40px;
    }
    .header-area {
        max-width: 920px;
        row-gap: 20px;
    }
    h1 {
        font-size: 62px;
        line-height: 64px;
    }
    h3{
        font-size: 30px;
        margin: 0px 0px 30px 70px;
    }
    .header-area ul.copy-tags li{
        font-size: 20px;
    }
    .container {
        --container-width: 920px;
    }
    p {
        font-size: 22px;
        line-height: 33px;
    }
    header.background-added {
        padding: 10px 20px 10px 20px;
        height: 60px;
    }
    header.background-added .logo-container {
        max-width: 85px;
    }
    .social-wrapper {
        right: 10px;
        top: 70px;
    }
    body:has(.background-added) .social-wrapper {
        top: 70px;
        right: 10px;
    }
    .footer-logo {
        max-width: 80px;
    }
    .footer-line, .footer-line a {
        font-size: 16px;
        line-height: 33px;
    }
    .footer-row {
        row-gap: 5px;
    }
    footer {
        padding: 25px 0px;
    }
    
    .part-links ul li a {
        font-size: 18px;
        line-height: 29px;
        padding: 5px 30px;
    }
    h3.sub-heading {
        font-size: 79px;
        line-height: 81px;
    }

}


@media (max-width:1150px) {
    .image-container-full{
        --container-width: 100%;
    }
}


@media (max-width:1200px) and (min-width:1025px){
    .header-area {
        margin-inline: 150px;
    }
}

@media (max-width:1024px) {
    .logo-container {
        max-width: 80px;
    }
    .header-area {
        max-width: 660px;
    }
    h2 , .header-sub-heading{
        font-size: 28px;
    }
    h1 {
        font-size: 46px;
        line-height: 49px;
    }
    
    .header-area select {
        font-size: 16px;
    }
    p {
        font-size: 20px;
        line-height: 31px;
    }
    h3 {
        font-size: 28px;
        margin: 0px 0px 30px 60px;
    }
    .container {
        --container-width: 100%;
    }
    .footer-logo {
        max-width: 75px;
    }


    .footer-line, .footer-line a {
        font-size: 15px;
        line-height: 32px;
    }

    .header-image {
        height: 600px;
    }

    .social-wrapper {
        top: 65px;
    }
    body:has(.background-added) .social-wrapper {
        top: 65px;
        right: 10px;
    }

    h3.sub-heading {
        font-size: 59px;
        line-height: 61px;
    }
    


}

@media (max-width:920px) {
    .desktop-ads{display: none;}
    .mobile-ads{display: block;}

    .add-div-container {
        width: 300px;
    }
    .ads-container {
        min-height: 250px;
    }
    .header-manage {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }
}


@media (max-width:920px) and (min-width:768px){
    .container {
        --container-width: 660px;
    }
}

@media (max-width:767px) {
    .header-area {
        margin: 0;
        width: 100%;
        max-width: 100%;
        z-index: 7;
        padding: 20px 20px 20px 20px;
        margin-bottom: 10px;
        margin-inline: 0;
    }
    .selection-opener {
        top: 26px;
    }
    h1 {
        font-size: 40px;
        line-height: 46px;
    }
    h2 , .header-sub-heading{
        font-size: 18px;
        order: 2;
        margin-top: 10px;
        line-height: 23px;
        width: 100%;
    }

    .header-area ul.copy-tags li {
        font-size: 14px;
        line-height: 26px;
    }
    .container {
        width: calc(100% - 40px);
    }
    p {
        font-size: 18px;
        line-height: 27px;
    }

    h3 {
        margin: 0px 0px 30px 0px;
        text-decoration: none;
    }
    .text-full-width-container {
        padding: 30px 0px 30px 0px;
    }
    .footer-logo {
        max-width: 65px;
    }
    .footer-line, .footer-line a {
        font-size: 12px;
        line-height: 20px;
    }
    .header-image {
        height: 360px;
    }
    .selection-header , .selection-opener ul li{
        font-size: 12px;
    }
    .part-selection-box{
        width: auto;
        order: 1;
        margin-left: auto;
    }
    .selection-icon svg {
        width: 10px;
    }

    p.first-style:first-letter{
        font-size: 28px;
        line-height: 28px;
    }

    .part-links ul li a {
        font-size: 12px;
        line-height: 15.91px;
        padding: 3px 15px;
        border-radius: 4.55px;
    }

    .logo-container {
        max-width: 60px;
    }

    .share-click {
        width: 25px;
        height: 25px;
        padding: 2px;
    }
    .share-click svg {
        width: 20px;
        height: 20px;
    }
    header.background-added .logo-container {
        width: 60px;
    }
    header.background-added {
        height: auto;
    }
    .header-row {
        align-items: center;
    }
    .social-wrapper img {
        max-width: 30px;
    }

    .social-wrapper li:nth-of-type(2) img {
        max-width: 35px;
    }
    .social-wrapper li:nth-of-type(3) img {
        max-width: 25px;
    }

    .social-wrapper li:nth-of-type(3) {
        margin-top: -5px;
    }

    .social-wrapper {
        top: 45px;
        right: 15px;
    }
    body:has(.background-added) .social-wrapper {
        top: 50px;
        right: 16px;
    }
    h3.sub-heading {
        font-size: 42px;
        line-height: 51px;
    }

    .creadit-container {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 30px;
    }

    .header-manage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 10px;
        align-items: center;
    }

    .part-links ul:has(> li:nth-child(4)){
        justify-content: flex-start;
    }

    body .part-links ul {
        overflow-x: auto;
        max-width: 100%;
        display: flex;
        flex-wrap: nowrap;
        column-gap: 10px;
        justify-content: center;
        scroll-snap-type: x mandatory;
    }

    .part-links ul li {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .part-links ul li:not(:last-child) {
         margin-right: 0px; 
    }

    body .part-links {width: calc(100% - 100px);}
    body:has(.background-added) .part-links ul{justify-content: flex-start;}
    .header-text-container .text-eclips{-webkit-line-clamp: 4;}
    .header-detail-container .header-summary-logo {margin: 0px 20px 20px 0px;}
    .header-detail-container {
        margin: 10px auto 20px auto;
        padding: 10px 10px;
        border: 1px solid #e1e1e1;
    }
    .header-text-container .text-eclips p {
        font-size: 16px;
        line-height: 20px;
    }
    .header-read-more-button {
        font-size: 14px;
        line-height: 17px;
        margin-top: 5px;
        padding-right: 14px
    }
    .header-read-more-button:after {
        border-top: 8px solid rgba(204, 0, 0, 1);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }
    .header-detail-container.read-expand .header-read-more-button:after {
        border-bottom: 8px solid rgba(204, 0, 0, 1);
    }

}