﻿:root{
    --primary:#0b6e69;
    --secondary:#052a2a;
    --gold:#d4a017;
    --light:#f8f5ef;
    --white:#ffffff;
    --text:#333333;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

/* IMAGES */

img{
    max-width:100%;
    height:auto;
}

/* LINKS */

a{
    text-decoration:none;
}

/* TOP BAR */

.topbar{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:14px;
    font-weight:500;
}

/* NAVBAR */

.navbar{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    border-bottom:1px solid #eee;
}

.navbar-brand h5{
    font-weight:700;
    color:var(--secondary);
}

.nav-link{
    color:#444 !important;
    font-weight:600;
    margin-left:10px;
    margin-right:10px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary) !important;
}

.btn-register{
    background:#ffc107;
    border-radius:10px;
    padding:10px 20px;
    font-weight:600;
    color:#000;
}

.btn-register:hover{
    background:#ffb300;
    color:#000;
}

/* COMMON SECTION */

.section-padding{
    padding:80px 0;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:var(--secondary);
    font-family:'Playfair Display',serif;
}

.section-subtitle{
    color:#666;
    font-size:18px;
}

/* FOOTER */

.footer{
    background:#021515;
    color:#fff;
    padding:60px 0 30px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer hr{
    border-color:rgba(255,255,255,.15);
}

.footer a{
    color:#fff;
}

.footer a:hover{
    color:#ffc107;
}

/* LOADER READY */

.page-loader{
    display:none;
}

/* MOBILE */

@media(max-width:768px){

.topbar{
    font-size:12px;
}

.navbar-brand h5{
    font-size:20px;
}

.section-title{
    font-size:30px;
}

.section-padding{
    padding:50px 0;
}

.footer{
    text-align:center;
}

}