
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
/* variable */
:root {     
    --base-color: #BC8947;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Rubik', sans-serif;
    --dark-gray: #252840;
    --medium-gray: #888;
} 


.iframe-container {
     width: 100%;
     height: 100vh;
}

.iframe-container iframe {
     height: 100%;
    width: 100%;

}

.login-btn {
    padding: 5px 15px !important;
    font-size: 15px !important;
    font-weight: 500;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    background: #c78c3c;
    color: white;
   
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-right: 15px;
}

.login-btn:hover {
    padding: 5px 15px !important;
    font-size: 15px !important;
    font-weight: 500;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    background-color: #111;
    color: white;
     font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-right: 15px;

}


/* reset */
body {
    font-size: 16px;
    line-height: 30px; 
}
a {
    color: #868d98;
} 
b, strong {
    font-weight: 600;
}
::-webkit-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
}
::-moz-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
:-ms-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
/* bg color */
.bg-gradient-emerald-blue-emerald-green {
    background-image:linear-gradient(50deg,#cfaa61 0,#DA7310 100%);
}
.bg-gradient-black-green {
    background-image: linear-gradient(to right bottom, #000000, #000000, #1d1810, #684e31, #DA7310);
}
/* text color */
.text-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right top, #cfaa61, #c78c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* button gradient */
.btn-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right, #cfaa61, #c78c3c, #cea85f);
    background-size: 200% auto;
    color: var(--white);
}
/* btn */
.btn{
    font-weight: 500;
    text-transform: inherit;
}
.btn.btn-extra-large {
    font-size: 22px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 16px;
}
.btn.btn-very-small {
    font-size: 13px;
}
.btn.btn-large .btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-link-gradient {
    padding: 0 0 3px;
}
/* header */
header .navbar-brand img {
    /* max-height: 60px; */
    /* min-width: 90px; */
}

header.sticky .navbar.disable-fixed .header-push-button .push-button span {
    background-color: var(--base-color);
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: .5px;
    padding: 10px 22px
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* newsletter style  */
.newsletter-style-02 input {
    font-size: 14px;
}
/* footer */
footer ul li {
    margin-bottom: 2px;
}
/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
}