/*==================== fonts ======================= */

.modern-20 {
    font-family: 'Modern No.20';	
    src: url('../webfonts/Modern-Regular.eot');
    src: url('../webfonts/Modern-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Modern-Regular.woff2') format('woff2'),
        url('../webfonts/Modern-Regular.woff') format('woff'),
        url('../webfonts/Modern-Regular.ttf') format('truetype'),
        url('../webfonts/Modern-Regular.svg#Modern-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*------------ google fonts --------- */



/* Monteserat / Poppins / Open Sans */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* global css ==================  */

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #000000;
    font-family: 'Modern No.20';
    font-size: 18px;
    font-weight: 00;
    line-height: 30px;
}

*,
*:focus {
    outline: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none !important;
    color: #7a4915;
}

a:hover {
    color: #7a4915;
}

p {
    margin-bottom: 10px;
}

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


/*****************************/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 60px;
    font-weight: 900;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 26px;
}
.inner-pg h3, .inner-pg .h3{
	color:#C68A2F !important;
}
h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 18px;
}


/******* Helpers ********************************************************************/


/*-----  fonts ---------- */

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-opensans {
    font-family: 'Open Sans', sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}


/* font sizes ======= */

.fs-9 {
    font-size: 9px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-29 {
    font-size: 29px !important;
}

.fs-49 {
    font-size: 49px !important;
}


/* text colors=== */

.text-dark {
    color: #000000 !important;
}

.text-muted {
    color: #434343 !important;
}

.text-warning {
    color: #C68A2F !important;
}


/* backgrounds ==== */

.bg-dark {
    background-color: #151515 !important;
}


/*************Font Weight****************/

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semi {
    font-weight: 600 !important;
}

.font-weight-bolder {
    font-weight: 800 !important;
}


/* letter-spacing ==== */

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}


/***************************/

.btn {
    moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-decoration: none !important;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 35px;
    border: 1px solid;
    border-radius: 10px;
}

.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-light-gray:hover {
    border: 1px solid !important;
    background-color: #C68A2F;
}

.btn-transparent {
    border: 1px solid !important;
    background-color: transparent;
}

.btn-warning {
    /*background-color: #aa742d;*/
    border-color: #aa742d;
    color: #fff !important;
	background: rgb(202, 141, 54);
    background: linear-gradient(90deg, rgba(202, 141, 54, 1) 0%, rgba(70, 39, 15, 1) 100%);
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #aa742d;
    border-color: #aa742d;
    color: #fff !important;
}

.container {
    max-width: 1390px;
}


/*****************************/

.text-shadow {
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.75);
}


/*******************************************************************/

.form-control,
input.form-control,
input.form-control:focus {
    height: calc(2.4em + 1.1rem);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #c1c1c1;
    color: #686868;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    padding: 10px 20px;
}

select.form-control {
    height: calc(2.4em + 1.1rem);
    border-color: #c1c1c1;
}

textarea.form-control {
    /* font-size: 14px; */
    resize: none;
}

textarea.form-control:not([rows]) {
    height: 140px;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}


/* placeholder color ======== */

.form-control::-webkit-input-placeholder,
::-webkit-input-placeholder {
    /* Edge */
    color: #686868;
}

.form-control:-ms-input-placeholder,
 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #686868;
}

.form-control::placeholder,
 ::placeholder {
    color: #686868;
}

.form-control::-moz-placeholder {
    color: #686868;
    opacity: 1;
}


/********** Back To Top Button ***************************************************************************************************/

#scroll {
    background: #ff9600;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    cursor: pointer;
    width: 45px;
    height: 45px;
    text-indent: -9999px;
    display: none;
    webkit-border-radius: 50px;
    border-radius: 50px
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background: #d6a447;
}


/* ==================== media queries ============= */

@media (max-width:1199.98px) {
    body {
        font-size: 16px;
        line-height: 25px;
    }
    h1,
    .h1 {
        font-size: 50px;
    }
    h2,
    .h2 {
        font-size: 30px;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    .fs-29 {
        font-size: 25px !important;
    }
    .fs-49 {
        font-size: 40px !important;
    }
}


/*********************************************************************/

@media (max-width:991.98px) {}


/*********************************************************************/

@media (max-width:767.98px) {
    h1,
    .h1 {
        font-size: 40px;
    }
    h2,
    .h2 {
        font-size: 25px;
    }
    h3,
    .h3 {
        font-size: 22px;
    }
    .fs-29 {
        font-size: 22px !important;
    }
    .fs-49 {
        font-size: 34px !important;
    }
    .btn {
        padding: 5px 20px;
        font-size: 14px;
    }
}


/*********************************************************************/

@media (max-width: 479.98px) {
    h1,
    .h1 {
        font-size: 35px;
    }
    .fs-49 {
        font-size: 30px !important;
    }
}