/* 
Theme Name: Vaidika Vag Jyotih
Version: 1.0
Author: Apoorv Kaushik
*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

p {
    font-weight: 300;
    color: #111;
}

body {
    min-height: 200vh;
}

.banner_container {
    background-image: radial-gradient(white, orange);
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
}

.banner .content {
    max-width: 900px;
    text-align: center;
}

.banner .content h2 {
    font-size: 5em;
}

.banner .content p {
    font-size: 1em;
    color: #111;
}

.btn {
    font-size: 1em;
    color: #fff;
    background: #ff0157;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}

.btn:hover {
    letter-spacing: 6px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky {
    background-color: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

header .logo {
    color: #111;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
    white-space: nowrap;
}

header .logo span {
    color: #ff0157;
}
header .logo:hover{
    color: #ff0157;
}
header .navigation {
    position: relative;
    display: flex;
}

header .navigation li {
    list-style: none;
    margin-left: 30px;
}

header .navigation li a {
    text-decoration: none;
    color: #111;
    font-weight: 400;
}

header .navigation li a:hover {
    color: #ff0157;
}
header .navigation .firstAlpha{
    color: #ff0157;
}
section {
    padding: 25px 100px;
}

.titleText {
    color: #111;
    font-size: 2em;
    font-weight: 300;
}

.titleText span {
    color: #ff0157;
    font-weight: 700;
    font-size: 1.5em;
}

section p,
li {
    line-height: 1.65;
    margin-left: 3em;
}

section p,
ul {
    list-style-position: inside;
    margin: 0 0 1.65em 0;
}

p strong {
    color: #111111c5;
}

.copyrightText {
    padding: 8px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.copyrightText p {
    color: #333;
}

.copyrightText a {
    color: #ff0157;
    font-weight: 500;
    text-decoration: none;
}

@media (max-width: 991px) {

    header,
    header.sticky {
        padding: 10px 20px;
    }

    header .navigation {
        display: none;
    }

    header .navigation.active {
        width: 100%;
        height: calc(100% - 68px);
        position: fixed;
        top: 68px;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: #fff;
    }

    header .navigation li {
        margin-left: 0;
    }

    header .navigation li a {
        color: #111;
        font-size: 1.6em;
    }

    .menuToggle {
        position: relative;
        width: 40px;
        height: 40px;
        background-image: url('/wp-content/themes/vaidika_vag_jyotih/images/bars-solid.svg');
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .menuToggle.active {
        background-image: url('/wp-content/themes/vaidika_vag_jyotih/images/xmark-solid.svg');
        background-size: 30px;
    }

    header.sticky .menuToggle {
        /* filter: invert(1); */
    }

    section {
        padding: 20px;
    }

    .banner .content h2 {
        font-size: 3em;
    }

    .titleText {
        font-size: 1.8em;
        line-height: 1.5em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .banner .content h2 {
        font-size: 2.2em;
    }
}
.interiorPageBody{
    min-height: 100vh;
}
.interiorPageSection {
    padding-top: 8em;
    /* height: 90vh; */
}

.interiorPageSection h2 {
    color: #ff0157;
    font-weight: 700;
    font-size: 2em;
}
/* .interiorPageSiteFooter{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
} */
.interiorPageSection .tileBox{
	display:flex;
	justify-content:center;
	align-items:center;
	background: #fff;
}