/*=========================================================
OUR CENTERS PAGE
PART - 2A
HERO SECTION
=========================================================*/

.oc-hero-section{
    padding:40px 0 80px;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #ffffff;
}

body {
    position: relative;
}

/* back to top button */
.oc-back-top{
    position: fixed;
    right: 20px;
    bottom: 20px; /* white gap avoid করতে 0 না দিয়ে proper spacing */
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #d60000;
    color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.oc-back-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.oc-back-top:hover{
    background: #b80000;
}

/* footer এর নিচে gap থাকলে */
footer,
.oc-footer,
.site-footer {
    margin-bottom: 0 !important;
}

/* last section এর নিচে unwanted space থাকলে */
section:last-of-type {
    margin-bottom: 0 !important;
}
/*==============================
Hero Wrapper
==============================*/

.oc-hero-box{
    position:relative;
    background:linear-gradient(rgba(16,18,27,.82),rgba(16,18,27,.82)),
               url("../images/centers/hero-center.jpg") center center/cover no-repeat;
    border-radius:28px;
    overflow:hidden;
    padding:70px 60px;
    border-bottom:5px solid #d40000;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/* Decorative Pattern */

.oc-hero-box::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(212,0,0,.12);
    top:-180px;
    left:-150px;
}

.oc-hero-box::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-80px;
    bottom:-80px;
}

/*==============================
Content
==============================*/

.oc-hero-content{
    position:relative;
    z-index:5;
}

/*==============================
Breadcrumb
==============================*/

.oc-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.oc-breadcrumb a,
.oc-breadcrumb span{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
}

.oc-breadcrumb a:hover{
    color:#ffb3b3;
}

.oc-breadcrumb i{
    font-size:12px;
}

/*==============================
Heading
==============================*/

.oc-hero-content h1{
    color:#ffffff;
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:18px;
}

.oc-hero-content h1 span{
    color:#ff2a2a;
}

/*==============================
Divider
==============================*/

.oc-title-line{
    width:90px;
    height:5px;
    border-radius:50px;
    background:#d40000;
    margin-bottom:28px;
}

/*==============================
Description
==============================*/

.oc-hero-content p{
    color:#f1f1f1;
    font-size:22px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:45px;
}

/*==============================
Feature List
==============================*/

.oc-hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
}

.oc-feature-item{
    display:flex;
    align-items:center;
    gap:16px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:16px 20px;
    transition:.35s;
}

.oc-feature-item:hover{
    transform:translateY(-6px);
    background:rgba(212,0,0,.25);
}

.oc-feature-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#d40000;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:22px;
    flex-shrink:0;
}

.oc-feature-item h6{
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    margin-bottom:4px;
}

.oc-feature-item span{
    color:#dddddd;
    font-size:14px;
}

/*==============================
Hero Image
==============================*/

.oc-hero-image{
    position:relative;
    z-index:5;
    text-align:right;
}

.oc-hero-image img{
    width:100%;
    max-width:620px;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.30);
    transition:.5s;
}

.oc-hero-image img:hover{
    transform:scale(1.03);
}

/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.oc-hero-content h1{
    font-size:60px;
}

.oc-hero-content p{
    font-size:19px;
}

}

@media(max-width:991px){

.oc-hero-box{
    padding:55px 35px;
}

.oc-hero-content{
    margin-bottom:45px;
}

.oc-hero-image{
    text-align:center;
}

.oc-hero-content h1{
    font-size:52px;
}

.oc-hero-content p{
    font-size:18px;
}

}

@media(max-width:768px){

.oc-hero-section{
    padding:30px 0 70px;
}

.oc-hero-box{
    padding:45px 25px;
    border-radius:20px;
}

.oc-hero-content h1{
    font-size:42px;
}

.oc-title-line{
    width:70px;
}

.oc-hero-content p{
    font-size:16px;
    margin-bottom:35px;
}

.oc-hero-features{
    flex-direction:column;
}

.oc-feature-item{
    width:100%;
}

}

@media(max-width:576px){

.oc-hero-box{
    padding:35px 20px;
}

.oc-breadcrumb{
    gap:8px;
}

.oc-breadcrumb a,
.oc-breadcrumb span{
    font-size:13px;
}

.oc-hero-content h1{
    font-size:34px;
}

.oc-hero-content p{
    font-size:15px;
    line-height:1.7;
}

.oc-feature-item{
    padding:14px 16px;
}

.oc-feature-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.oc-feature-item h6{
    font-size:15px;
}

.oc-feature-item span{
    font-size:13px;
}

.oc-hero-image img{
    border-radius:16px;
}

}
/*=========================================================
OUR CENTERS PAGE
PART - 2B
STATISTICS SECTION
=========================================================*/

.oc-stats-section{
    position:relative;
    margin-top:-55px;
    z-index:10;
}

/*==================================
Statistics Wrapper
==================================*/

.oc-stats-wrapper{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid #eeeeee;

}

/*==================================
Equal Height
==================================*/

.oc-stats-wrapper .row>[class*="col"]{

    display:flex;

}

/*==================================
Stat Card
==================================*/

.oc-stat-card{

    position:relative;

    width:100%;

    display:flex;

    align-items:center;

    gap:18px;

    padding:35px 28px;

    background:#ffffff;

    transition:.35s;

    border-right:1px solid #ececec;

    overflow:hidden;

}

/* Last Card */

.oc-stat-last{

    border-right:none;

}

/* Hover */

.oc-stat-card:hover{

    transform:translateY(-8px);

    background:#fff8f8;

}

/* Top Border Animation */

.oc-stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    background:#d40000;

    transition:.35s;

}

.oc-stat-card:hover::before{

    width:100%;

}

/*==================================
Icon
==================================*/

.oc-stat-icon{

    width:72px;

    height:72px;

    min-width:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#d40000,#ff4040);

    color:#ffffff;

    font-size:28px;

    box-shadow:0 12px 28px rgba(212,0,0,.22);

    transition:.35s;

}

.oc-stat-card:hover .oc-stat-icon{

    transform:rotate(8deg) scale(1.08);

}

/*==================================
Content
==================================*/

.oc-stat-content{

    flex:1;

}

.oc-stat-content h3{

    font-size:34px;

    font-weight:800;

    color:#111827;

    margin-bottom:6px;

    line-height:1;

}

.oc-stat-content p{

    font-size:17px;

    font-weight:700;

    color:#d40000;

    margin-bottom:4px;

}

.oc-stat-content span{

    font-size:14px;

    color:#6b7280;

    line-height:1.6;

}

/*==================================
Responsive
==================================*/

@media(max-width:1199px){

.oc-stat-card{

padding:28px 22px;

}

.oc-stat-content h3{

font-size:30px;

}

}

@media(max-width:991px){

.oc-stats-section{

margin-top:40px;

}

.oc-stat-card{

border-right:none;

border-bottom:1px solid #ececec;

}

.oc-stats-wrapper .row>.col-md-6:nth-last-child(-n+2) .oc-stat-card{

border-bottom:none;

}

}

@media(max-width:768px){

.oc-stat-card{

padding:24px 20px;

}

.oc-stat-icon{

width:62px;

height:62px;

min-width:62px;

font-size:24px;

}

.oc-stat-content h3{

font-size:28px;

}

.oc-stat-content p{

font-size:16px;

}

}

@media(max-width:576px){

.oc-stats-section{

margin-top:30px;

}

.oc-stat-card{

flex-direction:column;

text-align:center;

padding:25px 18px;

}

.oc-stat-icon{

margin-bottom:12px;

}

.oc-stat-content h3{

font-size:26px;

}

.oc-stat-content p{

font-size:15px;

}

.oc-stat-content span{

font-size:13px;

}

}
/*=========================================================
OUR CENTERS PAGE
PART - 2C
OUR CENTERS GRID
=========================================================*/

.oc-centers-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/*==============================
Background Decoration
==============================*/

.oc-centers-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(212,0,0,.04);
    top:-140px;
    left:-140px;
}

.oc-centers-section::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(212,0,0,.03);
    right:-120px;
    bottom:-120px;
}

/*==============================
Section Heading
==============================*/

.oc-section-header{
    margin-bottom:70px;
}

.oc-section-subtitle{
    display:inline-block;
    padding:8px 22px;
    background:#ffe8e8;
    color:#d40000;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.oc-section-header h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.oc-section-header h2 span{
    color:#d40000;
}

.oc-section-divider{
    width:80px;
    height:4px;
    background:#d40000;
    border-radius:50px;
    margin:20px auto;
}

.oc-section-header p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.9;
}

/*==============================
Equal Height
==============================*/

.oc-centers-section .row>[class*="col"]{
    display:flex;
}

/*==============================
Center Card
==============================*/

.oc-center-card{

    width:100%;

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

}

.oc-center-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*==============================
Image
==============================*/

.oc-center-image{

    position:relative;

    overflow:hidden;

    height:240px;

}

.oc-center-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.oc-center-card:hover .oc-center-image img{

    transform:scale(1.08);

}

/*==============================
City Badge
==============================*/

.oc-city-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#d40000;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:0 10px 20px rgba(212,0,0,.30);

}

/*==============================
Body
==============================*/

.oc-center-body{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.oc-center-body h3{

    font-size:26px;

    font-weight:700;

    color:#111827;

    margin-bottom:15px;

}

.oc-center-desc{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

/*==============================
Info List
==============================*/

.oc-center-info{

    list-style:none;

    padding:0;

    margin:0 0 30px;

    flex:1;

}

.oc-center-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:#4b5563;

    font-size:15px;

    line-height:1.7;

}

.oc-center-info i{

    color:#d40000;

    margin-top:3px;

    min-width:18px;

}

/*==============================
Buttons
==============================*/

.oc-center-buttons{

    display:flex;

    gap:12px;

}

.oc-map-btn,
.oc-details-btn{

    flex:1;

    height:50px;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

/* Primary */

.oc-map-btn{

    background:#d40000;

    color:#ffffff;

}

.oc-map-btn:hover{

    background:#111827;

    color:#ffffff;

}

/* Secondary */

.oc-details-btn{

    border:2px solid #d40000;

    color:#d40000;

    background:#ffffff;

}

.oc-details-btn:hover{

    background:#d40000;

    color:#ffffff;

}

/*==============================
Bottom Button
==============================*/

.oc-all-centers-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 36px;

    border-radius:50px;

    background:linear-gradient(135deg,#d40000,#ff3b3b);

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(212,0,0,.25);

}

.oc-all-centers-btn:hover{

    color:#ffffff;

    background:#111827;

    transform:translateY(-5px);

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.oc-centers-section{

padding:80px 0;

}

.oc-section-header{

margin-bottom:55px;

}

.oc-section-header h2{

font-size:38px;

}

.oc-center-body{

padding:25px;

}

}

@media(max-width:768px){

.oc-centers-section{

padding:70px 0;

}

.oc-section-header h2{

font-size:32px;

}

.oc-section-header p{

font-size:15px;

}

.oc-center-image{

height:220px;

}

.oc-center-body h3{

font-size:23px;

}

.oc-center-buttons{

flex-direction:column;

}

}

@media(max-width:576px){

.oc-centers-section{

padding:60px 0;

}

.oc-section-header{

margin-bottom:45px;

}

.oc-section-header h2{

font-size:28px;

}

.oc-center-card{

border-radius:18px;

}

.oc-center-image{

height:200px;

}

.oc-center-body{

padding:20px;

}

.oc-center-body h3{

font-size:20px;

}

.oc-center-desc{

font-size:14px;

}

.oc-center-info li{

font-size:14px;

}

.oc-map-btn,
.oc-details-btn{

height:48px;

font-size:14px;

}

.oc-all-centers-btn{

padding:14px 28px;

font-size:15px;

}

}
/*=========================================================
OUR CENTERS PAGE
PART - 2D
WHY CHOOSE OUR CENTERS
=========================================================*/

.oc-benefits-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/*==================================
Background Decoration
==================================*/

.oc-benefits-section::before{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(212,0,0,.04);
    top:-170px;
    right:-140px;
}

.oc-benefits-section::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(212,0,0,.03);
    bottom:-120px;
    left:-120px;
}

/*==================================
Section Heading
==================================*/

.oc-benefits-header{
    margin-bottom:70px;
}

.oc-benefits-subtitle{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#ffe8e8;
    color:#d40000;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.oc-benefits-header h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.oc-benefits-header h2 span{
    color:#d40000;
}

.oc-benefits-divider{
    width:80px;
    height:4px;
    border-radius:50px;
    background:#d40000;
    margin:20px auto;
}

.oc-benefits-header p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.9;
}

/*==================================
Equal Height
==================================*/

.oc-benefits-section .row>[class*="col"]{
    display:flex;
}

/*==================================
Feature Card
==================================*/

.oc-benefit-card{

    width:100%;

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    background:#ffffff;

    padding:40px 30px;

    border-radius:22px;

    border:1px solid #ececec;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    overflow:hidden;

}

/* Top Accent */

.oc-benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:linear-gradient(90deg,#d40000,#ff4747);

    transition:.4s;

}

.oc-benefit-card:hover::before{

    width:100%;

}

.oc-benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

    background:#fffafa;

}

/*==================================
Icon
==================================*/

.oc-benefit-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#d40000,#ff4040);

    color:#ffffff;

    font-size:34px;

    margin-bottom:28px;

    box-shadow:0 15px 35px rgba(212,0,0,.25);

    transition:.4s;

}

.oc-benefit-card:hover .oc-benefit-icon{

    transform:rotate(12deg) scale(1.08);

}

/*==================================
Content
==================================*/

.oc-benefit-card h4{

    font-size:24px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.oc-benefit-card p{

    color:#6b7280;

    line-height:1.8;

    font-size:15px;

    margin-bottom:0;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.oc-benefits-section{

padding:80px 0;

}

.oc-benefits-header{

margin-bottom:55px;

}

.oc-benefits-header h2{

font-size:38px;

}

.oc-benefit-card{

padding:35px 25px;

}

}

@media(max-width:768px){

.oc-benefits-section{

padding:70px 0;

}

.oc-benefits-header h2{

font-size:32px;

}

.oc-benefits-header p{

font-size:15px;

}

.oc-benefit-icon{

width:80px;

height:80px;

font-size:30px;

}

.oc-benefit-card h4{

font-size:22px;

}

}

@media(max-width:576px){

.oc-benefits-section{

padding:60px 0;

}

.oc-benefits-header{

margin-bottom:45px;

}

.oc-benefits-header h2{

font-size:28px;

}

.oc-benefit-card{

padding:30px 20px;

border-radius:18px;

}

.oc-benefit-icon{

width:72px;

height:72px;

font-size:26px;

margin-bottom:22px;

}

.oc-benefit-card h4{

font-size:20px;

}

.oc-benefit-card p{

font-size:14px;

line-height:1.7;

}

}
/*=========================================================
OUR CENTERS PAGE
PART - 2E
CALL TO ACTION
=========================================================*/

.oc-cta-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/*==================================
CTA Wrapper
==================================*/

.oc-cta-wrapper{

    position:relative;

    background:linear-gradient(135deg,#b50000 0%,#d40000 50%,#ff3d3d 100%);

    border-radius:30px;

    padding:70px 60px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(212,0,0,.25);

}

/* Decorative Circles */

.oc-cta-wrapper::before{

    content:"";

    position:absolute;

    width:360px;

    height:360px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-170px;

    top:-170px;

}

.oc-cta-wrapper::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-80px;

    bottom:-80px;

}

/*==================================
Content
==================================*/

.oc-cta-content{

    position:relative;

    z-index:2;

}

.oc-cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    border-radius:50px;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.oc-cta-tag i{

    color:#ffe082;

}

.oc-cta-content h2{

    font-size:46px;

    font-weight:800;

    color:#ffffff;

    line-height:1.25;

    margin-bottom:20px;

}

.oc-cta-content h2 span{

    color:#ffe082;

}

.oc-cta-content p{

    color:rgba(255,255,255,.92);

    font-size:17px;

    line-height:1.9;

    max-width:720px;

    margin-bottom:35px;

}

/*==================================
Highlights
==================================*/

.oc-cta-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:18px 35px;

}

.oc-highlight-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ffffff;

    font-weight:600;

}

.oc-highlight-item i{

    color:#ffe082;

    font-size:18px;

}

/*==================================
Buttons
==================================*/

.oc-cta-buttons{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:20px;

    height:100%;

    position:relative;

    z-index:2;

}

/* Primary Button */

.oc-btn-primary{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:58px;

    background:#ffffff;

    color:#d40000;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.oc-btn-primary:hover{

    background:#111827;

    color:#ffffff;

    transform:translateY(-5px);

}

/* Secondary Button */

.oc-btn-secondary{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:58px;

    border:2px solid rgba(255,255,255,.45);

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:.35s;

}

.oc-btn-secondary:hover{

    background:#ffffff;

    color:#d40000;

    border-color:#ffffff;

    transform:translateY(-5px);

}

/*==================================
Responsive
==================================*/

@media(max-width:1200px){

.oc-cta-content h2{

font-size:40px;

}

}

@media(max-width:991px){

.oc-cta-section{

padding:80px 0;

}

.oc-cta-wrapper{

padding:55px 40px;

}

.oc-cta-buttons{

margin-top:40px;

}

}

@media(max-width:768px){

.oc-cta-section{

padding:70px 0;

}

.oc-cta-wrapper{

padding:45px 30px;

border-radius:22px;

}

.oc-cta-content h2{

font-size:34px;

}

.oc-cta-content p{

font-size:15px;

}

.oc-cta-highlights{

flex-direction:column;

gap:15px;

}

}

@media(max-width:576px){

.oc-cta-section{

padding:60px 0;

}

.oc-cta-wrapper{

padding:35px 20px;

border-radius:18px;

}

.oc-cta-tag{

font-size:12px;

padding:8px 18px;

}

.oc-cta-content h2{

font-size:28px;

}

.oc-cta-content p{

font-size:14px;

line-height:1.8;

}

.oc-btn-primary,
.oc-btn-secondary{

height:52px;

font-size:15px;

}

}