.inner_banner {
    padding: 80px 0 40px;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}

.inner_banner h2 {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.inner_banner h4 {
    color: #df9000 !important;
    font-weight: 600;
    letter-spacing: 2px;
}

.inner_banner .breadcrumb-item.active {
    color: #cccccc;
}

.inner_banner .breadcrumb {
    background: transparent;
    justify-content: left;
    padding: 0;
    margin: 0;
}

.inner_banner .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.inner_banner .breadcrumb-item a {
    color: #df9000;
    text-decoration: none;
    font-weight: 500;
}

.inner_banner .breadcrumb-item.active {
    color: #fff;
}

/* Blog Detail Styles */
.blog_detail_section {
    padding-bottom: 80px;
}

.blog_detail_wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 10px;
}

.blog_detail_img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 6px;
}

.blog_detail_content {
    padding: 20px 0;
}

.blog_detail_meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.blog_detail_meta span i {
    color: #df9000;
    margin-right: 5px;
}

.blog_detail_content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.blog_detail_content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog_detail_content blockquote {
    background: #f9f9f9;
    border-left: 5px solid #df9000;
    padding: 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #333;
}

/* Sidebar Styles */
.sidebar_widget {
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
    position: relative;
}

.sidebar_title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #df9000;
}

.recent_posts_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent_post_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent_post_img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent_post_info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.recent_post_info h5 a {
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.recent_post_info h5 a:hover {
    color: #df9000;
}

.recent_post_info span {
    font-size: 13px;
    color: #888;
}

.category_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category_list li {
    margin-bottom: 12px;
}

.category_list li a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    padding: 5px 0;
}

.category_list li a:hover {
    color: #df9000;
    padding-left: 5px;
}

/* Share Section */
.blog_share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog_share h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.share_links {
    display: flex;
    gap: 10px;
}

.share_links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.share_links a:hover {
    background: #df9000;
    color: #fff;
    transform: translateY(-3px);
}

.tag_cloud a {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    border: 1px solid #eee;
    color: #666;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.tag_cloud a:hover {
    background: #df9000;
    color: #fff;
    border-color: #df9000;
}

/* Gallery Styles */
.gallery_section {
    padding-bottom: 40px;
}

.gallery_grid {
    margin-top: 30px;
}

.gallery_item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 23, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    /*border: 1px solid #df9000;*/
}

.gallery_overlay i {
    font-size: 40px;
    color: #fff;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery_item:hover img {
    transform: scale(1.1);
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_item:hover .gallery_overlay i {
    transform: scale(1);
}

/* About Story Sections */
.about_story_section {
    padding-bottom: 30px;
}

.section_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Oswald-Bold', sans-serif;
}

.about_story_content p.lead_text {
    font-size: 14px;
    color: #df9000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_img_box {
    position: relative;
    padding: 10px;
    background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.about_img_box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.experience_badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #df9000;
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1;
    padding: 8px;
}

.experience_badge span {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.experience_badge p {
    font-size: 12px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.story_label {
    display: table;
    padding: 6px 15px;
    background: linear-gradient(90deg, #df9000, #ffba00);
    color: #000;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Oswald-Bold', sans-serif;
    letter-spacing: 1px;
}

.about_story_content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Oswald-Bold', sans-serif;
}

.about_story_content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
}

.highlight_text {
    font-size: 20px !important;
    font-weight: 500;
    color: #eee !important;
    font-style: italic;
    border-left: 5px solid #df9000;
    padding-left: 25px;
    margin: 30px 0;
}


.contact_section {
    padding-bottom: 80px;
}

.contact_info_grid {
    margin-bottom: 40px;
}

.contact_info_item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.contact_info_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 48, 0.1);
}

.contact_icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 48, 0.1);
    color: #df9000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.contact_info_item:hover .contact_icon {
    background: #df9000;
    color: #fff;
}

.contact_info_item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_info_item p {
    color: #666;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact_form_wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact_form .form-control {
    height: 55px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 15px;
    transition: 0.3s;
}

.contact_form textarea.form-control {
    height: 150px;
}

.contact_form .form-control:focus {
    border-color: #df9000;
    box-shadow: none;
    background: #fff;
}

.contact_btn {
    background: #df9000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.contact_btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
}

.map_container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map_container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Professional Excellence Section Styles */
.professional_excellence_section {
    padding: 20px 0 20px;
    background: #000;
    color: #ffffff;
}

.professional_excellence_section p {
    color: #bbbbbb !important;
}

.intro_content .section_title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff 0%, #df9000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Oswald-Bold', sans-serif;
    display: block;
}

.mb-100 {
    margin-bottom: 100px;
}

.sub_section_title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 25px;
    font-family: 'Oswald-Bold', sans-serif;
    position: relative;
    display: block;
    z-index: 1;
}

.sub_section_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #df9000;
}

.sub_title_center.sub_section_title::after{
    right: 0;
    margin: 0 auto;
}

.cta_inner_content p{
    color: #ffffff;
}

.venture_card {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.venture_card p {
    color: #dddddd !important;
    font-size: 16px;
    line-height: 1.8;
}

.tech_venture .story_label {
    background: linear-gradient(90deg, #df9000, #ffba00);
    color: #000;
}

.estate_venture .story_label {
    background: rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.venture_list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.venture_list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.venture_icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(223, 144, 0, 0.1);
    border: 1px solid rgba(223, 144, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #df9000;
    font-size: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.tech_venture .venture_icon {
    color: #df9000;
}

.estate_venture .venture_icon {
    color: #28a745;
}

.venture_list li:hover .venture_icon {
    background: #df9000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 48, 0.3);
}

.tech_venture .venture_list li:hover .venture_icon {
    background: #df9000;
    box-shadow: 0 10px 20px rgba(223, 144, 0, 0.3);
}

.estate_venture .venture_list li:hover .venture_icon {
    background: #28a745;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.venture_text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 10px;
    font-family: 'Oswald-Regular', sans-serif;
}

.venture_text p {
    font-size: 14px;
    color: #cccccc !important;
    line-height: 1.6;
    margin: 0;
}

.venture_img_wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.venture_img_wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.venture_img_wrapper:hover img {
    transform: scale(1.1);
}

.img_overlay_accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: 0.4s;
}

.venture_img_wrapper:hover .img_overlay_accent {
    opacity: 0.4;
}

.partner_cta {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border-radius: 35px;
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.partner_cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.cta_inner_box p {
    font-size: 20px;
    color: #ccc;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .professional_excellence_section {
        padding: 30px 0 0px;
    }
    .intro_content .section_title {
        font-size: 32px;
    }
    .sub_section_title {
        font-size: 26px;
    }
    .venture_card {
        padding: 0;
        margin-bottom: 50px;
    }
    .mb-100 {
        margin-bottom: 60px;
    }
    .venture_img_wrapper img {
        height: 380px;
    }
    .partner_cta {
        padding: 50px 25px;
    }
    .cta_inner_box p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .venture_list li {
        flex-direction: column;
        gap: 15px;
    }
    .venture_icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* Philanthropy & Impact Section Styles */
.philanthropy_impact_section {
    padding: 20px 0;
    background: #000;
}

.impact_lead {
    font-size: 24px;
    color: #ffffff !important;
    font-style: italic;
    border-left: 5px solid #df9000;
    padding-left: 30px;
    margin: 40px auto;
    max-width: 950px;
    line-height: 1.8;
}

.impact_card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.impact_card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(223, 144, 0, 0.2);
    transform: translateY(-5px);
}

.impact_card p {
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.impact_highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight_item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight_item i {
    color: #df9000;
    font-size: 20px;
}

.highlight_item span {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
}

.impact_img_wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.impact_img_wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.impact_img_wrapper:hover img {
    transform: scale(1.08);
}

.school_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.school_box {
    background: rgba(255,255,255,0.03);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.school_box:hover {
    background: rgba(223, 144, 0, 0.08);
    border-color: rgba(223, 144, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.school_box i {
    font-size: 36px;
    color: #df9000;
    margin-bottom: 20px;
}

.school_box h4 {
    color: #ffffff !important;
    font-size: 17px;
    margin: 0;
    font-family: 'Oswald-Regular', sans-serif;
}

.vision_cta {
    background: linear-gradient(135deg, #111111 0%, #050505 100%);
    padding: 40px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    margin-top: 40px;
}

.vision_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vision_item {
    padding: 10px;
    text-align: center;
}

.v_icon {
    width: 80px;
    height: 80px;
    background: rgba(223, 144, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #df9000;
    font-size: 30px;
    border: 1px solid rgba(223, 144, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision_item:hover .v_icon {
    background: #df9000;
    color: #000;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(223, 144, 0, 0.4);
}

.vision_item h4 {
    color: #ffffff !important;
    font-size: 19px;
    margin-bottom: 15px;
    font-family: 'Oswald-Regular', sans-serif;
}

.vision_item p {
    color: #aaaaaa !important;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .vision_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .school_grid {
        grid-template-columns: 1fr;
    }
    .impact_img_wrapper img {
        height: 380px;
    }
    .vision_cta {
        padding: 30px 20px;
    }
    .impact_lead {
        font-size: 16px;
        padding-left: 20px;
        margin: 30px auto 20px;
    }
}

/* Awards & Recognition Section Styles */
.awards_recognition_section {
    padding: 40px 0;
    background: #000;
}

.category_title {
    font-size: 28px;
    color: #ffffff !important;
    font-family: 'Oswald-Bold', sans-serif;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: table;
}

.category_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #df9000;
}

.award_description_box {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid #df9000;
    margin: 20px 0 50px;
}

.award_description_box p {
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.award_item_card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award_item_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 144, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: 0.4s;
}

.award_item_card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 144, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.award_item_card:hover::before {
    opacity: 1;
}

.award_year {
    font-size: 12px;
    font-weight: 800;
    color: #000;
    background: #df9000;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.award_content h4 {
    color: #ffffff !important;
    font-family: 'Oswald-Bold', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.issuer {
    display: block;
    color: #df9000 !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award_content p {
    color: #aaaaaa !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.award_item_card.highlight_gold {
    border-color: rgba(223, 144, 0, 0.4);
    background: rgba(223, 144, 0, 0.05);
}

.philosophy_box {
    background: linear-gradient(135deg, #111111 0%, #050505 100%);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.quote_icon {
    font-size: 40px;
    color: #df9000 !important;
    margin-bottom: 25px;
    opacity: 0.5;
}

.philosophy_box h3 {
    color: #ffffff !important;
    font-size: 26px;
    font-family: 'Oswald-Bold', sans-serif;
    margin-bottom: 25px;
    line-height: 1.4;
}

.philosophy_box p {
    color: #aaaaaa !important;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.award_img_thumb {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}

.award_img_thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.6s;
}

.award_img_thumb:hover {
    transform: scale(1.05);
    border-color: #df9000;
}

.award_img_thumb:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .philosophy_box h3 {
        font-size: 22px;
    }
    .award_img_thumb img {
        height: 200px;
    }
}

.sub_section_lead {
    font-size: 24px;
    color: #df9000 !important;
    font-family: 'Oswald-Regular', sans-serif;
    margin-bottom: 20px;
}

