*{
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
html.preloader-active, 
body.preloader-active {
    overflow: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
}
.admin-panel h1,.admin-panel h2,.admin-panel h3,.admin-panel h4,.admin-panel h5,.admin-panel h6{
    font-family: "Nunito Sans", sans-serif !important;
}
h1{
    font-size: 67px;
    line-height: 76px;
}
.admin-panel h1{
    font-size: 50px;
    font-weight: 700;
}
h2{
    font-size: 48px;
}
@media only screen and (max-width: 1440px){
    h1 {
        font-size: 60px;
        line-height: 68px;
    }
    h2{
        font-size: 45px;
    }
}
@media only screen and (max-width: 1024px){
    h2{
        font-size: 40px;
    }
    .admin-panel h1{
        font-size: 40px;
        font-weight: 700;
        line-height: 50px;
    }
}
@media only screen and (max-width: 512px){
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
}


header{
    position: relative;
    background: black;
    padding: 15px;
}
header .logo img{
    width: 100px;
}
header .logo .menu-toggle{
    display: none;
}
header .logo .menu-toggle i,
header .logo .close-nav i{
    margin-left: 2rem;
    color: #B7B6B6;
    font-size: 30px;
    transition: all 0.3s;
}
header .logo .menu-toggle.active i,
header .logo .close-nav.active i{
    color: white;
}
header .logo .menu-toggle.hide,
header .logo .close-nav.hide{
    display: none;
}
header .nav{
    margin-left: 5rem;
    transition: all 0.3s;
}
header .nav ul{
    padding: 0;
    list-style: none;
    color: white;
    margin: 0;
}
header .nav ul li{
    display: inline-block;
    margin-bottom: 0px;
}
header .nav ul li a{
    color: #B7B6B6;
    text-decoration: none;
    padding: 20px;
    font-size: 17px
}
header .nav ul li.active a{
    color: white;
}
header .nav ul li:hover a{
    color: #BDB676;
}
header .account{
    display: none;
}
@media only screen and (max-width: 1024px){
    header .nav {
        margin-left: 2rem;
    }
    header .nav ul li a{
        padding: 15px;
    }
}
@media only screen and (max-width: 880px){
    header .logo img {
        width: 80px;
    }
    header .nav{
        position: absolute;
        left: 0;
        bottom: 100%;
        background: white;
        width: calc(100% - 30px);
        margin: auto 15px;
        padding: 12px;
        border-radius: 10px;
        z-index: 9;
    }
    header .logo .menu-toggle{
        display: block;
    }
    header .nav ul li {
        display: block;
    }
    header .nav ul li a{
        display: block;
        color: black;
        padding: 5px;
    }
    header .nav ul li.active a{
        color: #BDB676;
    }
    header .nav.active{
        bottom: -140%;
    }
}
@media only screen and (max-width: 512px){
    header .logo .menu-toggle i, 
    header .logo .close-nav i{
        margin-left: 1rem;
    }
    header .login,
    header .register{
        display: none;
    }
    header .account{
        display: inline-block;
    }
}


footer{
    position: relative;
    background: black;
    padding: 25px 15px;
}
footer .footer-nav ul{
    padding: 0px;
    margin: 0px;
}
footer .footer-nav ul li{
    display: inline-block;
    margin-bottom: 0px;
}
footer .footer-nav ul li a{
    color: #B7B6B6;
    text-decoration: none;
    padding: 18px;
    font-size: 15px
}
footer .footer-nav ul li.active a{
    color: white;
}
footer .footer-nav ul li:hover a{
    color: #BDB676;
}
footer .social-links {
    display: flex;
    gap: 10px;
    justify-content: end;
}
footer .social-links a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #d4c17f;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 18px;
}
footer .social-links a:hover{
    background-color: #d4c17f;
}
footer .social-links a i{
    font-size: 14px;
}
@media only screen and (max-width: 767px){
    footer .footer-nav{
        text-align: center;
    }
    footer .footer-nav ul li a {
        padding: 10px;
        font-size: 14px;
    }
    footer .social-links{
        justify-content: center;
        margin-top: 20px;
    }
}


.preloader{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: black;
}
.preloader img{
    width: 180px;
    position: absolute;
    top: 100%;
    left: calc(50% - 90px);
    animation: preloaderLogoElement 4s linear forwards;
}
.preloader .ele{
    height: 90vh;
    width: 190px;
    background: #bdb6763d;
    border-radius: 100px;
    position: absolute;
    top: 5%;
}
.preloader .ele:nth-of-type(1){
    left: 5%;
    animation: preloaderLeftElement 4s linear forwards;
}
.preloader .ele:nth-of-type(2){
    right: 5%;
    animation: preloaderRightElement 4s linear forwards;
}
@keyframes preloaderLogoElement {
    0% {
        top: 100%;
    }
    20% {
        top: calc(50% - 90px);
    }
    80% {
        top: calc(50% - 90px);
    }
    100% {
        top: -100%;
    }
}
@keyframes preloaderLeftElement {
    0% {
        top: 5%;
    }
    20% {
        top: -45%;
    }
    80% {
        top: -45%;
    }
    100% {
        top: -100%;
    }
}
@keyframes preloaderRightElement {
    0% {
        top: 5%;
    }
    20% {
        top: 45%;
    }
    80% {
        top: 45%;
    }
    100% {
        top: 100%;
    }
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@media only screen and (max-width: 767px){
    .preloader img{
        width: 150px;
        left: calc(50% - 75px);
    }
    .preloader .ele{
        width: 160px;
    }
}
@media only screen and (max-width: 512px){
    .preloader img{
        width: 80px;
        left: calc(50% - 40px);
    }
    .preloader .ele{
        width: 100px;
    }
}


.section{
    padding: 80px 15px;
    position: relative;
}
.section .ele:nth-of-type(1){
    position: absolute;
    top: 100px;
    left: 0;
}
.section .ele:nth-of-type(2){
    position: absolute;
    right: 0px;
    bottom: 0;
}
@media only screen and (max-width: 1024px){
    .section {
        padding: 60px 15px;
    }
    .section .ele:nth-of-type(1){
        top: 50px;
    }
    .section .mt-5{
        margin-top: 10px !important;
    }
}
@media only screen and (max-width: 767px){
    .section {
        padding: 45px 15px;
    }
}
@media only screen and (max-width: 512px) {
    .section {
        padding: 30px 15px;
    }
    .section .ele:nth-of-type(1) img,
    .section .ele:nth-of-type(2) img{
        width: 50px;
    }
}

ul li{
    margin-bottom: 5px;
}

.btn{
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}
.btn.btn-bg{
    background: #BDB676;
    border: 1px solid #BDB676;
}
.btn.btn-bg:hover{
    background: none;
}
.btn.btn-outline{
    border: 1px solid #BDB676;
}
.btn.btn-outline:hover{
    background: #BDB676;
}
.btn.btn-dark{
    background-color: black;
}
.btn.btn-dark:hover{
    background:#363535;
}


/* image boxex */
.image-box{
    position: relative;
    border-radius: 20px;
}
.image-box img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.image-box .content{
    position: absolute;
    bottom: 3px;
    width: 100%;
    padding: 20px;
    padding-top: 20%;
    color: white;
    font-weight: 400;
    border-radius: 0px 0px 20px 20px;
    background: linear-gradient(to bottom, transparent, black);
}
.image-box .content p,
.image-box .content h3{
    margin: 0px;
}
.image-box .content p{
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.image-box .content h3{
    font-weight: 300;
    font-size: 23px;
}


input,
select{
    padding: 11px;
    font-size: 16px;
    border-radius: 7px;
}
input:focus, textarea:focus {
    outline: 2px solid #c49a35;
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #444;
    margin: 0 10px;
}
.divider span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
}