@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --main-theme-color: #ff0003;
}
body{
    margin:0;
    position:relative;
    font-family: 'Montserrat', sans-serif;
    background: var(--white-color);
}
section {
    position: relative;
    margin: auto;
    width: 100%;
    display: flex;
    padding: 40px 0;
    transition: padding-top 1s ease;
    background: var(--white-color);
    z-index: 3;
    overflow: hidden;
    max-width: 1920px;
}
*{
    transition:0.3s cubic-bezier(0.85, 0, 0.15, 1);
}
:hover{
    transition:0.3s cubic-bezier(0.85, 0, 0.15, 1);
}

/* header */
header{
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
}
header .container{
    
}
.headerDis{
    display: flex;
    grid-gap: 20px;
    align-items: center;
}
.headerLogo img{
        width: 100%;
    max-height: 90px;
    padding: 10px;
}
.headerDes{
    font-size: 0.729vw;
    color: #e7e7e7;
    font-weight: 300;
}
.headerContact{
    margin-left: auto;
    display: grid;
    grid-gap: 5px;
    text-align: center;
    
}
.headerContact a{
    font-size: 1.25vw;
    color: #ffffff;
    font-family: "Roboto Slab", serif;
    text-decoration: none;
    display: flex;
    grid-gap: 10px;
    align-items: center;
}
.headerContact a svg{
    color: var(--main-theme-color);
}
.headerContact span{
    color: var(--main-theme-color);
    font-size: 0.729vw;
    border-bottom: 1px solid var(--main-theme-color);
    width: max-content;
    margin: auto;
    cursor: pointer;
    font-family: "Roboto Slab", serif;
}
.headerContact span:hover{
    color: #ddd66b;
    font-size: 0.729vw;
    border-bottom: 1px solid #ddd66b;
}

/* home banner */

.homeBanner{
    background: url(/assets/img/homeBanner.jpg);
    background-size: cover;
    padding: 120px 0;
    height: 100vh;
    background-position: center;
    display: flex;
    align-items: center;
}
.homeBannerContent{
    
}
.homeBCFirst{
    font-size: 1.562vw;
    color: var(--main-theme-color);
    font-family: "Roboto Slab", serif;
        font-weight: 500;
        margin-bottom: 0;
}
.homeBCH1{
    margin-top:30px;
    font-size: 2.34vw;
    color: #fff;
    text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0;
}
.homeBCSecond{
    margin-top:30px;
    position: relative;
    font-size: 1.562vw;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: "Roboto Slab", serif;
        font-weight: 500;
        margin-bottom: 0;
}
.homeBCSecond:before{
    content: '';
    width: 60px;
    height: 2px;
    background-color: #ffffff;
    display: block;
        top: 3px;
    position: relative;
}
.homeBCSecond > span{
    padding-left: 20px;
}
.homeBCSecond span span{
        color: var(--main-theme-color);
}
.homeBCEls{
    margin-top: 70px;
        display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
}
.homeBCEl{
        color: #fff;
    display: flex;
    grid-gap: 18px;
    width: 25%;
}
.homeBCEl div{
    
}
.homeBCEl div svg{
    color: var(--main-theme-color);
    width: 32px;
    height: 32px;
}
.homeBCEl p{
        font-size: 0.85vw;
        text-transform: uppercase;
}
.homeButton{
    grid-gap: 10px;
    margin-top: 60px;
    font-family: "Roboto Slab", serif;
        border: none;
    padding: 18px 36px;
    -webkit-box-shadow: 0 1rem 2rem #750102, inset 0 -4px 0 #750102;
    box-shadow: 0 0rem 2rem #750102, inset 0 -4px 0 #750102;
    background-color: #ff0003;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ff0003), to(#ff0003));
    background-image: -webkit-linear-gradient(top, #ff0003 0%, #ff0003 100%);
    background-image: -o-linear-gradient(top, #ff0003 0%, #ff0003 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ff0003), to(#ff0003));
    background-image: linear-gradient(to bottom, #ff0003 0%, #ff0003 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 2px 5px rgba(255, 255, 255, 0.65);
    font-size: 0.9375vw;
    font-weight: 700;
    text-transform: uppercase;
    width: max-content;
}
.homeButton:hover{
        -webkit-box-shadow: 0 0rem 1rem #750102, inset 0 4px 0 #750102;
    box-shadow: 0 0rem 2rem #750102, inset 0 4px 0 #750102;
}
.homeButton:before {
    margin-left: -30px;
    content: " ";
    width: 30px;
    height: 300px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    top-animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.homeButton:after {
    margin-left: -30px;
    content: " ";
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -90px;
    top: -150px;
    top-animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@keyframes slideme{
    0% {
        left: -30px;
        margin-left: 0;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 111%;
        margin-left: 84px;
    }
}

/* 404 */

.pageNotFoundDis {
    min-height: 305px;
    display: flex;
    align-items: center;
}
.pageNotFound {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pageNotFound span:first-child {
    font-size: 100px;
    border-right: 2px dashed #222;
    padding-right: 20px;
    margin-right: 20px;
}
.pageNotFound span:last-child {
    font-size: 16px;
    font-weight: 600;
}

/* footer */

footer{
background: #222;
    padding: 20px 0;
}
.footerDis{
    display: flex;
    align-items: center;
    margin: 0 -10px;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 10px 0;
}
.footerCol{
    margin: 0 10px;
}
.footerCol span{
    color: #666;
}
.footerCol a{
    color: #666;
    text-decoration: none;
}
.footerCol p{
    color:#666;
    margin: 0;
}
/* gallary */

.gallaryDis{
    
}
.gallaryDis h2{
    font-weight: 900;
    font-size: 2.395vw;
    line-height: 1.304em;
    margin-bottom: 6vh;
    text-align: center;
}
.gallaryAll{
    
}

@media (max-width: 991px) {
    .homeBCEls{
        margin-top:30px;
    }
    .headerContact a {
       font-size: 12px;
    }
    .headerContact span {
        font-size: 10px;
    }
    .homeBanner{
        min-height: 50vh;
        height: initial;
        padding-top: 90px;
        padding-bottom: 60px;
    }
    .headerLogo img{
        height: 70px;
    }
    .homeBCEl{
        width: initial;
        grid-gap:10px;
    }
    .homeBCEl p{
        max-width: 130px;
        font-size: 10px;
    }
    .homeBCFirst, .homeBCSecond{
        font-size: 15px;
    }
    .homeBCSecond{
        margin-top:20px;
    }
    .homeBCH1{
        font-size: 30px;
    }
    .homeButton{
        margin-top: 50px;
        font-size: 10px;
        padding: 12px 24px;
    }
    .footerCol span, .footerCol a, .footerCol p{
        font-size: 12px;
        text-align: center;
    }
    .footerDis{
        justify-content: center;
    }
    .gallaryDis h2{
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .headerDes {
        display: none;
    }
}
@media (max-width: 575px) {
    .pageNotFound span:first-child {
        border-bottom: 2px dashed #222;
        border-right: initial;
        padding-right: 0;
        padding-bottom: 20px;
        margin-right: initial;
        margin-bottom: 20px;
        text-align: center;
        font-size: 80px;
        line-height: 80px;
    }
}
@media (max-width: 575px) {
    .pageNotFound {
        display: grid;
    }
}


