@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

:root {
    --color-secondary: #2da14b;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

h4,
p,
ul {
    margin-bottom: 0 !important;
}

i,
.text-success {
    color: var(--color-secondary) !important;
}

label[class="error"] {
    color: #E73635;
    font-size: 14px;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
.selectize-input,
.swal2-confirm:focus,
.swal2-cancel:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.text-purple {
    color: #bf4d89;
}

/* ......... */

.navbar .navbar-nav {
    gap: 20px;
}

.navbar .nav-link {
    font-size: 14px;
    letter-spacing: 1px;
}

.navbar button,
.navbar button:active,
.navbar button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* ......... */

.banner {
    background-image: url(../images/banner/banner.large.webp);
    background-size: cover;
    background-position: center;
    height: 70vh;
    margin-top: 63px;
}

.sub-banner {
    height: 200px;
}

.banner .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.section-header {
    position: relative;
    padding-top: 30px;
    margin-bottom: 60px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: red;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
}

section {
    padding: 60px 0;
}

#about img {
    object-fit: cover;
}

.footer .brief p {
    line-height: 2;
}

.footer .brief a:hover {
    opacity: 0.7;
}

.footer .social a {
    height: 35px;
    width: 35px;
}

.footer .social a:hover {
    background: var(--color-secondary);
}

.footer .social a:hover i {
    color: #fff !important;
}

.back-to-top {
    right: 10px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .navbar .navbar-nav {
        gap: 5px;
    }
    
    .banner {
        background-image: url(../images/banner/banner.small.webp);
    }
    
    .sub-banner {
        height: 130px;
    }
}