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


/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7f7f7f;
    --themeColor: #23392e;
    --themeColor2: #063628;
    --headingColor: #0e0d0d;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'georgiai';
    src: url(../fonts/georgiai.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 80px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'georgiai';
}

h2 {
    font-size: 70px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'georgiai';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 600;
    color: var(--headingColor);
    font-family: 'georgiai';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'georgiai';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'georgiai';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'georgiai';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

/* Buttons Css Start*/
.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 5px 5px 5px 20px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
    border: 1px solid #939598;
    border-radius: 5px;
    color: #223a2f;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
}

.theme-btn span {
    background-image: url("../images/contact-btn-img.png");
    width: 60px;
    height: 40px;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;    
    justify-content: center;
}

.theme-btn span i {
    width: 14px;
    background: #223a2f;
    height: 14px;
    font-size: 16px;
    clip-path: polygon(40% 50%, 25% 10%, 100% 50%, 25% 90%);
}

.theme-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    transition: 0.5s ease-in-out;
}

/* Buttons Css Start*/

/* coming-soon-sec */

.coming-sec {
    min-height: 100vh;
}

.coming-soon-img {
    width: 100%;
    height: 100%;
    display: flex;
    min-height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: url(../images/coming-soon-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.coming-soon-img::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: rgba(6, 54, 40, 0.65);
}

.coming-soon-img img {
    width: 90%;
    height: 450px;
    max-width: 450px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    width: 100%;
    height: 100%;
    display: flex;
    min-height: 100vh;
    position: relative;
    padding: 60px 40px;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.coming-soon-card {
    width: 100%;
    max-width: 620px;
    text-align: center;
}

.coming-soon-card h2 {
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: 3px;
}

.coming-soon-tagline {
    margin: 0 0 25px;
    letter-spacing: 13px;
    text-transform: uppercase;
    color: var(--headingColor);
}

.coming-countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 25px;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.count-text {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #8a8a8a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-subscribe {
    z-index: 1;
    padding: 12px;
    display: flex;
    position: relative;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--white);
}

.coming-subscribe::before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(218, 220, 221, 1) 0%, rgba(147, 149, 152, 1) 70%);
}

.coming-subscribe::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    margin: auto;
    border-radius: 5px;
    position: absolute;
    background-color: var(--white);
    transform: scaleY(0.95) scaleX(0.9925);
}

.coming-subscribe input {
    flex: 1;
    z-index: 1;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 10px 12px;
    letter-spacing: 0.5px;
    color: var(--headingColor);
}

.coming-subscribe input::placeholder {
    color: var(--headingColor);
    font-family: 'georgiai';
}

.coming-notify-btn {
    border: none;
    position: relative;
    outline: none;
    z-index: 1;
    background: var(--themeColor2);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 12px 18px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.coming-notify-btn i {
    font-size: 12px;
}

.coming-notify-btn:hover {
    filter: brightness(0.95);
}

.coming-social {
    padding: 0;
    left: 0;
    right: 0;
    bottom: 45px;
    margin: 0px auto;
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.coming-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeColor2);
    transition: all 0.3s ease;
}

.coming-social a:hover {
    color: var(--white);
    background: var(--themeColor2);
    border-color: var(--themeColor2);
}

.coming-countdown {
    display: flex;
    gap: 30px;
    font-family: 'Arial', sans-serif;
}

.count-item {
    text-align: center;
}

.count-time-wrapper {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.count-time {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    text-align: center;
    height: 35px;
    font-family: 'georgiai';
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 50%, #dcdcdc 100%);
    color: var(--themeColor2);
    /* Dark green from image */
    font-size: 30px;
    font-weight: 900;
    border-radius: 8px;
    /* The 3D effect shadow */
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 1),
        inset 0 -4px 4px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 1px 1px rgba(0, 0, 0, 0.3);
    border: 1px solid #c8c8c8;
}

.count-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--themeColor2);
}

/* coming-soon-sec */

/*Media Query Start*/
@media only screen and (max-width: 767px) {
    .coming-soon-content {
        padding: 40px 20px;
    }

    .coming-soon-img {
        min-height: 350px;
        height: auto;
    }

    .coming-countdown {
        flex-wrap: wrap;
        gap: 10px 12px;
    }

    .count-time {
        min-width: 76px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/