/*------------about-----------*/
    /* --- Styles for the New Premium Sections --- */
    .bg-cream {
        background-color: #fdfbf7;
    }
    
    .section-title-center {
        text-align: center;
        margin-bottom: 55px;
    }
    
    .section-title-center span {
        color: #D3A550;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .section-title-center h2 {
        font-size: 38px;
        font-weight: 700;
        color: #19273f;
        margin: 0;
    }

    /* Expertise Cards */
    .expertise-card {
        background: #fff;
        padding: 45px 35px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid rgba(211, 165, 80, 0.1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .expertise-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: #D3A550;
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .expertise-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.06);
        border-color: transparent;
    }
    
    .expertise-card:hover::before {
        transform: scaleX(1);
    }
    
    .expertise-icon {
        width: 85px;
        height: 85px;
        background: #fdfbf7;
        color: #D3A550;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        margin-bottom: 25px;
        border: 1px dashed #D3A550;
        transition: all 0.4s ease;
    }
    
    .expertise-card:hover .expertise-icon {
        background: #19273f;
        border-color: #19273f;
    }
    
    .expertise-card h4 {
        font-size: 22px;
        color: #19273f;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .expertise-card p {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    /* Process Steps */
    .process-area {
        padding: 50px 0;
        background: #ffffff;
    }
    
    .process-step {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 20px;
    }
    
    .process-icon-wrap {
        width: 110px;
        height: 110px;
        background: #19273f;
        color: #D3A550;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        margin-bottom: 30px;
        position: relative;
        box-shadow: 0 15px 30px rgba(25, 39, 63, 0.15);
        transition: all 0.3s ease;
    }
    
    .process-step:hover .process-icon-wrap {
        transform: scale(1.05);
        background: #D3A550;
        color: #ffffff;
    }
    
    .step-number {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        background: #D3A550;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        border: 4px solid #fff;
    }
    
    .process-step:hover .step-number {
        background: #19273f;
    }
    
    .process-step h4 {
        font-size: 22px;
        color: #19273f;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .process-step p {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
    }
    
    @media (min-width: 992px) {
        .process-step::after {
            content: '';
            position: absolute;
            top: 55px;
            right: -50%;
            width: 100%;
            height: 2px;
            border-top: 2px dashed rgba(211, 165, 80, 0.4);
            z-index: -1;
        }
        .process-step:last-child::after {
            display: none;
        }
    }

    /* CTA Banner */
    .cta-premium-banner {
        background: linear-gradient(135deg, #19273f 0%, #111a2a 100%);
        padding: 80px 0;
        border-radius: 20px;
        text-align: center;
        margin: 20px 0 50px;
        box-shadow: 0 20px 40px rgba(25, 39, 63, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .cta-premium-banner::before {
        content: '\f1d8'; /* Star/Moon icon code if using FontAwesome */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        font-size: 250px;
        color: rgba(211, 165, 80, 0.03);
        top: -50px;
        left: -50px;
        transform: rotate(-15deg);
    }
    
    .cta-premium-banner h2 {
        color: #ffffff;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .cta-premium-banner p {
        color: #d1d5db;
        font-size: 18px;
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-gold-solid {
        background: #D3A550;
        color: #19273f;
        padding: 16px 45px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-gold-solid:hover {
        background: #ffffff;
        color: #19273f;
        transform: translateY(-2px);
    }
/*------------------------------contact---------*/
    :root {
        --astro-navy: #19273f; /* Deep blue from footer */
        --astro-gold: #D3A550; /* Gold from logo and headings */
        --astro-light: #fdfbf7;
    }

    /* --- Premium Button --- */
    .theme-btn {
        position: relative;
        z-index: 2;
        overflow: hidden;
        vertical-align: middle;
        border: none;
        text-align: center;
        border-radius: 50px;
        background: var(--astro-navy);
        font-family: Poppins, sans-serif;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        padding: 12px 12px 12px 35px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(25, 39, 63, 0.2);
    }

    .theme-btn i {
        margin-left: 15px;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--astro-gold);
        color: #fff;
        transition: all 0.3s ease;
    }

    .theme-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(25, 39, 63, 0.3);
        color: var(--astro-gold);
    }

    .theme-btn:hover i {
        background: #fff;
        color: var(--astro-navy);
    }

    /* --- Premium Contact Section --- */
    .contact-section {
        background-color: var(--astro-light); 
    }

    .premium-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
        padding: 50px 30px;
        height: 100%;
        border: 1px solid rgba(211, 165, 80, 0.1);
    }

    .section-title h6 {
        color: var(--astro-gold);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--astro-navy);
        margin-bottom: 25px;
    }

    /* --- High-End Form Inputs --- */
    .premium-input-group {
        position: relative;
        margin-bottom: 25px;
    }

    .premium-input-group i {
        position: absolute;
        left: 20px;
        top: 18px;
        color: var(--astro-navy);
        font-size: 16px;
        opacity: 0.5;
        transition: 0.3s;
        z-index: 5;
    }

    .premium-input {
        width: 100%;
        padding: 16px 20px 16px 55px;
        background: #f8f9fc;
        border: 1px solid #edf0f5;
        border-radius: 12px;
        font-size: 15px;
        color: #333;
        transition: all 0.3s ease;
    }

    textarea.premium-input {
        padding-top: 20px;
    }

    .premium-input:focus {
        background: #ffffff;
        border-color: var(--astro-gold);
        box-shadow: 0 0 0 4px rgba(211, 165, 80, 0.1);
        outline: none;
    }

    .premium-input:focus + i, 
    .premium-input-group:focus-within i {
        opacity: 1;
        color: var(--astro-gold);
    }

    /* --- Interactive Contact Info Cards --- */
    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        padding: 25px;
        border-radius: 16px;
        background: #f8f9fc;
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

    .info-item:hover {
        background: #ffffff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transform: translateY(-5px);
        border-color: rgba(211, 165, 80, 0.2);
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: var(--astro-navy);
        color: var(--astro-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 20px;
        flex-shrink: 0;
        box-shadow: 0 10px 20px rgba(25, 39, 63, 0.15);
    }

    .info-content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #777;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-content a, .info-content p {
        color: var(--astro-navy);
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        transition: color 0.3s;
    }

    .info-content a:hover {
        color: var(--astro-gold);
    }

    /* Custom Alert Styling */
    .premium-alert {
        border-radius: 12px;
        border: none;
        padding: 15px 20px;
        font-weight: 500;
    }
    
    /* Elegant Banner Overlay */
    .astrology-banner {
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 120px 0;
        z-index: 1;
    }
    
    .astrology-banner::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(25, 39, 63, 0.85); /* Navy overlay */
        z-index: -1;
    }
    
    .astrology-banner h2 {
        color: var(--astro-gold);
        font-weight: 700;
        font-size: 42px;
        margin-bottom: 10px;
    }
    
    .astrology-banner p, .astrology-banner a {
        color: #ffffff;
        font-size: 16px;
        text-decoration: none;
    }
    
    .astrology-banner i {
        color: var(--astro-gold);
        margin: 0 8px;
    }
/*-----------------faq----------------------*/
.astro-faq-wrapper .accordion-item {
    border: 1px solid #f0e9df; 
    border-radius: 12px;
    margin-bottom: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); 
    overflow: hidden;
}

.astro-faq-wrapper .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #19273f; 
    background-color: #ffffff;
    padding: 22px 30px;
    box-shadow: none !important;
}

/* Active State Colors */
.astro-faq-wrapper .accordion-button:not(.collapsed) {
    background-color: #fffcf5; 
    color: #b8860b; 
    border-bottom: 1px solid #f0e9df;
}

/* 1. Hide the default Bootstrap arrow */
.astro-faq-wrapper .accordion-button::after {
    display: none !important; 
}

/* 2. Style the custom FontAwesome icon box */
.astro-faq-wrapper .custom-fa-box {
    background-color: #f8f9fc;
    color: #b8860b;
    border-radius: 6px; 
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* 3. Change box color when active */
.astro-faq-wrapper .accordion-button:not(.collapsed) .custom-fa-box {
    background-color: #ffc107; 
    color: #ffffff;
}

/* 4. Toggle the FontAwesome icons based on Bootstrap's native 'collapsed' class */
.astro-faq-wrapper .accordion-button .fa-chevron-up { display: none; }
.astro-faq-wrapper .accordion-button:not(.collapsed) .fa-chevron-up { display: block; }
.astro-faq-wrapper .accordion-button:not(.collapsed) .fa-chevron-down { display: none; }

.astro-faq-wrapper .accordion-body {
    padding: 30px;
    color: #555b66;
    line-height: 1.8;
    font-size: 16px;
    background: #ffffff;
}

/*--------------harshidhi----*/
   	.harsiddhi-section {
   		background:
   			linear-gradient(135deg,
   				#fffaf2 0%,
   				#fff5e6 100%);

   		position: relative;
   		overflow: hidden;
   	}

   	/* Gallery */

   	.harsiddhi-gallery {
   		position: relative;
   	}

   	.harsiddhi-main-img img {
   		width: 100%;
   		height: 500px;
   		object-fit: cover;

   		border-radius: 28px;

   		box-shadow:
   			0 20px 50px rgba(0, 0, 0, 0.18);
   	}

   	/* Small Grid */

   	.harsiddhi-small-grid {
   		display: grid;
   		grid-template-columns: 1fr 1fr;
   		gap: 20px;

   		margin-top: 20px;
   	}

   	.small-img img {
   		width: 100%;
   		height: 220px;
   		object-fit: cover;

   		border-radius: 22px;

   		box-shadow:
   			0 15px 35px rgba(0, 0, 0, 0.15);

   		transition: 0.4s ease;
   	}

   	.small-img img:hover,
   	.harsiddhi-main-img img:hover {
   		transform: translateY(-6px);
   	}

   	/* Content */

   	.harsiddhi-content h2 {
   		font-size: 31px;
   		line-height: 46px;
   		color: #102543;
   		margin-bottom: 25px;
   	}

   	.harsiddhi-content p {
   		font-size: 16px;
   		line-height: 34px;
   		color: #555;
   		margin-bottom: 20px;
   	}

   	/* Points */

   	.harsiddhi-points {
   		display: flex;
   		flex-wrap: wrap;
   		gap: 18px;

   		margin-top: 30px;
   	}

   	.harsiddhi-point {
   		display: flex;
   		align-items: center;
   		gap: 12px;

   		padding: 14px 22px;

   		border-radius: 60px;

   		background: #ffffff;

   		box-shadow:
   			0 10px 25px rgba(0, 0, 0, 0.08);
   	}

   	.harsiddhi-point i {
   		color: #D4A437;
   		font-size: 18px;
   	}

   	.harsiddhi-point span {
   		font-size: 15px;
   		font-weight: 600;
   		color: #102543;
   	}

   	/* Mobile */

   	@media(max-width: 767px) {

   		.harsiddhi-content h2 {
   			font-size: 34px;
   			line-height: 48px;
   		}

   		.harsiddhi-main-img img {
   			height: 350px;
   		}

   		.small-img img {
   			height: 160px;
   		}

   	}
   	
/* Responsive Design */

	.about-image {
   		position: relative;
   	}

   	.about-image img {
   		width: 100%;
   		max-width: 430px;
   		border-radius: 25px;
   		border: 4px solid rgba(212, 164, 55, 0.2);
   		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
   	}

   	/* Experience Badge */

   	.experience-badge {
   		position: absolute;
   		bottom: 20px;
   		right: 20px;
   		background: linear-gradient(135deg,
   				#0F2A4A 0%,
   				#1C3760 45%,
   				#D4A437 100%);

   		color: #fff;
   		padding: 12px 20px;
   		border-radius: 50px;
   		font-size: 14px;
   		font-weight: 600;
   		letter-spacing: 0.5px;
   		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
   	}

   	/* Highlight Boxes */

   	.about-highlights {
   		display: flex;
   		flex-wrap: wrap;
   		gap: 15px;
   		margin-top: 25px;
   	}

   	.highlight-box {
   		display: flex;
   		align-items: center;
   		gap: 10px;
   		padding: 12px 18px;
   		border-radius: 50px;
   		background: rgba(15, 42, 74, 0.08);
   		border: 1px solid rgba(212, 164, 55, 0.2);
   		font-size: 14px;
   		font-weight: 500;
   		color: #1B3558;
   	}

   	.highlight-box i {
   		color: #D4A437;
   		font-size: 16px;
   	}
   	
   	
   		/* Astrology Service Card */

   	.services {
   		background: linear-gradient(135deg,
   				#081726 0%,
   				#102543 50%,
   				#1B2E4B 100%);
   	}

   	.astro-service-card {
   		background: #ffffff;
   		border-radius: 20px;
   		overflow: hidden;
   		transition: 0.4s ease;
   		height: 100%;
   		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
   	}

   	.astro-service-card:hover {
   		transform: translateY(-10px);
   		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
   	}

   	/* Service Image */

   	.service-image {
   		overflow: hidden;
   	}

   	.service-image img {
   		width: 100%;
   		height: 100%;
   		object-fit: cover;
   		transition: 0.5s ease;
   	}

   	.astro-service-card:hover .service-image img {
   		transform: scale(1.08);
   	}

   	/* Content */

   	.ser-content {
   		padding: 25px;
   	}

   	.ser-content h3 {
   		font-size: 22px;
   		margin-bottom: 15px;
   		color: #102543;
   		font-weight: 700;
   	}

   	.ser-content p {
   		font-size: 15px;
   		line-height: 28px;
   		color: #666;
   		margin-bottom: 22px;
   	}

   	/* Button */

   	.service-btn {
   		display: inline-block;
   		padding: 12px 28px;

   		border-radius: 50px;
   		text-decoration: none;

   		font-size: 14px;
   		font-weight: 600;
   		letter-spacing: 1px;
   		text-transform: uppercase;

   		color: #fff;

   		background: linear-gradient(135deg,
   				#102543 0%,
   				#1C3760 45%,
   				#D4A437 100%);

   		transition: 0.4s ease;
   	}

   	.service-btn:hover {
   		color: #fff;
   		transform: translateY(-2px);
   		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
   	}

.main-header{
	position: relative;
	width: 100%;
	z-index: 999;
	transition: 0.4s ease;
}

/* Sticky Active */

.main-header.sticky-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #fff;
	box-shadow:0 10px 30px rgba(0,0,0,0.12);
	animation: headerSticky 0.5s ease;
}


 /* Premium Blog-Style Layout Adjustments */
    .premium-post-inner {
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.03);
        border: 1px solid rgba(211, 165, 80, 0.1);
    }
    
    .post-image img {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(25, 39, 63, 0.08);
        width: 100%;
        margin-bottom: 35px;
    }

    .entry-content p {
        color: #555b66;
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .entry-content h2, .entry-content h3 {
        color: #19273f;
        font-weight: 700;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .entry-content ul {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    .entry-content li {
        color: #555b66;
        font-size: 17px;
        margin-bottom: 10px;
    }

    /* Sidebar Premium Widget */
    .premium-widget {
        background: #fdfbf7;
        padding: 35px;
        border-radius: 16px;
        border: 1px solid rgba(211, 165, 80, 0.2);
        margin-bottom: 40px;
    }

    .premium-widget .widget-title {
        font-size: 22px;
        font-weight: 700;
        color: #19273f;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .premium-widget .widget-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #D3A550;
        border-radius: 5px;
    }

    .popular-posts-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .popular-posts-widget li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .popular-posts-widget li a:hover h4 {
        color: #D3A550;
    }

    .ppcontent h4 {
        font-size: 16px;
        color: #19273f;
        font-weight: 600;
        margin: 0 0 5px 0;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .ppimage img {
        width: 75px;
        height: 75px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    /* Premium Contact Widget */
    .sidebar-contact-premium {
        background: linear-gradient(135deg, #19273f 0%, #111a2a 100%);
        padding: 40px 30px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(25, 39, 63, 0.2);
    }
    
    /* Sticky Sidebar Fix */
    .sticky-sidebar-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 120px; /* Adjust this number if you have a fixed header */
        z-index: 10;
        transition: all 0.3s ease;
    }

    .sidebar-contact-premium h3 {
        color: #D3A550;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .sidebar-contact-premium p {
        color: #e5e7eb;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .btn-gold-outline {
        background: transparent;
        color: #D3A550;
        border: 2px solid #D3A550;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .btn-gold-outline:hover {
        background: #D3A550;
        color: #19273f;
    }

    /* Tags & Share */
    .bt-tag-share-wrap {
        border-top: 1px solid #edf0f5;
        padding-top: 30px;
        margin-top: 40px;
    }

    .bt-social-share a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #fdfbf7;
        color: #19273f;
        border-radius: 50%;
        margin-left: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #edf0f5;
    }

    .bt-social-share a:hover {
        background: #D3A550;
        color: #fff;
        border-color: #D3A550;
        transform: translateY(-3px);
    }

/* Animation */

@keyframes headerSticky{

	0%{
		transform: translateY(-100%);
	}

	100%{
		transform: translateY(0);
	}

}

@media only screen and (max-width:1600px) { 
	

}

@media only screen and (max-width:1400px) { 
	

}

@media only screen and (max-width:1366px) { 
	.header-top {
		padding: 15px 0;
	}
	.main-header {
		margin: 0;
	}
	.bis_himage {
		left: 52%;
	}
	.bis_himage img {
		width: 166px;
	}
	.slider-content h1 {
		font-size: 50px;
	}
	.slider_shape {
		top: 56px;
	}

	.slider_img {
		top: 17px;
	}	

	.scholar_img {
		width: 230px;
		height: 230px;
		border: 7px dashed rgba(245,197,11,0.5);

	}

	.single-pillar p{
		margin-bottom: 14px;
	}
	.pl_btm {
		margin: 0 0px;
	}
	.woocommerce-cart-form .product-name {
		margin-left: 0;
	}
	.shop.checkout .checkout-form h2 {
		margin-bottom: 25px;
	}

	.shop.checkout .form .form-group {
		margin-bottom: 0;
	}
	.shop.checkout .form .form-group label, .register label, .login label {
		margin-bottom: 10px;
	}
}
@media only screen and (max-width:1336px) { 
		.bis_himage {
		 display: none;
		}
}

@media only screen and (max-width:1199px) {
	.header-2 .widget_menu_icon{
		display: block;
	}
	.main-header {
		padding: 15px 30px;
	}
	.bis_himage,
	.hslider_image,
	.slider_arrows{
		display: none;
	}
	.slider-content {
		padding: 100px 0 220px;
		text-align: center;
	}
	.prayer-time-box{
		max-width: 100%;
	}
	.course-sidebar{
		margin-left: 0;
	}
	.footer-logo{
		
	}
	.footer_social{
		margin-top: 45px;
	}
}

@media only screen and (max-width:1024px) { }

@media(max-width:999px){
    .header-top{
		display: none;
	}
	.slider_subtitle{
	    display: none;
	}
	
	.slider-content {
		padding:30px;
	}
}

@media only screen and (max-width: 991px){
	.header-top{
		padding: 28px 0;
	}
	.benefits ul li{
		width: 100%;
	}
	.header-top ul li {
		display: block;
		margin-bottom: 9px;
	}
	.header-top ul li:last-child {
		margin-bottom: 0;
	}
	.header-top .social_icons a {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	.header-top .social_icons a{
		margin: 0 5px;
	}
	.htright{
		margin-top: 10px;
		padding-bottom: 7px;
	}
	.htright .social_icons{
		margin-top: 15px;
	}
		
}

@media only screen and (max-width: 767px){
	.main-header {
		padding: 8px 15px;
	}
	.info-content a{
    font-size: 14px;
     }
	.section-padding {
    padding: 30px 0;
     }
	.search_btn{
		display: none;
	}
	.section-heading h2 {
		font-size: 25px;
		line-height: 37px;
	}
	.slider-content h1 {
		font-size: 30px;
		line-height: 36px;
	}
	.single-pillar::after{
		background-size: cover;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
	.footer_shapes{
		display: none;
	}
	.cd_tab #nav-tab button {
		margin: 15px 0 15px;
		padding: 5px 19px;
	}
	.cd_curriculum span{
		display: block;
	}
	.cd_cur_right {
		float: left;
		font-size: 15px;
		margin-top: 6px;
	}

	.cd_curriculum ul li {
		padding-bottom: 50px;
		margin-bottom: 15px;

	}
	
	.cart-collaterals{
		padding: 24px;
	}
	.cart-collaterals .shop_table_responsive > div {
		padding: 5px 0;
	}
}
@media only screen and (max-width: 667px){

}
@media only screen and (max-width: 575px){

	
}

@media only screen and (max-width: 448px){
	.social_icons{
		margin-top: 10px;
	}
	
}


