:root {
    --font-acumin: "acumin-pro-wide", sans-serif; 
    --font-freight: "freight-text-pro", serif;
} 
.btn-outline ,
.red_btn.pre_order{
    font-family: var(--font-acumin);
    padding: 0 30px 4px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    font-size: calc(17px + (21 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.borderb{
    border-bottom: 15px solid #f1cc3d;
}
.heroSection{
    position: relative;
    background-color: transparent;
    img {
        width: 100%;
        height: 590px;
        object-fit: cover;
    }
    .herotext  {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        .hero-text-in{
            width: 100%;
            max-width:  680px;
        }
        h1 {
            
        }
        p{
            margin: 0;
            font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
            font-weight: 500;
            font-family: var(--font-freight);
        }
        .red_btn.pre_order {
            margin-top: 35px;
            font-family: var(--font-acumin);
            font-weight: bold;
            font-size: 21px;
        }
    }
}
.revamp-page {
    background-color: transparent;
    background-color: #fff;
    h1 {
        margin-bottom: 20px;
        font-size: calc(32px + (48 - 32) * ((100vw - 320px) / (1920 - 320)));
        font-family: var(--font-acumin);
        font-weight: 400;
        line-height: 1.25;
        strong {
            font-weight: 700;
        }
    }
    h2 {
        font-size: calc(22px + (39 - 22) * ((100vw - 320px) / (1920 - 320)));
        margin-bottom: 25px;
        font-family: var(--font-acumin);
    }
    p {
        line-height: 1.28;
        font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
        
    }
}

.btn-rapper{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
}
.btn-outline{
    border: 4px solid #d80000;
}
.revamp-page p{
    font-family: var(--font-freight);
}
.guidesection{
    background-color: #fff;
    padding: 50px 0;
    h2 {
        margin-bottom: 25px;
    }
    p {
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 30px 0;
        line-height: 1.28;
        font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
        
    }
}

.guide_row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    .guide_book{
        width: 350px;
    }
    .guide_text {
        width: calc(100% - 350px);
    }
}

.subscribeSection{
    padding: 45px 0 30px;
    background-color: #95d9e9;
    h2 {
        margin-bottom: 25px;
    }
    p{
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .anim-text{ 
        width: calc(100% - 235px);
        padding-right: 50px;
    }
    .anim-img {
        order: 1;
        width: 235px;
        text-align: right;
    }
    .subscribeSection-row{
        display: flex;
        align-items: center;
    }
}

.blog-wrapper{
    background-color: #fff;
    padding: 50px 0;
    .container {
        padding-bottom: 0;
    }
}
.left-sidebar {
    width: 330px;
    flex-shrink: 0;
}
.blog-wrapper-list{
    display: flex;
}

.label-text {
    display: block;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #333;
	font-family: var(--font-acumin);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #000;
}

.social-links a:hover {
    color: #d80000;
}
.social-links i {
    font-size: calc(24px + (30 - 24) * ((100vw - 320px) / (1920 - 320)));
}
.right-content-area {
    flex: 1;
}

.article-block {
    
    + .article-block {
        margin-top: 25px;
    }
    h3 {
        font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
        color: #000;
        font-family: var(--font-acumin);
        margin-bottom: 10px;
        a {
            color: inherit;
            &:hover {
                color: #d80000;
            }
        }
    }
    p{
        line-height: 1.32;
        font-size: calc(16px + (21 - 16) * ((100vw - 320px) / (1920 - 320)));
    }
}



@media (max-width : 1199px) {
    .heroSection {
        .herotext {
            .hero-text-in {
                width: 100%;
                max-width: 580px;
            }
        }
        img {
            height: calc(300px + (500 - 300) * ((100vw - 320px) / (1200 - 320)));
        }
    }
    .btn-outline ,
    .red_btn.pre_order{
        height: calc(48px + (60 - 48) * ((100vw - 320px) / (1200 - 320)));
    }
    .left-sidebar{
        width: 260px;
    }
}
.revamp-page .container {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width : 767px) {
    .guide_row {
        .guide_text {
            width: 100%;
            padding-top: 25px;
        }
    }
    .btn-rapper{
        gap: 10px;
    }
	.guide_book {
		margin: 0 auto;
		display: block;
        text-align: center;
	}
    .guide_book img {
        max-width: 200px;
    }
    .revamp-page .container {
        padding-left: 25px ;
        padding-right: 25px;
    }
    .btn-rapper{
        width: 350px;
		max-width: 100%;
        a {
            width: 100%;
            padding: 0 10px;
        }
    }
    .subscribeSection {
        .subscribeSection-row {
            flex-wrap: wrap;
        }
        .anim-img {
            order: -1;
            text-align: left;
        }
        .anim-text{
            width: 100%;
            padding: 25px 0 0
        }
    }
    .blog-wrapper-list{
        flex-wrap: wrap;
        padding-top: 0px;
        .right-content-area{
            padding-top: 35px;
        }
    }
    .heroSection .herotext {
        position: static;
        transform: none;
        padding: 25px 0;
        
    }
}

@media (max-width : 374px) {
	 .btn-rapper{
       
        a {
            font-size: 15px;
        }
    }
}