/* 
    Theme Name: Signs
    Theme Type: Coming Soon Page
    Author : Mountain Theme
    Author URL : https://www.templatemonster.com/authors/mountaintheme/
    Theme URL : https://www.mountainclimbersstar.com/demo/html/signs/
    Version : 1.0.0
*/

/* 
============================== :: INDEX OF CSS :: ==============================
01. Web Font
02. Global Variable Define
03. Common CSS
04. Preloader
05. Hamburger CSS
06. Button CSS
07. Navigation CSS
08. Hero CSS
================================================================================
*/

/*========================================
01. Web Font
========================================*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/*========================================
02. Global Variable Define
========================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-bg: #F1FAFF;
    --primary-color: #F1FAFF;
    --secondary-color: #FF451B;
    --secondary-color-tow: #888888;
    --secondary-color-three: #2F3542;

    /* Web Font */
    --primary-font: 'Outfit', sans-serif;
}

/*========================================
03. Common CSS
========================================*/
body {
    font-family: var(--primary-font);
    font-size: 16px;
    background: var(--body-bg);
    color: var(--primary-color);
    overflow-x: hidden;
}

html,
body {
    scroll-behavior: smooth;
}

section,
.section {
    position: relative;
}

.section-block {
    padding-top: 120px;
    padding-bottom: 60px;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.site-main {
    position: relative;
}

p {
    margin: 0;
}

a {
    color: var(--primary-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

a:hover {
    color: var(--secondary-color);
}

a,
a:hover,
a:focus,
.btn:focus,
button,
button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.error {
    font-size: 14px;
    color: #ff0000;
}

form {
    margin: 0;
    padding: 0;
}

input:focus,
textarea:focus {
    box-shadow: none !important;
    border-color: var(--secondary-color) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--secondary-color-tow) !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--secondary-color-tow) !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--secondary-color-tow) !important;
}

::selection {
    background: var(--secondary-color);
    color: #F1FAFF;
}

/* Section Title */
.section-title {
    margin-bottom: 100px;
}

.section-title h2 {
    color: var(--secondary-color-three);
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.section-title h2 .signs {
    position: relative;
}

.section-title h2 .signs span {
    position: absolute;
    left: -2px;
    top: 16px;
    z-index: -1;
}

.heading-2 {
    color: var(--secondary-color-three);
    font-size: 35px;
    font-weight: 600;
}

.section-title h2 .signs span svg path {
    stroke: var(--secondary-color);
}

.bage {
    text-align: center;
    border-radius: 50%;
    background: red;
    color: #FFF;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    position: absolute;
    top: -22px;
    left: -11px;
}

.bage-sm {
    font-size: 14px !important;
}

/*========================================
04. Preloader
========================================*/
/*** Preloader ***/
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999999 !important;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid #0000;
    position: relative;
    animation: l24 1s infinite linear;
    border-right-color: #FF451B;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.loader:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}

/*========================================
05. Hamburger CSS
========================================*/
.hamburger-menu {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.hamburger-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    width: calc(100% - 15px);
    height: 3px;
    border-radius: 40px;
    background: var(--primary-color);
    -webkit-box-shadow: 0 -9px 0 var(--primary-color), 0 9px 0 var(--primary-color);
    -moz-box-shadow: 0 -9px 0 var(--primary-color), 0 9px 0 var(--primary-color);
    -ms-box-shadow: 0 -9px 0 var(--primary-color), 0 9px 0 var(--primary-color);
    -o-box-shadow: 0 -9px 0 var(--primary-color), 0 9px 0 var(--primary-color);
    box-shadow: 0 -9px 0 var(--primary-color), 0 9px 0 var(--primary-color);
    -webkit-transition-property: transform, box-shadow;
    -moz-transition-property: transform, box-shadow;
    -ms-transition-property: transform, box-shadow;
    -o-transition-property: transform, box-shadow;
    transition-property: transform, box-shadow;
    -webkit-transition-delay: 0s, 1s;
    -moz-transition-delay: 0s, 1s;
    -ms-transition-delay: 0s, 1s;
    -o-transition-delay: 0s, 1s;
    transition-delay: 0s, 1s;
    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    -ms-transition-duration: 0.5s, 0.5s;
    -o-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}

.hamburger-menu.active span {
    -webkit-box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    -moz-box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    -webkit-transform: translate(-50%, -50%) rotate(-315deg);
    -moz-transform: translate(-50%, -50%) rotate(-315deg);
    -ms-transform: translate(-50%, -50%) rotate(-315deg);
    -o-transform: translate(-50%, -50%) rotate(-315deg);
    transform: translate(-50%, -50%) rotate(-315deg);
    -webkit-transition-property: box-shadow, transform;
    -moz-transition-property: box-shadow, transform;
    -ms-transition-property: box-shadow, transform;
    -o-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
    -webkit-transition-delay: 0s, 0.5s;
    -moz-transition-delay: 0s, 0.5s;
    -ms-transition-delay: 0s, 0.5s;
    -o-transition-delay: 0s, 0.5s;
    transition-delay: 0s, 0.5s;
    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    -ms-transition-duration: 0.5s, 0.5s;
    -o-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}

.hamburger-menu span::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 3px;
    height: 36px;
    border-radius: 40px;
    background: var(--primary-color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.hamburger-menu.active span::before {
    top: 50%;
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

/*========================================
06. Button CSS
========================================*/
.custom-btn {
    width: max-content;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

/*========================================
07. Navigation CSS
========================================*/
#header {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#header .navbar {
    padding: 0;
}

.primary-menu {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.primary-menu .logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.primary-menu .logo img {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.primary-menu .logo img:hover {
    opacity: .7;
}

.primary-menu .navbar-accordion {
    position: initial;
}

.primary-menu .navbar-toggler {
    margin: 10px 10px;
    position: relative;
    border: 0;
    line-height: 1;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.primary-menu .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    height: 70px;
    padding: 0 0.85em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary-color);
}

.primary-menu .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

.primary-menu .buy-now {
    border-radius: 30px;
    padding: 10px 14px;
    font-size: 16px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.primary-menu .buy-now img {
    max-width: 27px;
    margin-right: 2px;
}

.primary-menu .buy-now:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* On Scroll Fixed Navbar */
.navbar-sticky-on .navbar-nav .nav-link:hover,
.navbar-sticky-on .navbar-nav .nav-link.active,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-sticky-on .navbar-nav .nav-link {
    color: var(--primary-color);
}

.navbar-sticky {
    -webkit-transition: none;
    transition: none;
}

.navbar-sticky-transition {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.navbar-sticky-moved-up {
    position: fixed;
    top: 0;
    background: var(--secondary-color-three) !important;
    margin-top: -100px;
}

.navbar-sticky-on {
    margin-top: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: rgba(27, 67, 105, 0.164) 0px 0px 20px;
    -moz-box-shadow: rgba(27, 67, 105, 0.164) 0px 0px 20px;
    -ms-box-shadow: rgba(27, 67, 105, 0.164) 0px 0px 20px;
    -o-box-shadow: rgba(27, 67, 105, 0.164) 0px 0px 20px;
    box-shadow: rgba(27, 67, 105, 0.164) 0px 0px 20px;
}

/*========================================
08. Hero CSS
========================================*/
.hero-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url('../images/bg.png');
    background-size: cover;
    background-position: center;
}

.hero-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.699);
}

.hero-area .hero-content {
    padding: 250px 0;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-area .hero-content .heading {
    font-size: 70px;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
}

.hero-area .hero-content .heading span {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--secondary-color);
    letter-spacing: 1px;
}

.update {
    display: inline-block;
    background: #1AB744;
    padding: 4px 18px;
    border-radius: 110px;
}

.pending {
    background: #FEB600;
}

/*========================================
09. Demo Section
========================================*/
.demo-section .demo-wrap {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}

.demo-section .demo-wrap img {
    border: 1px solid #CACEDA;
}

.demo-section .demo-wrap:hover {
    transform: translateY(-7px);
}

.demo-section .demo-wrap .button-wrap {
    margin-top: 20px;
}

.demo-section .demo-wrap .button-wrap .custom-btn {
    padding: 10px 18px;
    font-size: 15px;
    margin: 0 3px;
}

.demo-section .demo-wrap .button-wrap .custom-btn:hover {
    transform: scale(1.06);
    color: #FFF;
}

.demo-section .demo-wrap h4 {
    color: var(--secondary-color-three);
    font-weight: 500;
    font-size: 22px;
    margin-top: 15px;
}

/*========================================
10. Footer CSS
========================================*/
.footer {
    background: var(--secondary-color-three);
    padding-top: 90px;
    padding-bottom: 60px;
}

.footer .footer-brand {
    display: block;
    margin-bottom: 35px;
}

.footer .footer-brand img {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    width: 105px;
}

.footer .footer-brand:hover img {
    opacity: .7;
}

.footer p {
    font-size: 18px;
}

.footer .copyrught p {
    margin-top: 69px;
}

/* [ Demos ] */
/*================================================== */
#demos .button-wrap .button {
    padding: 10px 18px;
    font-size: 14px;
}

#demos .bage {
    width: 48px;
    height: 48px;
    background: red;
    color: #FFF;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    top: -22px;
    left: -16px;
}

@media screen and (max-width:992px) {
    #demos .bage {
        left: -8px;
    }
}

/* [ Responsive ] */
/*================================================== */
@media screen and (min-width: 1280px) {

    /* Preloader */
    #preloader {
        background-size: 10%;
    }
}

@media screen and (max-width: 1390px) {
    .hero-area .hero-content .heading {
        font-size: 61px;
    }
}

@media screen and (max-width: 1280px) {
    .hero-area .hero-content .heading {
        font-size: 50px;
    }
}

@media screen and (max-width: 991px) {

    /* Common CSS */
    .section-block {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    /* Section Title */
    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    /* Preloader */
    #preloader {
        background-size: 25%;
    }

    /* Hero Area */
    .hero-area .hero-content {
        padding: 140px 0;
        max-width: 100%;
    }

    .hero-area .hero-content .heading {
        font-size: 50px;
    }

    .section-title h2 .signs span {
        display: none;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
        text-align: center;
    }

    .footer .copyrught p {
        margin-top: 18px;
    }
}

@media screen and (max-width: 767px) {

    /* Preloader */
    #preloader {
        background-size: 40%;
    }

    /* 07. Navigation CSS */
    .primary-menu .navbar-collapse {
        background: #FFF;
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        margin-top: 0;
        z-index: 1000;
    }

    .primary-menu .navbar-nav {
        overflow: hidden;
        overflow-y: auto;
        max-width: 65vh;
        padding: 15px;
    }

    .primary-menu .navbar-nav .nav-item .nav-link {
        height: auto;
        color: #333;
        padding: 8px 0;
    }

    .primary-menu .navbar-toggler {
        display: block;
    }


    /* 08. Hero CSS */
    .hero-area .hero-content .heading {
        font-size: 30px;
    }

    .hero-area .hero-content .heading span {
        -webkit-text-stroke: 1px var(--secondary-color);
    }
}

@media screen and (max-width:320px) {}