html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}


body {
    position: relative;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 400;
    font-family: "Beiruti", sans-serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #000;
    font-weight: 700;
    letter-spacing: 8px;
}

h6,
p {
    font-size: 20px;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@font-face {
    font-display: swap;
}

.form-control,
.form-select {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Primary Button */
.primary-btn {
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 20px 80px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.primary-btn:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* Secondary Button */
.secondary-btn {
    position: relative;
    display: inline-block;
    background-color: #000;
    color: #FFF;
    padding: 20px 80px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Spacing Utilities */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Section Title */
.section-title {
    position: relative;
    margin-bottom: 30px;
}
.section-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.section-title .main-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

/* ----------------------------
    Banner Section
---------------------------- */

.banner-section {
    position: relative;
    background-color: #000;
    height: 100vh;
    height: 100dvh;
}

.banner-section .banner-image {
    position: relative;
    height: 100vh;
    height: 100dvh;
}

.banner-section .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section .banner-content {
    padding-left: 80px;
    padding-right: 20px;
}

.banner-section .banner-content .banner-title h1 {
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.banner-section .banner-content .banner-title h2 {
    position: relative;
    font-size: 34px;
    font-weight: 800;
    color: #FFF;
    text-transform: uppercase;
    line-height: 44px;
    letter-spacing: 8px;
    margin-bottom: 50px;
}

.banner-section .banner-content .banner-title h2::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: -20px;
    left: 0;
    animation: lineExpand 1s ease-out forwards;
}

.banner-section .banner-content h3 {
    font-size: 24px;
    color: #FFF;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.banner-section .banner-content p {
    color: #FFF;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* Banner Mobile */
@media screen and (max-width: 768px) {

    .banner-section {
        height: auto;
    }

    .banner-section .banner-image {
        height: auto;
    }

    .banner-section .banner-content {
        padding-left: 0;
        padding: 80px 20px;
    }
}

/* ----------------------------
    Guide Section
---------------------------- */

.guide-section {
    position: relative;
}

.guide-section .description ul li {
    margin-bottom: 10px;
}

/* -------------------------
    Cover Image
----------------------------- */
.cover-image-section {
    position: relative;
    overflow: hidden;
}

.cover-image-section img {
    position: relative;
    width: 100%;
}

/* ----------------------------
    About Section
---------------------------- */

.author-section {
    position: relative;
    background-color: #000;
    padding-bottom: 100px;
    color: #FFF;
}

.author-section .description p {
    color: #FFF;
}

.author-section .image-box {
    position: absolute;
    bottom: -130px;
    left: 0;
    will-change: transform;
}

.author-section .image-box img {
    width: 380px;
}

@media screen and (max-width: 768px) {

    .author-section .image-box {
        bottom: -70px;
    }

    .author-section .image-box img {
        width: 200px;
    }

    .author-section .speaker-image img {
        width: 100%;
    }
}

/* ----------------------------
    Contact Section
---------------------------- */

.contact-section {
    position: relative;
    padding-top: 150px;
    overflow: hidden;
}

.contact-section .content-box h4 {
    font-size: 82px;
    font-weight: 800;
    letter-spacing: 8px;
}

.contact-section .form-box h5 {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 60px;
}

.contact-section .form-box .form-control {
    height: 66px;
    border-radius: 0;
    border: 2px solid #919191;
    box-shadow: none !important;
}

.contact-section .form-box .form-check {
    display: flex;
    align-items: center;
}

.contact-section .form-box .form-check-input[type=checkbox] {
    padding: 10px;
    border-radius: 0;
    border: 2px solid #919191;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-section .form-box .form-check-label {
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    .contact-section .content-box h4 {
        font-size: 40px;
    }
}

/* -------------------------------
    Footer Section
---------------------------------- */

.footer-section {
    position: relative;
    padding: 10px;
    background-color: #000;
    color: #FFF;
}

.footer-section .footer-content p {
    margin-bottom: 0;
}