/* =========================================================
   ALAD BUSINESS GROUP
   Main Website Styles
   ========================================================= */

:root {

    --alad-navy: #063B49;
    --alad-navy-dark: #032A34;
    --alad-brown: #9A6A4F;
    --alad-brown-dark: #704735;
    --alad-cream: #F4F0E8;
    --alad-white: #FFFFFF;
    --alad-black: #172126;
    --alad-gray: #6C757D;
    --alad-light: #F7F8F9;

    --container-width: 1200px;

    --transition:
        all 0.3s ease;

}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--alad-black);

    background: var(--alad-white);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(
        92%,
        var(--container-width)
    );

    margin: 0 auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    background: var(--alad-navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar i {
    color: #C99D7E;
}

.topbar-right a {
    transition: var(--transition);
}

.topbar-right a:hover {
    color: white;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: relative;
    z-index: 1000;

    background: rgba(255,255,255,0.97);

    border-bottom:
        1px solid rgba(0,0,0,0.07);

    box-shadow:
        0 5px 20px rgba(0,0,0,0.04);
}

.navbar-inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 175px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > a {
    position: relative;

    color: var(--alad-navy);

    font-size: 14px;
    font-weight: 600;

    padding: 32px 0;

    transition: var(--transition);
}

.nav-menu > a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: var(--alad-brown);

    transition: var(--transition);
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--alad-brown);
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

.nav-menu .nav-contact {
    background: var(--alad-navy);

    color: white;

    padding: 12px 20px;

    border-radius: 3px;
}

.nav-menu .nav-contact::after {
    display: none;
}

.nav-menu .nav-contact:hover {
    background: var(--alad-brown);
    color: white;
}

.mobile-menu-btn {
    display: none;

    border: 0;
    background: none;

    color: var(--alad-navy);

    font-size: 30px;

    cursor: pointer;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--alad-navy-dark);
    color: rgba(255,255,255,0.78);
}

.footer-main {
    padding: 75px 0 60px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 50px;
}

.footer-logo img {
    width: 190px;
    margin-bottom: 25px;
}

.footer-company p {
    max-width: 390px;

    font-size: 14px;

    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border:
        1px solid rgba(255,255,255,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--alad-brown);
    border-color: var(--alad-brown);
    color: white;
}

.footer-column h4 {
    color: white;

    font-size: 16px;

    margin-bottom: 22px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li a {
    font-size: 14px;

    transition: var(--transition);
}

.footer-column li a:hover {
    color: #D5A27F;
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    font-size: 14px;

    margin-bottom: 13px;
}

.footer-contact i {
    color: #C99D7E;
}

.footer-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    background: var(--alad-brown);

    color: white;

    padding: 12px 18px;

    font-size: 13px;

    transition: var(--transition);
}

.footer-button:hover {
    background: white;
    color: var(--alad-navy);
}

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,0.1);

    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}

.footer-bottom strong {
    color: white;
}


/* =========================================================
   GENERAL BUTTONS
   ========================================================= */

.btn-primary-alad {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--alad-navy);

    color: white;

    padding: 14px 25px;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid var(--alad-navy);

    transition: var(--transition);
}

.btn-primary-alad:hover {
    background: var(--alad-brown);
    border-color: var(--alad-brown);
}

.btn-outline-alad {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    font-size: 14px;

    font-weight: 600;

    border:
        1px solid white;

    color: white;

    transition: var(--transition);
}

.btn-outline-alad:hover {
    background: white;
    color: var(--alad-navy);
}


/* =========================================================
   SECTION BASICS
   ========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 750px;

    margin-bottom: 45px;
}

.section-label {
    color: var(--alad-brown);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-title {
    color: var(--alad-navy);

    font-size: clamp(
        30px,
        4vw,
        48px
    );

    line-height: 1.15;

    margin-bottom: 15px;
}

.section-text {
    color: var(--alad-gray);

    font-size: 16px;

    max-width: 700px;
}


/* =========================================================
   ALAD HOMEPAGE
   ========================================================= */


/* HERO */

.hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3,42,52,0.95),
            rgba(3,42,52,0.65),
            rgba(3,42,52,0.25)
        ),
        url("../images/home/hero.jpg")
        center center / cover no-repeat;

    color: white;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,42,52,0.55),
            transparent
        );

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-text {

    max-width: 760px;

}

.hero-label {

    color: #D1A17E;

}

.hero h1 {

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 25px;

}

.hero h1 span {

    color: #D1A17E;

}

.hero p {

    max-width: 650px;

    color:
        rgba(255,255,255,0.86);

    font-size: 18px;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

}

.hero-scroll {

    position: absolute;

    z-index: 2;

    bottom: 30px;

    right: 5%;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: .75;

}


/* ABOUT */

.about-preview {

    background: white;

}

.about-preview-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-image {

    position: relative;

}

.image-frame {

    position: relative;

    overflow: hidden;

}

.image-frame::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -20px;

    bottom: -20px;

    background:
        var(--alad-brown);

    z-index: 0;

}

.image-frame img {

    position: relative;

    z-index: 1;

    width: 100%;

    min-height: 480px;

    object-fit: cover;

}

.about-content p {

    margin-bottom: 18px;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--alad-navy);

    font-size: 14px;

    font-weight: 700;

    border-bottom:
        1px solid var(--alad-brown);

    padding-bottom: 5px;

}

.text-link:hover {

    color: var(--alad-brown);

}


/* BUSINESS */

.business-preview {

    background:
        var(--alad-light);

}

.business-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}

.business-card {

    background: white;

    padding: 35px 28px;

    border-bottom:
        3px solid transparent;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.business-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--alad-brown);

    box-shadow:
        0 20px 40px
        rgba(0,0,0,.08);

}

.business-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--alad-cream);

    color:
        var(--alad-brown);

    font-size: 25px;

    margin-bottom: 25px;

}

.business-card h3 {

    color:
        var(--alad-navy);

    font-size: 19px;

    margin-bottom: 15px;

}

.business-card p {

    color:
        var(--alad-gray);

    font-size: 14px;

    margin-bottom: 20px;

}

.business-card a {

    color:
        var(--alad-brown);

    font-size: 13px;

    font-weight: 700;

}


/* PRODUCTS */

.products-preview {

    background: white;

}

.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}

.centered .section-text {

    margin-left: auto;

    margin-right: auto;

}

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.product-card {

    background:
        var(--alad-light);

    overflow: hidden;

}

.product-image {

    height: 300px;

    overflow: hidden;

}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}

.product-card:hover
.product-image img {

    transform:
        scale(1.05);

}

.product-info {

    padding: 25px;

}

.product-info span {

    color:
        var(--alad-brown);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

}

.product-info h3 {

    color:
        var(--alad-navy);

    font-size: 21px;

    margin: 8px 0 15px;

}

.product-info a {

    font-size: 13px;

    color:
        var(--alad-navy);

    font-weight: 700;

}


/* FEATURED PROJECT */

.featured-project {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    min-height: 580px;

    background:
        var(--alad-navy);

    color: white;

}

.featured-project-image {

    min-height: 500px;

}

.featured-project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.featured-project-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        70px 8%;

}

.featured-project-content h2 {

    font-size:
        clamp(32px,4vw,54px);

    line-height: 1.1;

    margin: 10px 0 25px;

}

.featured-project-content p {

    color:
        rgba(255,255,255,.75);

    margin-bottom: 30px;

}


/* VALUES */

.why-alad {

    background:
        var(--alad-cream);

}

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 30px;

}

.value-item {

    padding-top: 20px;

    border-top:
        1px solid
        rgba(0,0,0,.15);

}

.value-number {

    color:
        var(--alad-brown);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

}

.value-item h3 {

    color:
        var(--alad-navy);

    font-size: 21px;

    margin-bottom: 12px;

}

.value-item p {

    color:
        var(--alad-gray);

    font-size: 14px;

}


/* CLIENTS */

.clients-section {

    background: white;

}

.client-logos {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 20px;

}

.client-logo {

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #e5e5e5;

    color:
        #9a9a9a;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* NEWS */

.news-preview {

    background:
        var(--alad-light);

}

.section-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}

.news-card {

    background: white;

}

.news-image {

    height: 240px;

    overflow: hidden;

}

.news-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}

.news-card:hover
.news-image img {

    transform:
        scale(1.05);

}

.news-content {

    padding: 25px;

}

.news-content span {

    color:
        var(--alad-brown);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}

.news-content h3 {

    color:
        var(--alad-navy);

    font-size: 20px;

    line-height: 1.3;

    margin:
        10px 0 20px;

}

.news-content a {

    font-size: 13px;

    font-weight: 700;

    color:
        var(--alad-navy);

}


/* CTA */

.cta-section {

    background:
        var(--alad-brown);

    color: white;

    padding:
        65px 0;

}

.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.cta-content .section-label {

    color:
        rgba(255,255,255,.75);

}

.cta-content h2 {

    font-size:
        clamp(30px,4vw,48px);

    line-height: 1.1;

    margin-top: 8px;

}


/* =========================================================
   ALAD BUSINESS GROUP
   HEADER SYSTEM
========================================================= */

:root {
    --alad-navy: #063642;
    --alad-navy-dark: #032a33;
    --alad-red: #e53935;
    --alad-brown: #a87555;
    --alad-gold: #c49a6c;
    --alad-white: #ffffff;
    --alad-light: #f5f7f8;
    --alad-text: #142b36;
    --transition: 0.3s ease;
}


/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* TOP BAR */

.top-bar {
    background: var(--alad-navy-dark);
    color: #ffffff;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-contact span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-contact i {
    color: var(--alad-brown);
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    transition: var(--transition);
}

.top-social a:hover {
    color: var(--alad-red);
}


/* MAIN HEADER */

.main-header {
    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 999;

    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 190px;
    max-height: 65px;
    object-fit: contain;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 5px;

    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;

    padding: 32px 15px;

    color: var(--alad-text);

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    position: relative;

    transition: var(--transition);
}


/* RED ACTIVE LINE */

.nav-menu > li > a::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 18px;

    height: 2px;

    background: var(--alad-red);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--alad-red);
}


/* CONTACT BUTTON */

.nav-menu > li > a.nav-contact {
    background: var(--alad-navy);
    color: #ffffff;

    margin-left: 10px;

    padding: 14px 22px;

    border-radius: 3px;
}

.nav-menu > li > a.nav-contact::after {
    display: none;
}

.nav-menu > li > a.nav-contact:hover,
.nav-menu > li > a.nav-contact.active {
    background: var(--alad-red);
    color: #ffffff;
}


/* DROPDOWN */

.dropdown-arrow {
    margin-left: 5px;
    font-size: 11px;
}

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 220px;

    background: #ffffff;

    list-style: none;

    padding: 10px 0;
    margin: 0;

    border-top: 3px solid var(--alad-red);

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;

    padding: 11px 18px;

    color: var(--alad-text);

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--alad-light);
    color: var(--alad-red);

    padding-left: 23px;
}


/* MOBILE BUTTON */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 40px;

    border: 0;

    background: var(--alad-navy);

    border-radius: 3px;

    cursor: pointer;

    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;

    height: 2px;

    margin: 5px 0;

    background: #ffffff;

    transition: var(--transition);
}




/* =========================================================
   ALAD FOOTER
========================================================= */

.site-footer {
    background: var(--alad-navy-dark);
    color: #ffffff;
    margin-top: 80px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.2fr;

    gap: 50px;

    padding: 70px 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.footer-company p {
    max-width: 360px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;

    line-height: 1.8;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    margin-bottom: 25px;

    color: #ffffff;

    position: relative;

    padding-bottom: 12px;
}

.footer-column h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: var(--alad-red);
}

.footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 14px;

    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--alad-red);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;

    gap: 12px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
}

.footer-contact i {
    color: var(--alad-brown);

    width: 18px;

    margin-top: 3px;
}

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--alad-red);
    border-color: var(--alad-red);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;

    font-size: 12px;

    color: rgba(255,255,255,0.55);
}



/* =========================================================
   ALAD HERO SLIDER
========================================================= */

.alad-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 128px);
    min-height: 620px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.04);

    transition: transform 7s ease;
}

.hero-slide.active img {
    transform: scale(1);
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 42, 51, 0.92) 0%,
            rgba(3, 42, 51, 0.70) 40%,
            rgba(3, 42, 51, 0.18) 75%,
            rgba(3, 42, 51, 0.05) 100%
        );
}


/* HERO CONTENT */

.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 1200px;

    z-index: 5;

    color: #ffffff;
}

.hero-kicker {
    display: inline-block;

    color: var(--alad-red);

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero-content h1 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(48px, 6vw, 86px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -2px;

    max-width: 750px;
}

.hero-content h1 span {
    color: var(--alad-red);
}

.hero-content p {
    max-width: 620px;

    margin: 25px 0 32px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 14px;

    align-items: center;
}

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 2px;

    transition: var(--transition);
}

.hero-btn-primary {
    background: var(--alad-red);

    color: #ffffff;

    border: 1px solid var(--alad-red);
}

.hero-btn-primary:hover {
    background: #ffffff;

    color: var(--alad-navy);

    border-color: #ffffff;
}

.hero-btn-outline {
    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.75);
}

.hero-btn-outline:hover {
    background: #ffffff;

    color: var(--alad-navy);

    border-color: #ffffff;
}


/* ARROWS */

.hero-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.35);

    background: rgba(3,42,51,0.45);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition: var(--transition);
}

.hero-arrow:hover {
    background: var(--alad-red);

    border-color: var(--alad-red);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}


/* DOTS */

.hero-dots {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    gap: 9px;
}

.hero-dot {
    width: 30px;
    height: 3px;

    border: 0;

    padding: 0;

    background: rgba(255,255,255,0.35);

    cursor: pointer;

    transition: var(--transition);
}

.hero-dot.active {
    width: 55px;

    background: var(--alad-red);
}


/* COUNTER */

.hero-counter {
    position: absolute;

    right: 35px;
    bottom: 34px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    font-weight: 700;
}

.hero-counter-line {
    width: 35px;

    height: 1px;

    background: rgba(255,255,255,0.45);
}


/* SLIDE ENTER ANIMATION */

.hero-slide.active .hero-kicker,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-buttons {
    animation: heroContentIn 0.9s ease both;
}

.hero-slide.active h1 {
    animation-delay: 0.12s;
}

.hero-slide.active p {
    animation-delay: 0.22s;
}

.hero-slide.active .hero-buttons {
    animation-delay: 0.32s;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}