a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

a,
button {
    border: none;
    outline: 0;
    text-decoration: none;
    background-color: none
}




.hero-text{
    padding: 0 3.5vw;
    margin: 80px 0;
}
.hero-text p{
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.4;
    font-weight: 300;
}
.hero-text span{
    color: white;
    height: fit-content;
    display: inline-block;
}


.logos{
    width: 92vw;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.logos .logo{
    width: 100%;
}
.logos .logo img{
    width: 100%;
    opacity: 1;
      transition: opacity 3s ease-in-out;
}



.book-an-intro{
    padding: 0 3.5vw;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.book-an-intro .intro-card{
    width: 50%;
    padding: 45px 60px;
    border-radius: 30px;
    outline: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(../images/intro-img-1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    aspect-ratio: 1/1.1;
    transition: all .3s;
}
.book-an-intro .intro-card:hover{
    outline: 1px solid white;
    background-size: 105%;

}
.book-an-intro .intro-card.second{
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(../images/intro-img-2.webp);
 background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.book-an-intro .intro-card.second:hover{
    background-size: 105%;
}
.book-an-intro .intro-card .content{
    width: 70%;
}
.book-an-intro .intro-card h3{
    font-size: 30px;
    color: white;
    line-height: 1.2;
}
.book-an-intro .intro-card p{
    font-size: 16px;
    color: white;
    margin-top: 20px;
    line-height: 1.7;
}
.book-an-intro .intro-card .batns{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}






.meaning{
    margin-top: 200px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.meaning .text{
    width: 50%;
    padding-right: 10%;
}
h3{
    font-size: 50px;
    color: white;
}
.p{
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
}
.meaning .text .links{
    margin-top: 30px;
}
.meaning .text .links a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}
.meaning .text .links a:hover .rectangle{
    opacity: 1;
}
.meaning .text .links a:hover img{
    opacity: 1;
}
.meaning .text .links a:hover{
    color: white;
}
.meaning .text .links a .txt{
    display: flex;
    align-items: center;
}
.meaning .text .links a .rectangle{
    height: 8px;
    width: 8px;
    background-color: #BFFF2E;
    margin-right: 20px;
    opacity: .3;
}
.meaning .text .links a img{
    height: 24px;
    opacity: 0;
}



.meaning .image{
    width: 50%;
    height: 835px;
    border-radius: 30px;
    background-image: url(../images/meaning-img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}





.characteristics{
    margin-top: 200px;
    padding: 0 3.5vw;
}
.characteristics .text .p{
    width: 35%;
}
.character-cards{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.character-cards .character-card{
    width: 33%;
    aspect-ratio: 1/1;
    padding: 45px;
    display: flex;
    align-items: flex-end;
    border-radius: 30px;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all .3s;
}
.character-cards .character-card:hover{
    outline: 1px solid white;
}
.character-cards .character-card h5{
    font-size: 30px;
    color: white;
}
.character-cards .character-card p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    width: 70%;
    line-height: 1.4;
}


.backroom{
    margin-top: 200px;
}
.backroom .text{
    padding: 0 3.5vw;
}

.backroom .swiper{
    margin-top: 60px;
}


.backroom .card{
    background-color: #181818;
    border-radius: 30px;
    padding: 40px 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 547px;
    width: 540px;
    opacity: .2;
    transition: all .3s;
}
.backroom .card img{
    height: 100px;
}
.backroom .card p{
    font-size: 20px;
    color: white;
    margin-top: 40px;
}
.backroom .card span{
    display: inline-block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 12px;
}
.backroom .card .txt{
    font-size: 26px;
    color: white;
    line-height: 1.5;
}
.backroom .swiper-slide-active {
opacity: 1;
border: 1px solid white;
transform: scale(1.03);
}

.backroom .swiper-pagination-bullet {
    height: 4px;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
}
.backroom .swiper-pagination-bullet-active{
    background-color: #BFFF2E;
}
 .backroom .swiper-pagination{
    top: unset !important;
    bottom: -50px !important;
} 
 .backroom .slider-wrapper{
    position: relative;
 }






.blog{
    margin-top: 200px;
    padding: 0 3.5vw;
}
.blog-cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}
.blog-cards .blog-card{
    width: 32%;
}
.blog-cards .blog-card img{
    width: 100%;
    border-radius: 20px;
}
.blog-cards .blog-card .txt{
    height: 200px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-cards .blog-card .txt p{
    font-size: 30px;
    color: white;
    line-height: 1.3;
}
.blog-cards .blog-card .txt span{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}



.together{
    margin-top: 200px;
    padding: 0 3.5vw;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.together .img{
    width: 33%;
    height: 770px;
    background: url(../images/together-img-1.webp) center / cover no-repeat;
    border-radius: 30px;
}
.together .img.two{
    background: url(../images/together-img-2.webp) center / cover no-repeat;

}
.together .content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 33%;
    text-align: center;
    padding: 0 20px;
}
.together .content span{
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
}
.together .content h4{
    font-size: 52px;
    color: white;
    line-height: 1.3;
}


footer{
    padding: 50px 3.5vw;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}
footer .heading h4{
    font-size: 36px;
    font-weight: 500;
    color: white;
}
footer .heading .batns{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}


footer .links{
    display: flex;
    gap: 100px;
}
footer .link{
    display: flex;
    flex-direction: column;
}
footer .link b{
    font-size: 22px;
    font-weight: 500;
    color: black;
    display: inline-block;
    margin-bottom: 40px;
    color: white;
}
footer .link a{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.3);
    transition: all .3s;
}
footer .link a:hover{
    color: white;
}





@media(max-width: 1600px){
    .hero-text p {
    font-size: 50px;
}
.hero-text {
    margin: 60px 0;
}
.book-an-intro .intro-card {
    padding: 35px 50px;
}
.book-an-intro .intro-card h3 {
    font-size: 28px;
}
h3 {
    font-size: 45px;}
    .p {
        font-size: 18px;
    }
    .meaning .text .links a {
        font-size: 22px;
        padding: 24px 0;
    }
    .meaning .text .links {
    margin-top: 10px;
}
.character-cards .character-card {
    padding: 35px;
}
.character-cards .character-card h5 {
    font-size: 26px;
}
.backroom .card {
    width: 480px;
    padding: 30px 30px 46px;
    height: 500px;
}
.backroom .card img {
    height: 90px;
}
.backroom .card p {
    font-size: 19px;
    margin-top: 30px;
}
.backroom .card span {
    font-size: 19px;
    margin-top: 8px;
}
.backroom .card .txt {
    font-size: 24px;
}
.blog-cards .blog-card .txt p {
    font-size: 26px;
}
.blog-cards .blog-card .txt {
    height: 160px;
}
.blog-cards .blog-card .txt span {
    font-size: 15px;
}
.together .content span {
    font-size: 18px;
}
.together .content h4 {
    font-size: 46px;
}
footer .heading h4 {
    font-size: 32px;
}
footer .link b {
    font-size: 20px ;
    margin-bottom: 30px ;
}
footer .link a {
    font-size: 20px;
    margin-bottom: 20px;
}
    footer .link a {
        font-size: 18px;
        margin-bottom: 19px;
    }
}




@media(max-width: 1400px){
        .hero-text p {
        font-size: 42px;
    }
        .hero-text {
        margin: 40px 0;
    }
    .book-an-intro{
    margin-top: 60px;
 }
     .book-an-intro .intro-card {
        padding: 35px 40px;
    }
    .book-an-intro .intro-card h3 {
        font-size: 24px;
    }
    .book-an-intro .intro-card p {
    font-size: 15px;
}
.meaning {
    margin-top: 150px;
}
    h3 {
        font-size: 42px;
    }
        .p {
        font-size: 17px;
    }
        .meaning .text .links a {
        font-size: 20px;
        padding: 20px 0;
    }
    .meaning .text .links a .rectangle {
    height: 6px;
    width: 6px;
    margin-right: 14px;
}
.meaning .image {
    height: 635px;
}
    .character-cards .character-card {
        padding: 26px;
    }
        .character-cards .character-card h5 {
        font-size: 23px;
    }
    .character-cards .character-card p {
        width: 90%;
    }
    .characteristics {
    margin-top: 150px;
}
.backroom {
    margin-top: 150px;
}
    .backroom .card{
        width: 430px;
        height: 440px;
    }
        .backroom .card img {
        height: 80px;
    }
        .backroom .card p {
        font-size: 18px;
        margin-top: 20px;
    }
        .backroom .card span {
        font-size: 18px;
    }
    .backroom .card .txt {
        font-size: 22px;
    }
    .backroom .card {
        padding: 30px;
    }
    .blog {
    margin-top: 150px;
}
    .blog-cards .blog-card .txt p {
        font-size: 22px;
    }
        .blog-cards .blog-card .txt span {
        font-size: 14px;
    }
        .blog-cards .blog-card .txt {
        height: 130px;
    }
    .together .img {
    width: 30%;
    height: 570px;

}
.together .content {
    width: 40%;
}
    .together .content span {
        font-size: 17px;
    }
        .together .content h4 {
        font-size: 40px;
    }
    footer .heading h4 {
    font-size: 32px;
}
footer {
    padding: 40px 3.5vw;
}
    footer .link b {
        font-size: 18px ;
        margin-bottom: 24px ;
    }
}


@media(max-width: 1200px){
        .hero-text p {
        font-size: 34px;
    }
        .hero-text {
        margin: 30px 0;
    }
        .hero-text p {
        font-size: 37px;
    }
        .book-an-intro .intro-card h3 {
        font-size: 20px;
    }
        .book-an-intro .intro-card p {
        font-size: 14px;
        margin-top: 10px;
    }
        h3 {
        font-size: 37px;
    }
        .p {
        font-size: 16px;
    }
        .meaning .text .links a {
        font-size: 18px;
        padding: 16px 0;
    }
    .meaning .text .links a .rectangle {
        height: 5px;
        width: 5px;
        margin-right: 10px;
    }
        .meaning .image {
        height: 575px;
    }
        .character-cards .character-card h5 {
        font-size: 20px;
    }
    .character-cards .character-card p {
    font-size: 14px;
    margin-top: 7px;
    width: 100%;
}
.character-cards .character-card {
    border-radius: 20px;
}
.meaning .image {
    border-radius: 20px;
}
.book-an-intro .intro-card {
    border-radius: 20px;
}
.book-an-intro .intro-card .content {
    width: 90%;
}
    .backroom .card {
        width: 370px;
        height: 390px;
    }
        .backroom .card img {
        height: 70px;
    }
        .backroom .card p {
        font-size: 17px;
        margin-top: 16px;
    }
        .backroom .card span {
        font-size: 17px;
    }
    .backroom .card .txt {
        font-size: 20px;
    }
        .blog-cards .blog-card .txt p {
        font-size: 19px;
    }
        .blog-cards .blog-card .txt {
        height: 114px;
    }
.blog-cards .blog-card img {
    border-radius: 15px;
}
    .together .content span {
        font-size: 16px;
    }
        .together .content h4 {
        font-size: 36px;
    }
        .together .content {
            gap: 20px;
        }
        .together .img {
            border-radius: 20px;
        }
            footer .heading h4 {
        font-size: 28px;
    }
        footer .link b {
        font-size: 17px;
        margin-bottom: 20px;
    }
        footer .link a {
        font-size: 17px;
        margin-bottom: 15px;
    }
        footer {
        padding: 30px 3.5vw;
    }
}


@media(max-width: 1000px){
    .hero-text p {
        font-size: 32px;
    }
        .book-an-intro .intro-card {
        padding: 25px 30px;
    }
        h3 {
        font-size: 32px;
    }
    .meaning .text .links a {
        font-size: 16px;
        padding: 12px 0;
    }
    .meaning .text {
    padding-right: 6%;
}
    .meaning .image {
        height: 495px;
    }
    .character-cards {
        flex-wrap: wrap;
    }
    .character-cards .character-card {
    width: 35%;
}
    .backroom .card {
        width: 350px;
        height: 360px;
    }
        .backroom .card img {
        height: 60px;
    }
    .backroom .card p {
        font-size: 16px;
    }
        .backroom .card span {
        font-size: 16px;
    }
        .backroom .card .txt {
        font-size: 18px;
    }
.blog-cards {
    flex-wrap: wrap;
}
.blog-cards .blog-card {
    width: 35%;
}
    .together .content h4 {
        font-size: 34px;
    }
        .together .img {
        height: 470px;
    }
        footer .heading h4 {
        font-size: 25px;
    }
    footer .heading .batns {
        gap: 10px;
        margin-top: 20px;
    }
        footer .link b {
        font-size: 16px;
        margin-bottom: 18px;
    }
        footer .link a {
        font-size: 16px;
        margin-bottom: 12px;
    }
    footer .links {
        gap: 60px;
}
.backroom .swiper-pagination-bullet {
    height: 3px;
    width: 64px;
}
}


@media(max-width: 800px){
    .hero-text p {
        font-size: 28px;
    }
    .book-an-intro {
        margin-top: 50px;
        flex-direction: column;
    }
        .book-an-intro .intro-card {
            width: 100%;
            aspect-ratio: unset;
            height: 250px;
        }
        .meaning .image {
            width: 30%;
        }
        .meaning .text {
            width: 70%;
        }
    h3 {
        font-size: 30px;
    }
    .character-cards .character-card {
        width: 46.7%;
    }
    .characteristics .text .p {
        width: 65%;
    }
    .blog-cards .blog-card {
        width: 46.7%;
    }
    .together .img {
        width: 25%;
    }
    .together .content{
        width: 50%;
    }
    .together .img {
        height: 420px;
    }
    footer .heading h4 {
        font-size: 23px;
    }
}
@media(max-width: 700px){
    .logos {
        display: none;
    }
        .hero-text p {
        font-size: 26px;
    }
    .book-an-intro .intro-card .batns {
    margin-top: 20px;
    gap: 10px;
}
    .book-an-intro .intro-card {
        height: 230px;
    }
        .meaning {
            flex-direction: column;
        }
            .meaning .text {
        width: 100%;
        padding: 0;
    }
        footer .links {
        gap: 40px;
    }
        .meaning .image {
        width: 100%;
        margin-top: 50px;
    }
        .meaning .image {
        height: 295px;
        margin-top: 50px;
    }
        .meaning {
        margin-top: 90px;
    }
        .characteristics {
        margin-top: 100px;
    }
        .characteristics .text .p {
        width: 70%;
    }
        .backroom {
        margin-top: 100px;
    }
        .blog {
        margin-top: 110px;
    }
    .together{
    margin-top: 110px;
}
    .blog-cards .blog-card .txt p {
        font-size: 17px;
    }
}



@media(max-width: 600px){
    .together {
        flex-direction: column;
    }
    .together .img {
        width: 100%;
    }
    .together .content {
    width: 100%;
    margin: 40px 0;
    
}
    .together .img {
    height: 140px;
}
footer {
    flex-direction: column;
}
footer .links {
    margin-top: 50px;
}    .together .content h4 {
        font-size: 30px;
    }
}
@media(max-width: 500px){
        .hero-text p {
        font-size: 24px;
    }
        .book-an-intro .intro-card {
        padding: 25px;
    }
        .book-an-intro .intro-card {
        height: 330px;
    }
        h3 {
        font-size: 28px;
    }
        .characteristics .text .p {
        width: 90%;
    }
        .character-cards .character-card {
        width: 90%;
    }
        .blog-cards .blog-card {
        width: 90%;
    }
    .character-cards {
    margin-top: 30px;
}
.backroom .swiper {
    margin-top: 30px;
}
.blog-cards {
    margin-top: 30px;
}
}
@media(max-width: 430px){
    .hero-text {
    padding: 0 16px;
}
.book-an-intro {
    padding: 0 16px;
}
.meaning {
    padding: 0 16px;

}
.characteristics {
    padding: 0 16px;
}
    .character-cards .character-card {
        width: 100%;
    }
    .backroom .text {
    padding: 0 16px;
}
.blog {
    padding: 0 16px;
}
    .blog-cards .blog-card {
        width: 100%;
    }
    .together {
        padding: 0 16px;
    }
        .together .img {
        height: 80px;
        border-radius: 10px;
    }
}