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


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

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=PT+Serif:wght@400;700&display=swap');


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

html {
    scroll-behavior: smooth;
}

body {
    background: #292a2c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
	word-wrap: break-word;
}

*,
*: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: #bababa;
}

a:hover {
    color: #bababa;
}

p {
    margin-bottom: 20px;
}

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;
}

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

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 20px;
}

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

h6,
.h6 {
    font-size: 15px;
}

.title {
	font-family: 'PT Serif', serif;
	/*font-family: 'Lora', serif;*/
	font-weight: 500;
	color: #bababa;
	margin-bottom: 40px;
	font-size: 35px;
}

.title span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}


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


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

.font-lora {
    font-family: 'Lora', serif;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.font-pt-serif {
    font-family: 'PT Serif', serif;
}


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

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

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

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

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

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

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

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

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

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


/* text colors=== */

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

.text-dark-2 {
    color: #424242;
}

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

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


/* backgrounds ==== */

.bg-dark {
    background-color: #bc7f5a !important;
}
.bg-dark2{
background-color:#292a2c !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;
}


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

.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: 600;
    font-size: 14px;
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

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

.btn-transparent {
    border: 1px solid #292a2c;
}

.btn-transparent.text-white:hover {
    background-color: #292a2c !important;
    color: #fff !important;
    border-color: #292a2c !important;
}

.btn-transparent2 {
    border: 1px solid #bc7f5a;
}

.btn-transparent2.text-white:hover {
    background-color: #bc7f5a !important;
    color: #fff !important;
    border-color: #bc7f5a !important;
}

.btn-transparent.text-muted-2:hover {
    background-color: #bc7f5a !important;
    color: #ffffff !important;
}

.btn-transparent2.text-muted-2:hover {
    background-color: #bc7f5a !important;
    color: #ffffff !important;
}

.container {
    max-width: 1550px;
}

.container-sm {
    max-width: 1350px;
}


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

.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 + 4px);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #c1c1c1;
    color: #686868;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    padding: 10px 20px;
}

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

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

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background: transparent; */
    background-image: url(../images/dropdown-arrow.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 20px);
    background-position-y: 50%;
}

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: #000000;
    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: #1f1e1e;
}


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

@media (min-width:1920px) {
    .container-fluid {
        max-width: 1920px;
    }
}


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

@media (max-width:991.98px) {
    h1,
    .h1 {
        font-size: 40px;
    }
    h2,
    .h2 {
        font-size: 35px;
    }
    h3,
    .h3 {
        font-size: 26px;
    }
    .btn {
        padding: 12px 20px;
    }
}


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

@media (max-width:767.98px) {
    h1,
    .h1 {
        font-size: 35px;
    }
    h2,
    .h2 {
        font-size: 30px;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    h4,
    .h4 {
        font-size: 18px;
    }
    .fs-20{
        font-size: 16px  !important;
    }
    .fs-35 {
        font-size: 20px !important;
    }
    .btn {
        padding: 8px 15px;
    }
}