/* --------------- @package sarththeme - Theme Style Sheet  ----------------- */


/* ------------------------------ GENERIC CSS  ------------------------------ */

::-webkit-scrollbar { background: transparent; position: absolute; width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-corner { display: none; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover {background: #e72d44 ; }
:focus { outline: none; }

* {
    font-family: 'Roboto Condensed', 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
    padding:0;
    margin: 0;
}

html {
  scroll-behavior: smooth;
}


@keyframes fadein {	0% { opacity: 0; } 100% { opacity: 1; } }


video {
    width:100%;
    height: auto;
}

img {
    width: 100%;
    height: auto;
}

html, body {
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    color: #999;
    position: relative;
    width: 100%;
    z-index: -10 !important;
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel]
{
    font-size: 14px;
    letter-spacing: 1px;
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid rgba( 0, 0, 0, 0.3 );
    margin: 10px 0;
    background: transparent;
    color: #e72d44;
}

textarea {
    background: transparent;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 20px 0;
    min-width: 100%;
    max-width: 100%;
    border: none;
    border-bottom: 1px solid rgba( 0, 0, 0, 0.3 );
    color: #e72d44;
}

input[type=submit]{
    float: right;
    display:inline-block;
    padding: 10px 30px;
    background: #e72d44;
    color: #fff;
    cursor: pointer;
    border:none;
    font-size: 14px;
    border: 1px solid #e72d44;
}

input[type=submit]:hover {
    background: #fff;
    color: #e72d44;
}

select {
    display: inline-block;
    padding: 5px 10px;
    width: 100%;
    border-color: #ddd;
    margin: 10px 0;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    background: none;
    color: #e72d44;
    height: 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

ul {
    list-style: none;
}

p {
    font-size: 16px;
    margin: 20px 0;
    text-align: justify;
    line-height: 1.7em;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #e72d44;
}

.agni-body {
    display: none;
}


/* --------------------------- Pre Loader --------------------------------*/

.agni-loader {
    z-index: 999;
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #8a1220;
}

.svg-loader {
    display: block;
    position: relative;
    width: 100px;
    height: auto;
    top: calc( 50vh - 100px / 2 );
    margin: auto;
}

.svg-fire {
    display: block;
    position: relative;
    width: 100px;
    height: auto;
    margin: auto;
}


/* --------------------------- Header Section --------------------------------*/

.agni-header {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    z-index: 100;
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
}

.white-back {
    background: #fff;
    box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5 );
}

.header-row {
    display: block;
    position: relative;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: 5px;
}

.agni-site-info {
    display: block;
    position: relative;
    width: 300px;
    height: 100%;
    float: left;
}

.agni-logo {
    display: block;
    position: relative;
    width: 180px;
    height: auto;
    margin: 5px;
}

.agni-title {
    display: block;
    position: relative;
}

.agni-icon {
    display: none;
}

.agni-header-nav {
    display: block;
    position: relative;
    float: right;
    width: calc( 100% - 300px);
    height: 100%;
}

.mobile-menu-icon {
    display: none;
}

.header-nav-bar {
    display: inline-block;
    position: relative;
    float: right;
    right: 10px;
    top: 20px;
}

.header-nav-bar li {
    position: relative;
    float: left;
}

.header-nav-bar li a {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    padding: 5px;
    color: #fff;
}

.header-nav-bar li:hover a {
    color: #e72d44;
}

.color-link a {
    color: #e72d44 !important;
}

.underline {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    width: 0;
    height: 1px;
    background: #e72d44;
    margin-top: 0;
    opacity: 0;
    margin: auto;
}

.header-nav-bar li:hover .underline {
    width: 95%;
    opacity: 1;
}

/* ----------------------- Blogs, Pages & Sections ---------------------------*/

.agni-main {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.main-row {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #eee;
}

.agni-go-back {
    display: block;
    position: relative;
    max-width: 600px;
    height: auto;
    overflow: auto;
    margin: 10px auto;
}

.post-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 80px;
}

.post-container-row  {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.agni-post-links {
    display: block;
    position: relative;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
}

.prev-posts, .next-posts {
    display: inline-block;
    position: relative;
    padding: 5px 10px;
    background: #e72d44;
    color: #fff;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    border-radius: 3px;
}

.prev-posts i, .next-posts i{
    color: #fff;
}

.prev-posts {
    text-align: left;
}

.next-posts {
    text-align: right;
}

.prev-posts:hover, .next-posts:hover {
    background: #fff;
    color: #e72d44;
}

.prev-posts:hover i, .next-posts:hover i{
    color: #e72d44;
}


#agni-post {
    display: block;
    position: relative;
    max-width: 500px;
    height: auto;
    overflow: auto;
    margin: 20px auto;
    background: #fff;
    border-radius: 3px;
}

.post-row {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: auto;
}

.entry-header {
    display: block;
    position: relative;
    width: calc( 100% - 40px);
    padding: 20px;
    padding-bottom: 0;
}

.entry-content {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: auto;
}

.post-content {
    display: block;
    position: relative;
    width: calc( 100% - 40px);
    padding: 0 20px;
    margin: 10px 0;
    overflow: auto;
}

.post-content p {
    font-size: 14px;
    line-height: 1.5em;
    margin: 10px 0 !important;
}


.read-more-post {
    display: block;
    position: relative;
    width: 100px;
    height: auto;
    padding: 5px 0;
    color: #e72d44;
    border: 1px solid #e72d44;
    background: #fff;
    margin: 10px auto;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 15px;
    overflow: auto;
    font-size: 12px;
}

.read-more-post:hover {
    background: #e72d44;
    color: #fff;
    border: 1px solid transparent;
}

.blog-post-image {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.entry-footer {
    display: block;
    position: relative;
}

.post-date {
    display: block;
    position: relative;
    margin: 10px 0;
    text-align: center;
}

.agni-page-section {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.page-section-row {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.section-content {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
}

.page-title {
    text-align: center;
    color: #e72d44;
}

.page-image {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 150px;
    border: 4px solid #aaa;
    margin: 30px auto;
    overflow: hidden;
}

.page-content {
    max-width: 1000px;
    margin: 20px auto;
}

/*------------------------------------------------------*/
/* Home Page */

#home {
    background: #000;
}

#home .page-section-row {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;
}

.sun-animation {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sky {
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, #000, #6666CC, #ED6F8E, #F39A80, #FAD2BE);
    animation: skyColor 60s infinite linear;
}

@keyframes skyColor {
	0% { filter: brightness(0); top: 0; height: 350vh;}
	20% { filter: brightness(1);}
	35% { top: -50vh; height: 130vh;}
	50% { top: -50vh; height: 130vh;}
	65% { top: -50vh; height: 130vh;}
	80% { filter: brightness(1);}
	100% { filter: brightness(0); top: 0; height: 350vh;}
}


.sun {
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    top: 100%;
    left: 45%;
    margin: 0 auto;
    background: #fff;
    border-radius: 70px;
    box-shadow: 0 0 50px yellow;
    animation: linear;
    animation-name: sun;
    animation-duration: 60s ;
    animation-iteration-count: infinite;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
}

@keyframes sun {
	0% { background: red; box-shadow: 0 0 25px darkred; top: 80vh; left: 20%; }
	5% { background: darkorange; box-shadow: 0 0 25px red; }
	15% { background: orange; box-shadow: 0 0 25px red; }
	25% { background: white; box-shadow: 0 0 25px orange; }
	50% { background: white; box-shadow: 0 0 25px yellow; top: -20vh; left: 45%; }
	75% { background: white; box-shadow: 0 0 25px orange; }
	85% { background: orange; box-shadow: 0 0 25px red; }
	95% { background: darkorange; box-shadow: 0 0 25px red; }
	100% { background: red; box-shadow: 0 0 25px darkred; top: 80vh; left: 80%; }
}

.left-cloud {
    display: block;
    position: absolute;
    top: 50%;
    left: 15%;
    width: 200px;
    height: auto;
    animation: linear;
    animation-name: left-clouds;
    animation-duration: 60s ;
    animation-iteration-count: infinite;
}

@keyframes left-clouds {
	0% { left: 30%; filter: brightness(0); }
	25% { filter: brightness(1); }
	50% { filter: brightness(1.5); }
	75% { filter: brightness(1); }
	100% { left: 15%; filter: brightness(0); }
}

.right-cloud {
    display: block;
    position: absolute;
    top: 40%;
    right: 15%;
    width: 300px;
    height: auto;
    animation: linear;
    animation-name: right-clouds;
    animation-duration: 60s ;
    animation-iteration-count: infinite;
}


@keyframes right-clouds {
	0% { right: 5%; filter: brightness(0); }
	35% { filter: brightness(1); }
	50% { filter: brightness(1.5); }
	65% { filter: brightness(1); }
	100% { right: 20%; filter: brightness(0); }
}

.fg-1, .fg-2, .fg-3, .fg-4, .fg-5  {
    display: block;
    position: absolute;
    left: -40%;
    bottom: -50%;
    width: 200%;
    height: 100vh;
}

.fg-1 { animation: fg1 60s infinite; }
.fg-2 { animation: fg2 60s infinite; }
.fg-3 { animation: fg3 60s infinite; }
.fg-4 { animation: fg4 60s infinite; }
.fg-5 { animation: fg5 60s infinite; }

@keyframes fg1 { 0% { filter:brightness(0); left: -40%; } 30% { filter:brightness(1); } 50% { filter:brightness(1.2); } 85% { filter:brightness(1); } 100% { filter:brightness(0); left: -50%; } }
@keyframes fg2 { 0% { filter:brightness(0); left: -40%; } 35% { filter:brightness(1); } 50% { filter:brightness(1.2); } 85% { filter:brightness(1); } 100% { filter:brightness(0); left: -60%; } }
@keyframes fg3 { 0% { filter:brightness(0); left: -40%; } 40% { filter:brightness(1); } 50% { filter:brightness(1.2); } 85% { filter:brightness(1); } 100% { filter:brightness(0); left: -70%; } }
@keyframes fg4 { 0% { filter:brightness(0); left: -40%; } 45% { filter:brightness(1); } 50% { filter:brightness(1.2); } 85% { filter:brightness(1); } 100% { filter:brightness(0); left: -80%; } }
@keyframes fg5 { 0% { filter:brightness(0); left: -40%; } 50% { filter:brightness(1); } 50% { filter:brightness(1.2); } 85% { filter:brightness(1); } 100% { filter:brightness(0); left: -90%; } }



.morning-prayer {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    bottom: 10%;
    font-size: 25px;
    text-shadow: 0 0 5px #000;
    color: #fff;
    font-family: serif;
    font-style: italic;
    font-weight: 300;
    animation: morning 60s infinite;
}

@keyframes morning {
	0% { opacity: 0; }
	13% { opacity: 0; }
	15% { opacity: 1; }
	35% { opacity: 1; }
	37% { opacity: 0; }
	100% { opacity: 0;	}
}

.evening-prayer {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    bottom: 10%;
    font-size: 25px;
    text-shadow: 0 0 5px #000;
    color: #fff;
    font-family: serif;
    font-style: italic;
    font-weight: 300;
    animation: evening 60s infinite;
}

@keyframes evening {
	0% { opacity: 0; }
	68% { opacity: 0; }
	70% { opacity: 1; }
	93% { opacity: 1; }
	95% { opacity: 0; }
	100% { opacity: 0;	}
}

.agni-hotra {
    display: block;
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.sunrise {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
    animation: morning 60s infinite;
    color: #fff;
}

.sunset {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
    animation: evening 60s infinite;
    color: #fff;
}




/*------------------------------------------------------*/
/* About Page */

#about {
    background: #e72d44;
    overflow: auto;
}

#about .page-section-row {
    overflow: auto;
}

#about .section-content {
    width: 70%;
    overflow: auto;
}

#about .page-title {
    color: #fff;
    margin: 20px;
}

#about .page-image {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 150px;
    border: 4px solid #aaa;
    margin: 30px auto;
}

#about .page-image img {
    border-radius: 150px;
}

.image-name {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

#about .page-content {
    display: block;
    position: relative;
    color: #fff;
    max-width: 800px;
    margin: auto;
    padding: 5px 0;
}

.agni-read-more {
    display: block;
    width: 150px;
    position: relative;
    background-color: #fff;
    text-align: center;
    color: #e72d44;
    padding: 10px 0;
    margin: 20px auto;
    border: 1px solid transparent;
}

.agni-read-more:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

/*------------------------------------------------------*/
/* Agnihotra Page */

#agnihotra {
    background: #fff;
}

#agnihotra .page-title {
    color: #e72d44;
    margin: 20px;
}

.agni-accordion {
    -webkit-transition: background-color 320ms ease;
    -moz-transition: background-color 320ms ease;
    -ms-transition: background-color 320ms ease;
    -o-transition: background-color 320ms ease;
    transition: background-color 320ms ease;
    display: block;
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    background: #f2f2f2;
    height: auto;
}

.set {
    display: block;
    position: relative;
    width: calc(100% - 2px);
    height: auto;
    border: 1px solid #aaa;
    margin-top: -1px;
}

.set-content {
    -webkit-transition: border-color 320ms ease;
    -moz-transition: border-color 320ms ease;
    -ms-transition: border-color 320ms ease;
    -o-transition: border-color 320ms ease;
    transition: border-color 320ms ease;
    display: none;
    width: calc( 100% - 22px);
    height: auto;
    padding: 10px;
    margin: 0 auto;
    overflow: auto;
    background: #f2f2f2;
    border-top: 0;
}

.set-title {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    padding: 10px;
    background: #f2f2f2;
}

.set .active {
    background: #fff;
    color: #e72d44;
    font-weight: 400;
    border-bottom: 0;
}

.minus {
    display: none;
    position: absolute;
    float: right;
    right: 3px;
    top: 0;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-family: verdana;
    line-height: 1em;
}

.plus {
    display: block;
    position: absolute;
    float: right;
    right: 0;
    top: 0;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-family: verdana;
    line-height: 1em;
}

.set-image {
    display: block;
    position: relative;
    float: left;
    width: 250px;
    height: 250px;
    margin: 20px;
}

.set-text {
    display: block;
    position: relative;
    float: right;
    width: calc( 100% - 330px);
    height: auto;
    margin: 20px;
}

.set-text h4 {
    color: #e72d44;
}


/*------------------------------------------------------*/
/* Products Page */

#products {
    background: #e72d44;
}

#products .page-title {
    color: #fff;
    margin: 20px;
}

#products .page-content {
    display: block;
    position: relative;
    max-width: 960px;
    margin: 20px auto;
    height: auto;
    overflow: auto;
    margin: 0 auto;
}

#products .page-content figure{
    display: inline-block;
    position: relative;
    float: left;
    margin: 20px;
}

#products .page-content figcaption {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}

/*------------------------------------------------------*/
/* Order Now Page */

#order {
    background: #fff;
}

#order .page-title {
    color: #e72d44;
}

#order .page-content {
    display: block;
    position: relative;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
}



/*------------------------------------------------------*/
/* Why Yadniya? Page */

#yadniya {
    background: #e72d44;
}

#yadniya .page-title {
    display: block;
    position: relative;
    color: #fff;
    margin: 20px 0;
}

#yadniya .page-content {
    display: block;
    position: relative;
    max-width: 800px;
    color: #fff;
    margin: 0 auto;
}

/*------------------------------------------------------*/
/* Contact Us Page */

#contact {
    background: #fff;
}

#contact .section-content {
    display: block;
    position: relative;
    max-width: 800px;
}

#contact .page-title {
    color: #e72d44;
}


/*------------------- Footer Section --------------------------*/

.agni-footer {
    display: block;
    position: relative;
    width: 100%;
    min-height: 80px;
    background: #fff;
}

.footer-top {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0;
    text-align: center;
    background: #e72d44;
    color: #fff;
}

.footer-top h2{
    margin-bottom: 10px;
}

.footer-top p {
    text-align: center;
    margin: 0;
}

.footer-bot {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 0 5px rgba( 0, 0, 0, 0.7 );
}


#scroll-top {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    position: fixed;
    width: 30px;
    height: 30px;
    right: 40px;
    bottom: 40px;
    color: #e72d44;
    border: 0;
    text-align: center;
    line-height: 2em;
    cursor: pointer;
    background: #fff;
    display: none;
}

#scroll-top:hover {
    background: #e72d44;
    color: #fff;
}

.agni-fullscreen {
    z-index: 50;
    display: inline-block;
    position: fixed;
    left: 15px;
    bottom: 15px;
    cursor: pointer;
}

#btnFullscreen {
    padding: 5px;
}

.agni-fullscreen:hover #btnFullscreen {
    background: rgba( 0, 0, 0, 0.1 );
    color: #e72d44;
}


/*--------------------------------------------------------------------------- */
                            /* MOBILE RESPONSIVE */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 1000px) {
    
/* --------------------------- Header Section --------------------------------*/

.agni-header {
    height: 60px;
}

.header-row {
    width: 100%;
    height: 100%;
    margin: 0;
}

.agni-site-info {
    width: 30%;
}

.agni-logo {
    display: none;
}

.agni-title {
    display: block;
    position: relative;
}

.agni-icon {
    display: block;
    position: relative;
    width: 50px;
    height: auto;
    margin: 7.5px;
}

.agni-header-nav {
    width: 70%;
}

.mobile-menu-icon {
    display: block;
    position: relative;
    float: right;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-menu-icon i {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 2.5em;
    color: #fff;
}

.menu-icon-color {
    color: #999 !important;
}

.header-nav-bar {
    display: none;
}

.mobile-nav {
    display: block;
    position: absolute;
    background: #fff;
    width: 180px;
    right: 10px;
    top: 60px;
    opacity: 1;
    animation: fadein 1s ease;
    border-radius: 3px;
    overflow: hidden;
}

.mobile-nav li {
    float: none;
}

.mobile-nav li a {
    padding: 10px;
    padding-left: 15px;
    color: #999;
    display: block;
    width: calc( 100% - 25px);
}

.mobile-nav li:hover a {
    background: #e72d44 ;
    color: #fff !important;
}

.color-link a{
    background: #e72d44 !important;;
    color: #fff !important;
}

.underline {
    display: none;
}

.page-image {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 150px;
    border: 4px solid #aaa;
    margin: 30px auto;
    overflow: hidden;
}

.page-content {
    width: calc(100% - 40px);
    margin: 10px auto;
}

/*------------------------------------------------------*/
/* Home Page */

.sun {
    width: 70px;
    height: 70px;
    border-radius: 35px;
}

.left-cloud {
    top: 30%;
    left: 15%;
    width: 150px;
}

.right-cloud {
    top: 20%;
    right: 15%;
    width: 200px;
}

.fg-1, .fg-2, .fg-3, .fg-4, .fg-5  {
    left: -40%;
    bottom: -40%;
}


.morning-prayer, .evening-prayer {
    bottom: 15%;
    font-size: 20px;
}

.agni-hotra {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.sunrise, .sunset {
    bottom: 15px;
    font-size: 14px;
}

/*------------------------------------------------------*/
/* About Page */

#about .section-content {
    width: calc(100% - 20px);
    padding: 50px 0;
}

#about .page-title {
    margin: 0 auto;
}

#about .page-image {
    float: none;
    margin: 30px auto;
}

#about .page-content {
    float: none;
    width: 80%;
    margin: 0 auto;
}

/*------------------------------------------------------*/
/* Agnihotra Page */

#agnihotra .section-content{
    padding: 50px 0;
}

#agnihotra .page-title {
    margin: 0;
}

.agni-accordion {
    width: 80%;
    margin: 20px auto;
}

.set-title {
    font-weight: 400;
    font-size: 18px;
    padding: 10px;
}

.set-image {
    float: none;
    margin: 20px auto;
}

.set-text {
    float: none;
    width: calc( 100% - 20px);
    margin: 20px auto;
}



/*------------------------------------------------------*/
/* Products Page */

#products .section-content{
    padding: 50px 0;
}

#products .page-title {
    margin: 0;
}

#products .page-content {
    max-width: 480px;
    margin: 20px auto;
}

/*------------------------------------------------------*/
/* Order Now Page */

#order .section-content {
    padding: 50px 0;
}

#order .page-title {
    margin: 0;
}

#order .page-content {
    width: 80%;
}



/*------------------------------------------------------*/
/* Why Yadniya? Page */

#yadniya .section-content{
    padding: 50px 0;
}

#yadniya .page-title {
    margin: 0;
}

#yadniya .page-content {
    width: 80%;
}

/*------------------------------------------------------*/
/* Contact Us Page */


#contact .section-content {
    width: 80%;
    padding: 50px 0;
}
    
}


/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 500px) {
    
/*------------------------------------------------------*/

/* Blog Page */

#agni-post {
    margin: 20px;
}


/*------------------------------------------------------*/

/* Home Page */

.sun {
    width: 50px;
    height: 50px;
    border-radius: 35px;
}

.left-cloud {
    top: 60%;
    left: 5%;
    width: 150px;
}

.right-cloud {
    top: 50%;
    right: 5%;
    width: 200px;
}

.fg-1, .fg-2, .fg-3, .fg-4, .fg-5  {
    left: -40%;
    bottom: -40%;
}

.morning-prayer, .evening-prayer {
    bottom: 60px;
    font-size: 12px;
}

.agni-hotra {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.sunrise, .sunset {
    bottom: 15px;
    font-size: 10px;
}

/*------------------------------------------------------*/
/* Products Page */

#products .page-content {
    max-width: 240px;
    margin: 20px auto;
}



}
